diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a8d91b0..d366fc4 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -23,7 +23,9 @@ jobs: - uses: conda-incubator/setup-miniconda@v2 with: # mamba-version: "*" # activate this to build with mamba. - # channels: conda-forge, defaults # These need to be specified to use mamba + python-version: ${{ matrix.python-version }} + miniforge-variant: Mambaforge + channels: conda-forge, defaults # These need to be specified to use mamba channel-priority: true environment-file: ci/environment-py${{ matrix.python-version }}.yml diff --git a/.gitignore b/.gitignore index 4e50bee..1e5887d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +_build __pycache__/ .ipynb_checkpoints/ .DS_Store diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7642fae..b69047c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -51,7 +51,7 @@ repos: rev: v0.982 hooks: - id: mypy - additional_dependencies: [types-setuptools, types-PyYAML] + additional_dependencies: [types-setuptools, types-PyYAML, types-requests] exclude: docs/source/conf.py args: [--ignore-missing-imports] diff --git a/.readthedocs.yml b/.readthedocs.yml index 3c9c005..107cf20 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -1,5 +1,9 @@ version: 2 +# Build PDF only +formats: + - pdf + build: os: "ubuntu-20.04" tools: diff --git a/README.md b/README.md index 79313e2..52fd7c7 100644 --- a/README.md +++ b/README.md @@ -12,24 +12,21 @@ ocean-model-skill-assessor A package to fully run the comparison between data and model to assess model skill. --------- +You can run the analysis as a Python package or with a command-line interface. -

Project based on the cookiecutter science project template.

+There are three steps to follow for a set of model-data validation, which is for one variable: +1. Make a catalog for your model output. +2. Make a catalog for your data. +3. Run the comparison. +These steps will save files into a user application directory cache. See the demos for more details. -## Installation +-------- -### Install into existing environment +

Project based on the cookiecutter science project template.

-From `conda-forge`: -``` base -$ conda install -c conda-forge ocean-model-skill-assessor -``` -From PyPI: -``` base -$ pip install ocean-model-skill-assessor -``` +## Installation ### Set up environment @@ -47,6 +44,32 @@ Activate your new Python environment to use it with $ conda activate omsa ``` +Also install `cartopy` to be able to plot maps: +``` base +$ conda install -c conda-forge cartopy +``` + + +### Install into existing environment + +From `conda-forge`: +``` base +$ conda install -c conda-forge ocean-model-skill-assessor +``` + +From PyPI: +``` base +$ pip install ocean-model-skill-assessor +``` + +To plot a map of the model domain with data locations, you'll need to additionally install `cartopy`. If you used `conda` above: +``` base +$ conda install -c conda-forge cartopy +``` + +If you installed from PyPI, check out the instructions for installing `cartopy` [here](https://scitools.org.uk/cartopy/docs/latest/installing.html#building-from-source). + + ### Extra packages for development To also develop this package, install additional packages with: diff --git a/docs/add_vocab.md b/docs/add_vocab.md new file mode 100644 index 0000000..e0d9352 --- /dev/null +++ b/docs/add_vocab.md @@ -0,0 +1,139 @@ +--- +jupytext: + text_representation: + extension: .md + format_name: myst + format_version: 0.13 + jupytext_version: 1.14.4 +kernelspec: + display_name: Python 3.10.8 ('omsa') + language: python + name: python3 +--- + +# How to make and work with vocabularies + +This page demonstrates the workflow of making a new vocabulary, saving it to the user application cache, and reading it back in to use it. The vocabulary created is the exact same as the "general" vocabulary that is saved with the OMSA package, though here it is given another name to demonstrate that you could be making any new vocabulary you want. + +Here is the list of variables of interest (with "nickname"), aimed at a physical oceanographer, which are built into the vocabulary: + +* water temperature "temp" +* salinity "salt" +* sea surface height "ssh" +* u velocity "u" +* v velocity "v" +* w upward velocity "w" +* direction of water velocity "water_dir" +* magnitude of water velocity "water_speed" +* wind direction "wind_dir" +* wind speed "wind_speed" +* sea ice velocity u "sea_ice_u" +* sea ice velocity v "sea_ice_v" +* sea ice area fraction "sea_ice_area_fraction" + +```{code-cell} ipython3 +import cf_pandas as cfp +import ocean_model_skill_assessor as omsa +import pandas as pd +``` + +## Vocabulary workflow + +### Make vocabulary + +Here we show making the "general" vocabulary that is saved into the repository. This is a more general vocabulary to identify variables from sources that don't use exact CF standard_names. + +```{code-cell} ipython3 +nickname = "temp" +vocab = cfp.Vocab() + +# define a regular expression to represent your variable +reg = cfp.Reg(include_or=["temp","sst"], exclude=["air","qc","status","atmospheric","bottom"]) + +# Make an entry to add to your vocabulary +vocab.make_entry(nickname, reg.pattern(), attr="name") + +vocab.make_entry("salt", cfp.Reg(include_or=["sal","sss"], exclude=["soil","qc","status","bottom"]).pattern(), attr="name") +vocab.make_entry("ssh", cfp.Reg(include_or=["sea_surface_height","surface_elevation"], exclude=["qc","status"]).pattern(), attr="name") + +reg = cfp.Reg(include=["east", "vel"]) +vocab.make_entry("u", "u$", attr="name") +vocab.make_entry("u", reg.pattern(), attr="name") + +reg = cfp.Reg(include=["north", "vel"]) +vocab.make_entry("v", "v$", attr="name") +vocab.make_entry("v", reg.pattern(), attr="name") + +reg = cfp.Reg(include=["up", "vel"]) +vocab.make_entry("w", "w$", attr="name") +vocab.make_entry("w", reg.pattern(), attr="name") + +vocab.make_entry("water_dir", cfp.Reg(include=["dir","water"], exclude=["qc","status","air","wind"]).pattern(), attr="name") + +vocab.make_entry("water_speed", cfp.Reg(include=["speed","water"], exclude=["qc","status","air","wind"]).pattern(), attr="name") + +vocab.make_entry("wind_dir", cfp.Reg(include=["dir","wind"], exclude=["qc","status","water"]).pattern(), attr="name") + +vocab.make_entry("wind_speed", cfp.Reg(include=["speed","wind"], exclude=["qc","status","water"]).pattern(), attr="name") + +reg1 = cfp.Reg(include=["sea","ice","u"], exclude=["qc","status"]) +reg2 = cfp.Reg(include=["sea","ice","x","vel"], exclude=["qc","status"]) +reg3 = cfp.Reg(include=["sea","ice","east","vel"], exclude=["qc","status"]) +vocab.make_entry("sea_ice_u", reg1.pattern(), attr="name") +vocab.make_entry("sea_ice_u", reg2.pattern(), attr="name") +vocab.make_entry("sea_ice_u", reg3.pattern(), attr="name") + +reg1 = cfp.Reg(include=["sea","ice","v"], exclude=["qc","status"]) +reg2 = cfp.Reg(include=["sea","ice","y","vel"], exclude=["qc","status"]) +reg3 = cfp.Reg(include=["sea","ice","north","vel"], exclude=["qc","status"]) +vocab.make_entry("sea_ice_v", reg1.pattern(), attr="name") +vocab.make_entry("sea_ice_v", reg2.pattern(), attr="name") +vocab.make_entry("sea_ice_v", reg3.pattern(), attr="name") + +vocab.make_entry("sea_ice_area_fraction", cfp.Reg(include=["sea","ice","area","fraction"], exclude=["qc","status"]).pattern(), attr="name") + +vocab +``` + +### Save it + +This exact vocabulary was previously saved as "general" and is available under that name, but this page demonstrates saving a new vocabulary and so we use the name "general2" to differentiate. + +```{code-cell} ipython3 +vocab.save(omsa.VOCAB_PATH("general2")) +``` + +```{code-cell} ipython3 +omsa.VOCAB_PATH("general2") +``` + +### Use it later + +Read the saved vocabulary back in to use it: + +```{code-cell} ipython3 +vocab = cfp.Vocab(omsa.VOCAB_PATH("general2")) + +df = pd.DataFrame(columns=["sst", "time", "lon", "lat"], data={"sst": [1,2,3]}) +with cfp.set_options(custom_criteria=vocab.vocab): + print(df.cf["temp"]) +``` + +## Combine vocabularies + +A user can add together vocabularies. For example, here we combine the built-in "standard_names" and "general" vocabularies. + +```{code-cell} ipython3 +v1 = cfp.Vocab(omsa.VOCAB_PATH("standard_names")) +v2 = cfp.Vocab(omsa.VOCAB_PATH("general")) + +v = v1 + v2 +v +``` + +## Using the `cf-pandas` widget + ++++ + +.. raw:: html + diff --git a/docs/api.rst b/docs/api.rst index 57791c9..20ebfaa 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -10,6 +10,7 @@ API main utils + paths accessor stats plot.map diff --git a/docs/cli.md b/docs/cli.md index 223487d..5bd71ac 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -1,17 +1,8 @@ - -```{code-cell} ipython3 -import ocean_model_skill_assessor as omsa -from IPython.display import Code, Image -import cf_pandas as cfp -``` - # Using OMSA through Command Line Interface (CLI) -Example commands will be run below and prefaced with `!` to run as a shell command instead of as Python code. In the terminal window, you should remove the `!` before running the command. - -This page is focused on explaining all the options more than demonstrating a workflow. For a more clear demonstration, check out the [demo](https://ocean-model-skill-assessor.readthedocs.io/en/latest/demo.html). +Example commands are shown (but not run) below. You can copy these commands directly to a terminal window or command prompt. -+++ +This page is focused on explaining all the command line options, not demonstrating a workflow. For a more clear demonstration, check out the [Python package demo](https://ocean-model-skill-assessor.readthedocs.io/en/latest/demo.html) or [CLI demo](https://ocean-model-skill-assessor.readthedocs.io/en/latest/demo_cli.html). ## Make catalog(s) for data and model @@ -21,11 +12,9 @@ There are 3 types of catalogs in OMSA: local, erddap, and axds. Make a catalog with known local or remote file(s). Also use a local catalog to represent your model output. -+++ - #### Available options - omsa make_catalog --project_name PROJ_NAME --catalog_type local --catalog_name CATALOG_NAME --description "Catalog description" --kwargs filenames="[FILE1,FILE2]" --kwargs_open KWARG=VALUE + omsa make_catalog --project_name PROJ_NAME --catalog_type local --catalog_name CATALOG_NAME --description "Catalog description" --kwargs filenames="[FILE1,FILE2]" --kwargs_open KWARG=VALUE --verbose --mode MODE * `project_name`: Will be used as the name of the directory where the catalog is saved. The directory is located in a user application cache directory, the address of which can be found for your setup with `omsa proj_path --project_name PROJ_NAME`. * `catalog_type`: Type of catalog to make. Options are "erddap", "axds", or "local". @@ -35,22 +24,14 @@ Make a catalog with known local or remote file(s). Also use a local catalog to r * `kwargs`: Some keyword arguments to make the local catalog. See `omsa.main.make_local_catalog()` for more details. * `filenames`: (Required) Where to find dataset(s) from which to make local catalog. * `kwargs_open`: Keyword arguments to pass on to the appropriate intake open_* call for model or dataset. - -+++ +* `verbose` Print useful runtime commands to stdout if True as well as save in log, otherwise silently save in log. Log is located in the project directory, which can be checked on the command line with `omsa proj_path --project_name PROJECT_NAME`. Default is True, to turn off use `--no-verbose`. +* `mode` mode for logging file. Default is to overwrite an existing logfile, but can be changed to other modes, e.g. "a" to instead append to an existing log file. #### Examples ##### Basic catalog for single dataset -```{code-cell} ipython3 -!omsa make_catalog --project_name test1 --catalog_type local --catalog_name example_local_catalog --description "Example local catalog description" --kwargs filenames="[https://erddap.sensors.axds.co/erddap/tabledap/aoos_204.csvp?time%2Clatitude%2Clongitude%2Cz%2Csea_water_temperature&time%3E=2022-01-01T00%3A00%3A00Z&time%3C=2022-01-06T00%3A00%3A00Z]" --kwargs_open blocksize=None -``` - -Show the catalog file: - -```{code-cell} ipython3 -Code(filename=omsa.CAT_PATH("example_local_catalog", "test1")) -``` + omsa make_catalog --project_name test1 --catalog_type local --catalog_name example_local_catalog --description "Example local catalog description" --kwargs filenames="[https://erddap.sensors.axds.co/erddap/tabledap/aoos_204.csvp?time%2Clatitude%2Clongitude%2Cz%2Csea_water_temperature&time%3E=2022-01-01T00%3A00%3A00Z&time%3C=2022-01-06T00%3A00%3A00Z]" --kwargs_open blocksize=None ##### Dataset with no lon/lat @@ -58,25 +39,13 @@ When a dataset does not contain location information, you can input it as metada Station page: https://tidesandcurrents.noaa.gov/stationhome.html?id=9455500 -```{code-cell} ipython3 -!omsa make_catalog --project_name test1 --catalog_type local --catalog_name example_local_catalog2 --kwargs filenames="[https://api.tidesandcurrents.noaa.gov/api/prod/datagetter?product=water_temperature&application=NOS.COOPS.TAC.PHYSOCEAN&begin_date=20230109&end_date=20230109&station=9455500&time_zone=GMT&units=english&interval=6&format=csv]" --metadata minLongitude=-151.72 maxLongitude=-151.72 minLatitude=59.44 maxLatitude=59.44 -``` - -```{code-cell} ipython3 -Code(filename=omsa.CAT_PATH("example_local_catalog2", "test1")) -``` + omsa make_catalog --project_name test1 --catalog_type local --catalog_name example_local_catalog2 --kwargs filenames="[https://api.tidesandcurrents.noaa.gov/api/prod/datagetter?product=water_temperature&application=NOS.COOPS.TAC.PHYSOCEAN&begin_date=20230109&end_date=20230109&station=9455500&time_zone=GMT&units=english&interval=6&format=csv]" --metadata minLongitude=-151.72 maxLongitude=-151.72 minLatitude=59.44 maxLatitude=59.44 ##### Set up model Use this approach to set up a catalog file for your model output, so that it can be used by OMSA. Use `skip_entry_metadata=True` when running for a model. -```{code-cell} ipython3 -!omsa make_catalog --project_name test1 --catalog_type local --catalog_name model --kwargs filenames=https://www.ncei.noaa.gov/thredds/dodsC/model-ciofs-agg/Aggregated_CIOFS_Fields_Forecast_best.ncd skip_entry_metadata=True --kwargs_open drop_variables=ocean_time -``` - -```{code-cell} ipython3 -Code(filename=omsa.CAT_PATH("model", "test1")) -``` + omsa make_catalog --project_name test1 --catalog_type local --catalog_name model --kwargs filenames=https://www.ncei.noaa.gov/thredds/dodsC/model-ciofs-agg/Aggregated_CIOFS_Fields_Forecast_best.ncd skip_entry_metadata=True --kwargs_open drop_variables=ocean_time ### ERDDAP Catalog @@ -84,7 +53,7 @@ Make a catalog from datasets available from an ERDDAP server using `intake-erdda #### Available options - omsa make_catalog --project_name PROJ_NAME --catalog_type erddap --catalog_name CATALOG_NAME --description "Catalog description" --kwargs server=SERVER --kwargs_search min_lon=MIN_LON min_lat=MIN_LAT max_lon=MAX_LON max_lat=MAX_LAT min_time=MIN_TIME max_time=MAX_TIME search_for=SEARCH_TEXT + omsa make_catalog --project_name PROJ_NAME --catalog_type erddap --catalog_name CATALOG_NAME --description "Catalog description" --kwargs server=SERVER --kwargs_search min_lon=MIN_LON min_lat=MIN_LAT max_lon=MAX_LON max_lat=MAX_LAT min_time=MIN_TIME max_time=MAX_TIME search_for=SEARCH_TEXT --verbose --mode MODE * `project_name`: Will be used as the name of the directory where the catalog is saved. The directory is located in a user application cache directory, the address of which can be found for your setup with `omsa proj_path --project_name PROJ_NAME`. * `catalog_type`: Type of catalog to make. Options are "erddap", "axds", or "local". @@ -104,6 +73,8 @@ Make a catalog from datasets available from an ERDDAP server using `intake-erdda * `min_time`, `max_time`: search for datasets with data within this time range * `model_name`: input a path to the model output to instead select the space and time search specifications based on the model. This input is specific to OMSA, not `intake-erddap`. * `search_for`: text-based search +* `verbose` Print useful runtime commands to stdout if True as well as save in log, otherwise silently save in log. Log is located in the project directory, which can be checked on the command line with `omsa proj_path --project_name PROJECT_NAME`. Default is True, to turn off use `--no-verbose`. +* `mode` mode for logging file. Default is to overwrite an existing logfile, but can be changed to other modes, e.g. "a" to instead append to an existing log file. #### Examples @@ -111,33 +82,25 @@ Make a catalog from datasets available from an ERDDAP server using `intake-erdda Select a spatial box and time range over which to search catalog: -```{code-cell} ipython3 -!omsa make_catalog --project_name test1 --catalog_type erddap --catalog_name example_erddap_catalogA --description "Example ERDDAP catalog description" --kwargs server=https://erddap.sensors.ioos.us/erddap --kwargs_search min_lon=-170 min_lat=53 max_lon=-165 max_lat=56 min_time=2022-1-1 max_time=2022-1-6 -``` + omsa make_catalog --project_name test1 --catalog_type erddap --catalog_name example_erddap_catalogA --description "Example ERDDAP catalog description" --kwargs server=https://erddap.sensors.ioos.us/erddap --kwargs_search min_lon=-170 min_lat=53 max_lon=-165 max_lat=56 min_time=2022-1-1 max_time=2022-1-6 ##### Narrow search with model output Input model output to use to create the space search range, but choose time search range. We use the model catalog created in a previous example: -```{code-cell} ipython3 -!omsa make_catalog --project_name test1 --catalog_type erddap --catalog_name example_erddap_catalog --description "Example ERDDAP catalog description" --kwargs server=https://erddap.sensors.ioos.us/erddap --kwargs_search model_name=model min_time=2022-1-1 max_time=2022-1-6 -``` + omsa make_catalog --project_name test1 --catalog_type erddap --catalog_name example_erddap_catalog --description "Example ERDDAP catalog description" --kwargs server=https://erddap.sensors.ioos.us/erddap --kwargs_search model_name=model min_time=2022-1-1 max_time=2022-1-6 ##### Narrow search also with `query_type` You can additionally narrow your search by a text term by adding the `search_for` and `query_type` keyword inputs. This example searches for datasets containing the varaible "sea_surface_temperature" and, somewhere in the dataset metadata, the term "Timeseries". If we had wanted datasets that contain one OR the other, we could use `query_type=union`. -```{code-cell} ipython3 -!omsa make_catalog --project_name test1 --catalog_type erddap --catalog_name cat2 --kwargs server=https://erddap.sensors.ioos.us/erddap standard_names="[sea_surface_temperature]" search_for="[Timeseries]" query_type=intersection -``` + omsa make_catalog --project_name test1 --catalog_type erddap --catalog_name cat2 --kwargs server=https://erddap.sensors.ioos.us/erddap standard_names="[sea_surface_temperature]" search_for="[Timeseries]" query_type=intersection ##### Variable selection by standard_name Narrow your search by variable. For `intake-erddap` you can filter by the CF `standard_name` of the variable directly with the following. -```{code-cell} ipython3 -!omsa make_catalog --project_name test1 --catalog_type erddap --catalog_name cat1 --kwargs server=https://erddap.sensors.ioos.us/erddap standard_names="[sea_surface_temperature,sea_water_temperature]" -``` + omsa make_catalog --project_name test1 --catalog_type erddap --catalog_name cat1 --kwargs server=https://erddap.sensors.ioos.us/erddap standard_names="[sea_surface_temperature,sea_water_temperature]" ##### Variable selection by pattern matching with vocab @@ -151,14 +114,11 @@ This is more complicated than simply defining the desired standard_names as show The example below uses the pre-defined vocabulary "standard_names" since we are using the IOOS ERDDAP server which uses standard_names as one of its search categories, and will search for matching variables by standard_name and matching the variable nickname "temp". The "standard_names" vocabulary is shown here and includes the standard_names from the previous example (it includes others too but they aren't present on the server). The regular expressions are set up to match exactly those standard_names. This is why we return the same results from either approach. -```{code-cell} ipython3 +``` vocab = cfp.Vocab(omsa.VOCAB_PATH("standard_names")) -vocab ``` -```{code-cell} ipython3 -!omsa make_catalog --project_name test1 --catalog_type erddap --catalog_name cat3 --kwargs server=https://erddap.sensors.ioos.us/erddap category_search="[standard_name,temp]" --vocab_name standard_names -``` + omsa make_catalog --project_name test1 --catalog_type erddap --catalog_name cat3 --kwargs server=https://erddap.sensors.ioos.us/erddap category_search="[standard_name,temp]" --vocab_name standard_names ### Catalog for Axiom assets @@ -166,7 +126,7 @@ Make a catalog of Axiom Data Science-stored assets using `intake-axds`. #### Available options - omsa make_catalog --project_name PROJ_NAME --catalog_type axds --catalog_name CATALOG_NAME --description "Catalog description" --kwargs datatype="platform2 standard_names="[STANDARD_NAME1,STANDARD_NAME2]" page_size=PAGE_SIZE verbose=BOOL --kwargs_search min_lon=MIN_LON min_lat=MIN_LAT max_lon=MAX_LON max_lat=MAX_LAT min_time=MIN_TIME max_time=MAX_TIME search_for=SEARCH_TEXT + omsa make_catalog --project_name PROJ_NAME --catalog_type axds --catalog_name CATALOG_NAME --description "Catalog description" --kwargs datatype="platform2 standard_names="[STANDARD_NAME1,STANDARD_NAME2]" page_size=PAGE_SIZE verbose=BOOL --kwargs_search min_lon=MIN_LON min_lat=MIN_LAT max_lon=MAX_LON max_lat=MAX_LAT min_time=MIN_TIME max_time=MAX_TIME search_for=SEARCH_TEXT --verbose --mode MODE * `project_name`: Will be used as the name of the directory where the catalog is saved. The directory is located in a user application cache directory, the address of which can be found for your setup with `omsa proj_path --project_name PROJ_NAME`. * `catalog_type`: Type of catalog to make. Options are "erddap", "axds", or "local". @@ -186,6 +146,8 @@ Make a catalog of Axiom Data Science-stored assets using `intake-axds`. * `min_time`, `max_time`: search for datasets with data within this time range * `model_name`: input a path to the model output to instead select the space and time search specifications based on the model. This input is specific to OMSA, not `intake-axds`. * `search_for`: text-based search +* `verbose` Print useful runtime commands to stdout if True as well as save in log, otherwise silently save in log. Log is located in the project directory, which can be checked on the command line with `omsa proj_path --project_name PROJECT_NAME`. Default is True, to turn off use `--no-verbose`. +* `mode` mode for logging file. Default is to overwrite an existing logfile, but can be changed to other modes, e.g. "a" to instead append to an existing log file. #### Examples @@ -195,17 +157,13 @@ Many of the options available for an Axiom catalog are the same as for an ERDDAP Select a box and time range over which to search catalog along with standard_name selections, with `verbose=True`. -```{code-cell} ipython3 -!omsa make_catalog --project_name test1 --catalog_type axds --catalog_name example_axds_catalog1 --description "Example AXDS catalog description" --kwargs page_size=50000 standard_names='[sea_water_temperature]' verbose=True --kwargs_search min_lon=-170 min_lat=53 max_lon=-165 max_lat=56 min_time=2000-1-1 max_time=2002-1-1 -``` + omsa make_catalog --project_name test1 --catalog_type axds --catalog_name example_axds_catalog1 --description "Example AXDS catalog description" --kwargs page_size=50000 standard_names='[sea_water_temperature]' verbose=True --kwargs_search min_lon=-170 min_lat=53 max_lon=-165 max_lat=56 min_time=2000-1-1 max_time=2002-1-1 ##### Same but with vocab As in the ERDDAP catalog example above, we can instead get the same results by inputting a vocabulary to use, in this case "standard_names" which will map to variable names in Axiom systems, along with the variable nickname from the vocabulary to find: "temp". -```{code-cell} ipython3 -!omsa make_catalog --project_name test1 --catalog_type axds --catalog_name example_axds_catalog2 --description "Example AXDS catalog description" --vocab_name standard_names --kwargs page_size=50000 keys_to_match='[temp]' --kwargs_search min_lon=-170 min_lat=53 max_lon=-165 max_lat=56 min_time=2000-1-1 max_time=2002-1-1 -``` + omsa make_catalog --project_name test1 --catalog_type axds --catalog_name example_axds_catalog2 --description "Example AXDS catalog description" --vocab_name standard_names --kwargs page_size=50000 keys_to_match='[temp]' --kwargs_search min_lon=-170 min_lat=53 max_lon=-165 max_lat=56 min_time=2000-1-1 max_time=2002-1-1 ## Run model-data comparison @@ -217,7 +175,7 @@ The datasets need to all cover the same time periods. ### Available options - omsa run --project_name test1 --catalogs CATALOG_NAME1 CATALOG_NAME2 --vocab_names VOCAB1 VOCAB2 --key KEY --model_path PATH_TO_MODEL_OUTPUT --ndatasets NDATASETS + omsa run --project_name test1 --catalogs CATALOG_NAME1 CATALOG_NAME2 --vocab_names VOCAB1 VOCAB2 --key KEY --model_path PATH_TO_MODEL_OUTPUT --ndatasets NDATASETS --verbose --mode MODE * `project_name`: Subdirectory in cache dir to store files associated together. * `catalog_names`: Catalog name(s). Datasets will be accessed from catalog entries. @@ -225,16 +183,16 @@ The datasets need to all cover the same time periods. * `key`: Key in vocab(s) representing variable to compare between model and datasets. * `model_name`: name of the model catalog we previously created * `ndatasets`: Max number of datasets from each input catalog to use. +* `verbose` Print useful runtime commands to stdout if True as well as save in log, otherwise silently save in log. Log is located in the project directory, which can be checked on the command line with `omsa proj_path --project_name PROJECT_NAME`. Default is True, to turn off use `--no-verbose`. +* `mode` mode for logging file. Default is to overwrite an existing logfile, but can be changed to other modes, e.g. "a" to instead append to an existing log file. ### Example Run a model-data comparison for the first 3 datasets in each of the 3 catalogs that we created previously in this notebook. Use vocabularies `standard_names` and `general` for variable matching. Match on the temperature variable with variable nickname "temp". -This example doesn't fully work because the combination of datasets are at different time periods and of different types that don't make sense to compare with the model output. So, it is commented out but shown as a template. +This example doesn't fully work because the combination of datasets are at different time periods and of different types that don't make sense to compare with the model output. It is shown as a template. -```{code-cell} ipython3 -#!omsa run --project_name test1 --catalog_names example_local_catalog example_erddap_catalog example_axds_catalog1 --vocab_names standard_names general --key temp --model_name model --ndatasets 1 -``` + omsa run --project_name test1 --catalog_names example_local_catalog example_erddap_catalog example_axds_catalog1 --vocab_names standard_names general --key temp --model_name model --ndatasets 1 ## Utilities @@ -244,12 +202,14 @@ A few handy utilities. With this you can check all of the project-related files you've created. -```{code-cell} ipython3 -!omsa proj_path --project_name test1 -``` + omsa proj_path --project_name test1 ### Check available vocabularies -```{code-cell} ipython3 -!omsa vocabs -``` + omsa vocabs + +### Get information about a vocabulary + +Return the path to the vocab file and the nicknames of the variables in the file. + + omsa vocab_info --vocab_name general diff --git a/docs/conf.py b/docs/conf.py index 12ee150..24f0c91 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,7 +18,7 @@ # |version| and |release|, also used in various other places throughout the # built documents. # see https://pypi.org/project/setuptools-scm/ for details -from pkg_resources import get_distribution +from importlib.metadata import version as imversion print("python exec:", sys.executable) @@ -35,7 +35,7 @@ copyright = "2021-2023, Axiom Data Science" author = "Axiom Data Science" -release = get_distribution("ocean-model-skill-assessor").version +release = imversion("ocean-model-skill-assessor") # for example take major/minor version = ".".join(release.split(".")[:2]) @@ -82,9 +82,10 @@ ".DS_Store", "_old_docs", ".ipynb", + "notebooks", ] -html_extra_path = ["create_vocabs.html"] +html_extra_path = ["vocab_widget.html"] # -- Options for HTML output ------------------------------------------------- @@ -108,9 +109,11 @@ # had this message: # WARNING: 'execution_timeout' is deprecated for 'nb_execution_timeout' [mystnb.config] # WARNING: 'execution_allow_errors' is deprecated for 'nb_execution_allow_errors' [mystnb.config] -nb_execution_timeout = 300 # seconds. +nb_execution_timeout = 600 # seconds. nb_execution_allow_errors = False +# https://myst-nb.readthedocs.io/en/v0.9.0/use/execute.html +jupyter_execute_notebooks = "off" # -- nbsphinx specific options ---------------------------------------------- # this allows notebooks to be run even if they produce errors. diff --git a/docs/create_vocabs_wrapper.md b/docs/create_vocabs_wrapper.md deleted file mode 100644 index 44244e4..0000000 --- a/docs/create_vocabs_wrapper.md +++ /dev/null @@ -1,4 +0,0 @@ -# Creating vocabularies for known servers - -.. raw:: html - diff --git a/docs/demo.ipynb b/docs/demo.ipynb new file mode 100644 index 0000000..482f427 --- /dev/null +++ b/docs/demo.ipynb @@ -0,0 +1,292 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import ocean_model_skill_assessor as omsa\n", + "import cf_pandas as cfp" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# How to use `ocean-model-skill-assessor`\n", + "\n", + "... as a Python package. Other notebooks describe its command line interface uses.\n", + "\n", + "But, this is written in parallel to the [CLI demo](https://ocean-model-skill-assessor.readthedocs.io/en/latest/demo_cli.html), but will be more brief.\n", + "\n", + "There are three steps to follow for a set of model-data validation, which is for one variable:\n", + "1. Make a catalog for your model output.\n", + "2. Make a catalog for your data.\n", + "3. Run the comparison.\n", + "\n", + "These steps will save files into a user application directory cache, along with a log. A project directory can be checked on the command line with `omsa proj_path --project_name PROJECT_NAME`.\n", + "\n", + "\n", + "## Make model catalog" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "cat_model = omsa.make_catalog(project_name=\"demo_local_package\", catalog_type=\"local\", catalog_name=\"model\", \n", + " kwargs=dict(filenames=\"https://www.ncei.noaa.gov/thredds/dodsC/model-ciofs-agg/Aggregated_CIOFS_Fields_Forecast_best.ncd\",\n", + " skip_entry_metadata=True),\n", + " kwargs_open=dict(drop_variables=\"ocean_time\"))" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "application/yaml": "model:\n args:\n description: Catalog of type local.\n name: model\n description: Catalog of type local.\n driver: intake.catalog.base.Catalog\n metadata: {}\n", + "text/plain": [ + "model:\n", + " args:\n", + " description: Catalog of type local.\n", + " name: model\n", + " description: Catalog of type local.\n", + " driver: intake.catalog.base.Catalog\n", + " metadata: {}\n" + ] + }, + "metadata": { + "application/json": { + "root": "model" + } + }, + "output_type": "display_data" + } + ], + "source": [ + "cat_model" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Make data catalog \n", + "\n", + "Set up a catalog of the datasets with which you want to compare your model output. In this example, we use only known data file locations to create our catalog." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-27 12:46:02,753] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:185} WARNING - Dataset noaa_nos_co_ops_9455500 had a timezone UTC which is being removed. Make sure the timezone matches the model output.\n" + ] + } + ], + "source": [ + "filenames = [\"https://erddap.sensors.axds.co/erddap/tabledap/noaa_nos_co_ops_9455500.csvp?time%2Clatitude%2Clongitude%2Cz%2Csea_water_temperature&time%3E=2022-01-01T00%3A00%3A00Z&time%3C=2022-01-06T00%3A00%3A00Z\",\n", + "]\n", + "\n", + "cat_data = omsa.make_catalog(project_name=\"demo_local_package\", catalog_type=\"local\", catalog_name=\"local\",\n", + " kwargs=dict(filenames=filenames), kwargs_open=dict(blocksize=None))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "application/yaml": "local:\n args:\n description: Catalog of type local.\n name: local\n description: Catalog of type local.\n driver: intake.catalog.base.Catalog\n metadata: {}\n", + "text/plain": [ + "local:\n", + " args:\n", + " description: Catalog of type local.\n", + " name: local\n", + " description: Catalog of type local.\n", + " driver: intake.catalog.base.Catalog\n", + " metadata: {}\n" + ] + }, + "metadata": { + "application/json": { + "root": "local" + } + }, + "output_type": "display_data" + } + ], + "source": [ + "cat_data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Run comparison\n", + "\n", + "Now that the model output and dataset catalogs are prepared, we can run the comparison of the two.\n", + "\n", + "At this point we need to select a single variable to compare between the model and datasets, and this requires a little extra input. Because we don't know specifics about the format of any given input data file, variables will be interpreted with some flexibility in the form of a set of regular expressions. In the present case, we will compare the water temperature between the model and the datasets (the model output and datasets selected for our catalogs should contain the variable we want to compare). Several sets of regular expressions, called \"vocabularies\", are available with the package to be used for this purpose, and in this case we will use one called \"general\" which should match many commonly-used variable names. \"general\" is selected under `vocab_names`, and the particular key from the general vocabulary that we are comparing is selected with `key`.\n", + "\n", + "See the vocabulary here.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'temp': {'name': '(?i)^(?!.*(air|qc|status|atmospheric|bottom|dew)).*(temp|sst).*'}, 'salt': {'name': '(?i)^(?!.*(soil|qc|status|bottom)).*(sal|sss).*'}, 'ssh': {'name': '(?i)^(?!.*(qc|status)).*(sea_surface_height|surface_elevation).*'}, 'u': {'name': 'u$|(?i)(?=.*east)(?=.*vel)'}, 'v': {'name': 'v$|(?i)(?=.*north)(?=.*vel)'}, 'w': {'name': 'w$|(?i)(?=.*up)(?=.*vel)'}, 'water_dir': {'name': '(?i)^(?!.*(qc|status|air|wind))(?=.*dir)(?=.*water)'}, 'water_speed': {'name': '(?i)^(?!.*(qc|status|air|wind))(?=.*speed)(?=.*water)'}, 'wind_dir': {'name': '(?i)^(?!.*(qc|status|water))(?=.*dir)(?=.*wind)'}, 'wind_speed': {'name': '(?i)^(?!.*(qc|status|water))(?=.*speed)(?=.*wind)'}, 'sea_ice_u': {'name': '(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*u)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*x)(?=.*vel)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*east)(?=.*vel)'}, 'sea_ice_v': {'name': '(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*v)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*y)(?=.*vel)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*north)(?=.*vel)'}, 'sea_ice_area_fraction': {'name': '(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*area)(?=.*fraction)'}}" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cfp.Vocab(omsa.VOCAB_PATH(\"general\"))" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-27 12:46:13,702] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:452} INFO - Note that there are 1 datasets to use. This might take awhile.\n", + "[2023-01-27 12:46:23,556] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'u' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n", + "[2023-01-27 12:46:23,558] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'v' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n", + "[2023-01-27 12:46:23,560] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'w' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n", + "[2023-01-27 12:46:23,563] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'temp' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n", + "[2023-01-27 12:46:23,568] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'salt' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n", + "[2023-01-27 12:46:23,570] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'Pair' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n", + "[2023-01-27 12:46:23,572] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'Uwind' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n", + "[2023-01-27 12:46:23,574] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'Vwind' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 0%| | 0/1 [00:00.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-27 12:47:26,239] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:498} INFO - \n", + "source name: noaa_nos_co_ops_9455500 (1 of 1 for catalog .\n", + "[2023-01-27 12:47:30,557] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:565} WARNING - Dataset noaa_nos_co_ops_9455500 had a timezone UTC which is being removed. Make sure the timezone matches the model output.\n", + "[2023-01-27 12:49:29,051] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:686} INFO - Plotted time series for noaa_nos_co_ops_9455500\n", + ".\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "1it [02:02, 122.82s/it]\n", + "100%|██████████| 1/1 [02:02<00:00, 122.83s/it]\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-27 12:49:37,618] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:699} INFO - Finished analysis. Find plots, stats summaries, and log in /Users/kthyng/Library/Caches/ocean-model-skill-assessor/demo_local_package.\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABNkAAAH4CAYAAAB34DvTAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8o6BhiAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd1hTZxsG8DtscQAiCIKKE0QcqIB7W7WKWnfdo46696itq61171G1rn51Vq2KYuueFbWte+DCvReIIivv98cxx0TCyCKM+3ddXCQnZzzJyTk5efK+76MQQggQERERERERERGR3izMHQAREREREREREVFmxyQbERERERERERGRgZhkIyIiIiIiIiIiMhCTbERERERERERERAZiko2IiIiIiIiIiMhATLIREREREREREREZiEk2IiIiIiIiIiIiAzHJRkREREREREREZCAm2YiIiIiIiIiIiAzEJBsRERnF6tWroVAo0K1bN52Wu337NhQKBby8vEwSF1F20q1bNygUCqxevdrcoRAREZmdQqGAQqFIMt3LywsKhQK3b99O/6AoS8uWSbbQ0FDUr18fefPmRc6cOVGhQgUsWLAASqXS3KERZWuRkZEYP348/Pz8YG9vD0dHR9SsWRPr16/XaT379u2TP1Dr16+vdZ5Dhw7J8yT39/PPPydZTpUQSulvzJgxWreZ2nLt27dP9jkplUrMnz8f/v7+yJkzJ/LmzYv69etj9+7dqb4ev/32G6pWrQoHBwfkyZMHVatWxdq1a1NdjozH2J87xjpWSNPp06cxe/ZstG/fHkWKFJGPzWPHjhm8bh6Hunnw4AF69+6NggULwtbWFoUKFUKfPn3w4MEDvde5fft2NG7cGK6urrC2toaTkxNq1aqFFStW8BrQCGJiYvDHH39g7NixqFevHhwcHKBQKFC8eHGD1/369WuMGDECxYoVg52dHdzd3dGxY0dcuXLFCJFTaoz5+r958wa//fYbOnXqhJIlSyJHjhywt7dH6dKlMXLkSDx69MgEz4C04TFrHBMnTsTEiRNNuo0rV66gY8eOcHd3h52dHYoVK4YRI0bg9evXOq/LlPudPhDZzE8//SQACACiaNGiomzZssLCwkIAEM2aNROJiYnmDpEoW7p//74oUaKEACAsLS1FuXLlhK+vr1AoFAKA6Nu3b5rWExMTI4oXLy4f5/Xq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oiGRlSTk+dmlSxfMmTPntcu3334LQF7oz5kzB71799bgkRA5p4Q8R58+fYoTJ068do7Hjx/j008/BQC0b9/eHmETuYSE5Iny589vfpM4TZo0r93edF14eHiCYnDYwQc1a9bEuHHjsGXLFrRr187iYwl9F56IrMvDwwNz5sxBgwYNUL16dbRv3x6pU6fGypUrceXKFYwZMwYFCxYEAJw7dw7NmzdHREQEatWqhf/973+vnS937twWSTkiSpqEPEdv3LiBMmXKoEKFCihatCgyZ86M4OBg7Nq1C+fPn0fmzJkxbdo0jR8RkfNIyPOTiOwvIc/Rhw8folSpUihXrhxKlCiBjBkz4tatW9i4cSMePnyIevXqoX///ho/IiLnkZA8kbe3N6pUqYJdu3bhzJkzqFatmsXtz5w5AwAJrzZVHFRUVJSSN29exdvbWzl69Kj5+tDQUKVYsWKKh4eHcv78+Tg/986dOwoApWbNmvYJlshFBQUFKQ0bNlR8fX2V5MmTK+XKlVMWL15scZsdO3YoAN564XOVyDbi8xx99OiRMnjwYKVy5cpKxowZFQ8PDyVVqlRKmTJllKFDhyrBwcEaRU/k3OLz/HwT0+/WHj162DhKItcVn+doSEiI0rt3b+W9995T/Pz8FA8PD8XX11epVq2aMmPGDCU6Olqj6ImcU0LzRH/++acCQKlbt67y4sUL8/Vnz55VUqRIofj4+CiPHj1KUAwGRVGUhKXl9GPHjh1o0KABvL2943wH4bvvvjPf9ty5cxg/fjwAKfdbunQpMmXKhIYNGwKQSWk//PCDJo+DiIiIiIiIiIiSJiF5IkVR0KZNGyxfvhyFChVCgwYNEBISghUrVuD58+dYuHAhOnTokKD7d+gkGwAcOHAAAQEB2LdvHyIjI1GsWDF8+eWXr30hAgMDzZOW4pIrVy5cvXrVxtESEREREREREZGtxDdPBADR0dH49ddf8fvvv+PSpUvw9vZGpUqVMGTIkES1IHP4JBsREREREREREZHWHHa6KBERERERERERkV4wyUZERERERERERJRETLIRERERERERERElEZNsREREREREREREScQkGxERERERERERURIxyUZERERERERERJRETLIRERERERERERElkcMl2QwGAwoXLqx1GERERERERERERGYOl2QjIiIiIiIiIiLSGybZiIiIiIiI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Iz799FPMnTsX7du3x/z58+HmZhniu3quva1n26NHj1C3bl0cPXoUU6dORY8ePd4Z08iRIzFixAjUqlULa9euRfLkyRP6sIiIiIiIiIiIyMkZFEVRtA4CkARbt27dMG/ePLRt2xZ//PFHnBVjiqIge/bsCA0Nxd27dy0mjL548QJZs2ZF8uTJcfPmTRgMBvPHHj16hPfffx9Hjx7Fr7/+ij59+rwzphEjRmDkyJGoWbMmNmzYgBQpUljnwRIRERERERERkVPRRSWbqYJt3rx5aN26NRYvXvzGLZkGgwHdunVDWFgYRo0aZfGxcePG4fHjx+jWrdtrCTZTBdvPP/8crwRbQEAARo4cierVq2P9+vVMsBERERERERER0RvpopLNVDGWKlUq9OvXDx4er89jaN68OUqXLg0AePbsGapVq4Zjx46hXr16eO+993D8+HFs3LgRpUuXxu7duy0q3GrVqoV///0XhQsXRtu2beOM4csvv0SaNGkAAPPnz0eXLl3g4eGBfv36IVWqVK/dvlatWqhVq1aSHzsRERERERERETk+XUwXvXr1KgAgLCwMY8eOjfM2uXPnNifZUqZMicDAQIwcORLLly9HYGAgMmfOjP79+yMgIMAiwRb7/OfOncPIkSPjPL+/v785yWa6fXR0NCZPnvzGuJlkIyIiIiIiIiIiQCeVbERERERERERERI5MFz3ZiIiIiIiIiIiIHBmTbEREREREREREREnEJBsREREREREREVESMclGRERERERERESUREyyERERERERERERJRGTbEREREREREREREnEJBsREREREREREVESMclGRERERERERESUREyyERERERERERERJRGTbEREREREREREREnEJBsREREREREREVESMclGRERERERERESUREyyERERERERERERJdH/Aamev9KBraVlAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "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u9raWi0jI0Pbtm2btmzZMm3y5MlaS0tLr547EutD0zStrq5OmzFjhnb66adrJpOp188dqfXRXfdZd0ZSfbz11luas7Nzh+tOPfVU7dprr+3Vc4dLfezZs0cLCQnRioqKrMeO7T7TtMNdYHFxcZpOp9MMBoO2atUqbfLkydr111/fq+c6qj5GTUvRscLCwoiOjra2AoWFhQFYm+fapaSkWAd39WThwoVkZGRQVFTEtm3bmD9/PgDz589n69at5Ofnk5OT4/BBcP1xbH10ZvLkyTg5OXV7zdFGUn1s3ryZrKwsfH19MRqN1i6RCy64gAULFvSqzJFUH+18fHxITExk3rx5fPDBB6SlpbF27dpelTkS66OhoYHTTz8dT09P1q5di5OTU6/LHIn1cTxGUn2EhoZiMpmoqamxua68vJyQkJBelTlc6uPbb7+lvLycqKgo62dlXl4ef/jDH4iJibFet3jxYrKysigvL6eyspL//ve/FBUVERsb26vnOKo+Rm1SVFVVRUFBgTUZiomJITw8nPT0dJvrMjIyiI6O7lWZs2fPxsXFheeff56WlhamTJkCwNSpU6mrq+PFF1/E1dW1y6neg+nY+ujMwYMHMZvN3V5ztJFUH3feeSc///wzP/30k/UfwFNPPcXq1at7VeZIqo+uaJrW6y6UkVYf9fX1LF68GGdnZzZs2ICrq2ufyhxp9XG8RlJ9TJkyBScnJ7788kvrNSUlJRw4cKDX412GS31cdtllHT4rw8PDuf322/n88887XB8YGIivry+bN2+mvLycs88+u1fPcVh99KldaQhraGjQ9u3bp+3bt08DtH/84x/avn37tLy8PK2hoUH7wx/+oH3//fdaTk6OtmXLFm3WrFlaRESEVl9fby3jqaee0ry9vbX3339fO3TokHbvvfdqrq6uNrNpejJv3jzNy8tLO/30022On3rqqZqXl5e2aNEiu73m7hxvfWRmZmoPPfSQtnv3bi0nJ0f75JNPtOTkZG3SpEmaxWLpdRwjpT46Qx+7zzRt5NRHVlaW9thjj2l79uzR8vLytO+//14755xzNH9/f62srKzXcYyU+qivr9dmzJihnXDCCVpmZqZWUlJi/Tda3y8lJSXavn37tJdfflkDtG+++Ubbt2+fVlVV1es4RlJ9XHfddVpkZKT21VdfaT/++KO2aNEibeLEiSPu96Mz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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "omsa.run(project_name=\"demo_local_package\", catalogs=cat_data, model_name=cat_model,\n", + " vocabs=\"general\", key_variable=\"temp\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The plots show the time series comparisons for sea water temperatures of the model output and data at one location. Also shown is a map of the Cook Inlet region where the CIOFS model is located. An approximation of the numerical domain is shown along with the data location." + ] + } + ], + "metadata": { + "language_info": { + "name": "python" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/demo.md b/docs/demo.md deleted file mode 100644 index a2b1075..0000000 --- a/docs/demo.md +++ /dev/null @@ -1,72 +0,0 @@ ---- -jupytext: - text_representation: - extension: .md - format_name: myst - format_version: 0.13 - jupytext_version: 1.14.4 ---- - -```{code-cell} -import ocean_model_skill_assessor as omsa -import cf_pandas as cfp -``` - -# How to use `ocean-model-skill-assessor` - -... as a Python package. Other notebooks describe its command line interface uses. - -But, this is written in parallel to the [CLI demo](https://ocean-model-skill-assessor.readthedocs.io/en/latest/demo_cli.html), but will be more brief. - -There are three steps to follow for a set of model-data validation, which is for one variable: -1. Make a catalog for your model output. -2. Make a catalog for your data. -3. Run the comparison. - -These steps will save files into a user application directory cache. - -## Make model catalog - -```{code-cell} -cat_model = omsa.make_catalog(project_name="demo_local_package", catalog_type="local", catalog_name="model", - kwargs=dict(filenames="https://www.ncei.noaa.gov/thredds/dodsC/model-ciofs-agg/Aggregated_CIOFS_Fields_Forecast_best.ncd", - skip_entry_metadata=True), - kwargs_open=dict(drop_variables="ocean_time")) -``` - -```{code-cell} -cat_model -``` - -## Make data catalog - -Set up a catalog of the datasets with which you want to compare your model output. In this example, we use only known data file locations to create our catalog. - -```{code-cell} -filenames = ["https://erddap.sensors.axds.co/erddap/tabledap/noaa_nos_co_ops_9455500.csvp?time%2Clatitude%2Clongitude%2Cz%2Csea_water_temperature&time%3E=2022-01-01T00%3A00%3A00Z&time%3C=2022-01-06T00%3A00%3A00Z", - "https://erddap.sensors.axds.co/erddap/tabledap/aoos_204.csvp?time%2Clatitude%2Clongitude%2Cz%2Csea_water_temperature&time%3E=2022-01-01T00%3A00%3A00Z&time%3C=2022-01-06T00%3A00%3A00Z"] - -cat_data = omsa.make_catalog(project_name="demo_local_package", catalog_type="local", catalog_name="local", - kwargs=dict(filenames=filenames), kwargs_open=dict(blocksize=None)) -``` - -```{code-cell} -cat_data -``` - -## Run comparison - -Now that the model output and dataset catalogs are prepared, we can run the comparison of the two. - -At this point we need to select a single variable to compare between the model and datasets, and this requires a little extra input. Because we don't know specifics about the format of any given input data file, variables will be interpreted with some flexibility in the form of a set of regular expressions. In the present case, we will compare the water temperature between the model and the datasets (the model output and datasets selected for our catalogs should contain the variable we want to compare). Several sets of regular expressions, called "vocabularies", are available with the package to be used for this purpose, and in this case we will use one called "general" which should match many commonly-used variable names. "general" is selected under `vocab_names`, and the particular key from the general vocabulary that we are comparing is selected with `key`. - -See the vocabulary here. - -```{code-cell} -cfp.Vocab(omsa.VOCAB_PATH("general")) -``` - -```{code-cell} -omsa.run(project_name="demo_local_package", catalogs=cat_data, model_name=cat_model, - vocabs="general", key_variable="temp") -``` diff --git a/docs/demo_cli.ipynb b/docs/demo_cli.ipynb new file mode 100644 index 0000000..cabe2f4 --- /dev/null +++ b/docs/demo_cli.ipynb @@ -0,0 +1,1211 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import ocean_model_skill_assessor as omsa\n", + "from IPython.display import Code, Image" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# CLI demo of `ocean-model-skill-assessor` with known data files\n", + "\n", + "This demo runs command line interface (CLI) commands only, which is accomplished in a Jupyter notebook by prefacing commands with `!`. To transfer these commands to a terminal window, remove the `!` but otherwise keep commands the same.\n", + "\n", + "More detailed docs about running with the CLI are [available](https://ocean-model-skill-assessor.readthedocs.io/en/latest/cli.html).\n", + "\n", + "There are three steps to follow for a set of model-data validation, which is for one variable:\n", + "1. Make a catalog for your model output.\n", + "2. Make a catalog for your data.\n", + "3. Run the comparison.\n", + "\n", + "These steps will save files into a user application directory cache, along with a log. A project directory can be checked on the command line with `omsa proj_path --project_name PROJECT_NAME`.\n", + "\n", + "## Make model catalog\n", + "\n", + "Set up a catalog file for your model output. The user can input necessary keyword arguments – through `kwargs_open` – so that `xarray` will be able to read in the model output. Generally it is good to use `skip_entry_metadata` when using the `make_catalog` command for model output since we are using only one model and the entry metadata is aimed at being able to compare datasets.\n", + "\n", + "In the following command, \n", + "* `make_catalog` is the function being run from OMSA\n", + "* `demo_local` is the name of the project which will be used as the subdirectory name\n", + "* `local` is the type of catalog to choose when making a catalog for the model output regardless of where the model output is stored\n", + "* \"model\" is the catalog name which will be used for the file name and in the catalog itself\n", + "* Specific `kwargs` to be input to the catalog command are\n", + " * `filenames` which is a string describing where the model output can be found. If the model output is available through a sequence of filenames instead of a single server address, represent them with a single `glob`-style statement, for example, \"/filepath/filenameprefix_*.nc\".\n", + " * `skip_entry_metadata` use this when running `make_catalog` for model output\n", + "* `kwargs_open` all keywords required for `xr.open_dataset` or `xr.open_mfdataset` to successfully read your model output." + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Catalog saved to /Users/kthyng/Library/Caches/ocean-model-skill-assessor/demo_local/model.yaml with 1 entries.\n" + ] + } + ], + "source": [ + "!omsa make_catalog --project_name demo_local --catalog_type local --catalog_name model --kwargs filenames=https://www.ncei.noaa.gov/thredds/dodsC/model-ciofs-agg/Aggregated_CIOFS_Fields_Forecast_best.ncd skip_entry_metadata=True --kwargs_open drop_variables=ocean_time " + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
description: Catalog of type local.\n",
+       "metadata: {}\n",
+       "name: model\n",
+       "sources:\n",
+       "  Aggregated_CIOFS_Fields_Forecast_best:\n",
+       "    args:\n",
+       "      drop_variables: ocean_time\n",
+       "      engine: netcdf4\n",
+       "      urlpath: https://www.ncei.noaa.gov/thredds/dodsC/model-ciofs-agg/Aggregated_CIOFS_Fields_Forecast_best.ncd\n",
+       "    description: ''\n",
+       "    direct_access: allow\n",
+       "    driver: intake_xarray.opendap.OpenDapSource\n",
+       "    metadata:\n",
+       "      catalog_dir: ''\n",
+       "    name: Aggregated_CIOFS_Fields_Forecast_best\n",
+       "    parameters: {}\n",
+       "
\n" + ], + "text/latex": [ + "\\begin{Verbatim}[commandchars=\\\\\\{\\}]\n", + "\\PY{n+nt}{description}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Catalog}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{of}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{type}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{local.}\n", + "\\PY{n+nt}{metadata}\\PY{p}{:}\\PY{+w}{ }\\PY{p+pIndicator}{\\PYZob{}}\\PY{p+pIndicator}{\\PYZcb{}}\n", + "\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{model}\n", + "\\PY{n+nt}{sources}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{Aggregated\\PYZus{}CIOFS\\PYZus{}Fields\\PYZus{}Forecast\\PYZus{}best}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{args}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{drop\\PYZus{}variables}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{ocean\\PYZus{}time}\n", + "\\PY{+w}{ }\\PY{n+nt}{engine}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{netcdf4}\n", + "\\PY{+w}{ }\\PY{n+nt}{urlpath}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{https://www.ncei.noaa.gov/thredds/dodsC/model\\PYZhy{}ciofs\\PYZhy{}agg/Aggregated\\PYZus{}CIOFS\\PYZus{}Fields\\PYZus{}Forecast\\PYZus{}best.ncd}\n", + "\\PY{+w}{ }\\PY{n+nt}{description}\\PY{p}{:}\\PY{+w}{ }\\PY{l+s}{\\PYZsq{}}\\PY{l+s}{\\PYZsq{}}\n", + "\\PY{+w}{ }\\PY{n+nt}{direct\\PYZus{}access}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{allow}\n", + "\\PY{+w}{ }\\PY{n+nt}{driver}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{intake\\PYZus{}xarray.opendap.OpenDapSource}\n", + "\\PY{+w}{ }\\PY{n+nt}{metadata}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{catalog\\PYZus{}dir}\\PY{p}{:}\\PY{+w}{ }\\PY{l+s}{\\PYZsq{}}\\PY{l+s}{\\PYZsq{}}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Aggregated\\PYZus{}CIOFS\\PYZus{}Fields\\PYZus{}Forecast\\PYZus{}best}\n", + "\\PY{+w}{ }\\PY{n+nt}{parameters}\\PY{p}{:}\\PY{+w}{ }\\PY{p+pIndicator}{\\PYZob{}}\\PY{p+pIndicator}{\\PYZcb{}}\n", + "\\end{Verbatim}\n" + ], + "text/plain": [ + "description: Catalog of type local.\n", + "metadata: {}\n", + "name: model\n", + "sources:\n", + " Aggregated_CIOFS_Fields_Forecast_best:\n", + " args:\n", + " drop_variables: ocean_time\n", + " engine: netcdf4\n", + " urlpath: https://www.ncei.noaa.gov/thredds/dodsC/model-ciofs-agg/Aggregated_CIOFS_Fields_Forecast_best.ncd\n", + " description: ''\n", + " direct_access: allow\n", + " driver: intake_xarray.opendap.OpenDapSource\n", + " metadata:\n", + " catalog_dir: ''\n", + " name: Aggregated_CIOFS_Fields_Forecast_best\n", + " parameters: {}" + ] + }, + "execution_count": 69, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Code(filename=omsa.CAT_PATH(\"model\", \"demo_local\"))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Make data catalog \n", + "\n", + "Set up a catalog of the datasets with which you want to compare your model output. In this example, we use only known data file locations to create our catalog.\n", + "\n", + "In this step, we use the same `project_name` as in the previous step so as to put the resulting catalog file in the same subdirectory, we create a catalog of type \"local\" since we have known data locations, we call this catalog file \"local\", input the filenames as a list in quotes (this specific syntax is necessary for inputting a list in through the command line interface), and we input any keyword arguments necessary for reading the datasets.\n", + "\n", + "In the following command:\n", + "* `make_catalog` is the function being run from OMSA\n", + "* `demo_local` is the name of the project which will be used as the subdirectory name\n", + "* `local` is the type of catalog to choose when making a catalog for the known data files\n", + "* \"local\" is the catalog name which will be used for the file name and in the catalog itself\n", + "* Specific `kwargs` to be input to the catalog command are\n", + " * `filenames` which is a string or a list of strings pointing to where the data files can be found. If you are using a list, the syntax for the command line interface is `filenames=\"[file1,file2]\"`.\n", + "* `kwargs_open` all keywords required for `xr.open_dataset` or `xr.open_mfdataset` or `pandas.open_csv`, or whatever method will ultimately be used to successfully read your model output. These must be applicable to all datasets represted by `filenames`. If they are not, run this command multiple times, one for each set of filenames and `kwargs_open` that match." + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:180: RuntimeWarning: Dataset noaa_nos_co_ops_9455500 had a timezone UTC which is being removed. Make sure the timezone matches the model output.\n", + " warnings.warn(\n", + "/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:180: RuntimeWarning: Dataset aoos_204 had a timezone UTC which is being removed. Make sure the timezone matches the model output.\n", + " warnings.warn(\n", + "Catalog saved to /Users/kthyng/Library/Caches/ocean-model-skill-assessor/demo_local/local.yaml with 2 entries.\n" + ] + } + ], + "source": [ + "!omsa make_catalog --project_name demo_local --catalog_type local --catalog_name local --kwargs filenames=\"[https://erddap.sensors.axds.co/erddap/tabledap/noaa_nos_co_ops_9455500.csvp?time%2Clatitude%2Clongitude%2Cz%2Csea_water_temperature&time%3E=2022-01-01T00%3A00%3A00Z&time%3C=2022-01-06T00%3A00%3A00Z,https://erddap.sensors.axds.co/erddap/tabledap/aoos_204.csvp?time%2Clatitude%2Clongitude%2Cz%2Csea_water_temperature&time%3E=2022-01-01T00%3A00%3A00Z&time%3C=2022-01-06T00%3A00%3A00Z]\" --kwargs_open blocksize=None" + ] + }, + { + "cell_type": "code", + "execution_count": 75, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
description: Catalog of type local.\n",
+       "metadata: {}\n",
+       "name: local\n",
+       "sources:\n",
+       "  aoos_204:\n",
+       "    args:\n",
+       "      csv_kwargs:\n",
+       "        blocksize: null\n",
+       "      urlpath: https://erddap.sensors.axds.co/erddap/tabledap/aoos_204.csvp?time%2Clatitude%2Clongitude%2Cz%2Csea_water_temperature&time%3E=2022-01-01T00%3A00%3A00Z&time%3C=2022-01-06T00%3A00%3A00Z\n",
+       "    description: ''\n",
+       "    direct_access: allow\n",
+       "    driver: intake.source.csv.CSVSource\n",
+       "    metadata:\n",
+       "      catalog_dir: ''\n",
+       "      maxLatitude: 59.5973\n",
+       "      maxLongitude: -151.8291\n",
+       "      maxTime: '2022-01-06 00:00:00'\n",
+       "      minLatitude: 59.5973\n",
+       "      minLongitude: -151.8291\n",
+       "      minTime: '2022-01-01 00:00:00'\n",
+       "    name: aoos_204\n",
+       "    parameters: {}\n",
+       "  noaa_nos_co_ops_9455500:\n",
+       "    args:\n",
+       "      csv_kwargs:\n",
+       "        blocksize: null\n",
+       "      urlpath: https://erddap.sensors.axds.co/erddap/tabledap/noaa_nos_co_ops_9455500.csvp?time%2Clatitude%2Clongitude%2Cz%2Csea_water_temperature&time%3E=2022-01-01T00%3A00%3A00Z&time%3C=2022-01-06T00%3A00%3A00Z\n",
+       "    description: ''\n",
+       "    direct_access: allow\n",
+       "    driver: intake.source.csv.CSVSource\n",
+       "    metadata:\n",
+       "      catalog_dir: ''\n",
+       "      maxLatitude: 59.440528\n",
+       "      maxLongitude: -151.719944\n",
+       "      maxTime: '2022-01-06 00:00:00'\n",
+       "      minLatitude: 59.440528\n",
+       "      minLongitude: -151.719944\n",
+       "      minTime: '2022-01-01 00:00:00'\n",
+       "    name: noaa_nos_co_ops_9455500\n",
+       "    parameters: {}\n",
+       "
\n" + ], + "text/latex": [ + "\\begin{Verbatim}[commandchars=\\\\\\{\\}]\n", + "\\PY{n+nt}{description}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Catalog}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{of}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{type}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{local.}\n", + "\\PY{n+nt}{metadata}\\PY{p}{:}\\PY{+w}{ }\\PY{p+pIndicator}{\\PYZob{}}\\PY{p+pIndicator}{\\PYZcb{}}\n", + "\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{local}\n", + "\\PY{n+nt}{sources}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{aoos\\PYZus{}204}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{args}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{csv\\PYZus{}kwargs}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{blocksize}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{null}\n", + "\\PY{+w}{ }\\PY{n+nt}{urlpath}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{https://erddap.sensors.axds.co/erddap/tabledap/aoos\\PYZus{}204.csvp?time\\PYZpc{}2Clatitude\\PYZpc{}2Clongitude\\PYZpc{}2Cz\\PYZpc{}2Csea\\PYZus{}water\\PYZus{}temperature\\PYZam{}time\\PYZpc{}3E=2022\\PYZhy{}01\\PYZhy{}01T00\\PYZpc{}3A00\\PYZpc{}3A00Z\\PYZam{}time\\PYZpc{}3C=2022\\PYZhy{}01\\PYZhy{}06T00\\PYZpc{}3A00\\PYZpc{}3A00Z}\n", + "\\PY{+w}{ }\\PY{n+nt}{description}\\PY{p}{:}\\PY{+w}{ }\\PY{l+s}{\\PYZsq{}}\\PY{l+s}{\\PYZsq{}}\n", + "\\PY{+w}{ }\\PY{n+nt}{direct\\PYZus{}access}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{allow}\n", + "\\PY{+w}{ }\\PY{n+nt}{driver}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{intake.source.csv.CSVSource}\n", + "\\PY{+w}{ }\\PY{n+nt}{metadata}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{catalog\\PYZus{}dir}\\PY{p}{:}\\PY{+w}{ }\\PY{l+s}{\\PYZsq{}}\\PY{l+s}{\\PYZsq{}}\n", + "\\PY{+w}{ }\\PY{n+nt}{maxLatitude}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{59.5973}\n", + "\\PY{+w}{ }\\PY{n+nt}{maxLongitude}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{\\PYZhy{}151.8291}\n", + "\\PY{+w}{ }\\PY{n+nt}{maxTime}\\PY{p}{:}\\PY{+w}{ }\\PY{l+s}{\\PYZsq{}}\\PY{l+s}{2022\\PYZhy{}01\\PYZhy{}06}\\PY{n+nv}{ }\\PY{l+s}{00:00:00}\\PY{l+s}{\\PYZsq{}}\n", + "\\PY{+w}{ }\\PY{n+nt}{minLatitude}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{59.5973}\n", + "\\PY{+w}{ }\\PY{n+nt}{minLongitude}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{\\PYZhy{}151.8291}\n", + "\\PY{+w}{ }\\PY{n+nt}{minTime}\\PY{p}{:}\\PY{+w}{ }\\PY{l+s}{\\PYZsq{}}\\PY{l+s}{2022\\PYZhy{}01\\PYZhy{}01}\\PY{n+nv}{ }\\PY{l+s}{00:00:00}\\PY{l+s}{\\PYZsq{}}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{aoos\\PYZus{}204}\n", + "\\PY{+w}{ }\\PY{n+nt}{parameters}\\PY{p}{:}\\PY{+w}{ }\\PY{p+pIndicator}{\\PYZob{}}\\PY{p+pIndicator}{\\PYZcb{}}\n", + "\\PY{+w}{ }\\PY{n+nt}{noaa\\PYZus{}nos\\PYZus{}co\\PYZus{}ops\\PYZus{}9455500}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{args}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{csv\\PYZus{}kwargs}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{blocksize}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{null}\n", + "\\PY{+w}{ }\\PY{n+nt}{urlpath}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{https://erddap.sensors.axds.co/erddap/tabledap/noaa\\PYZus{}nos\\PYZus{}co\\PYZus{}ops\\PYZus{}9455500.csvp?time\\PYZpc{}2Clatitude\\PYZpc{}2Clongitude\\PYZpc{}2Cz\\PYZpc{}2Csea\\PYZus{}water\\PYZus{}temperature\\PYZam{}time\\PYZpc{}3E=2022\\PYZhy{}01\\PYZhy{}01T00\\PYZpc{}3A00\\PYZpc{}3A00Z\\PYZam{}time\\PYZpc{}3C=2022\\PYZhy{}01\\PYZhy{}06T00\\PYZpc{}3A00\\PYZpc{}3A00Z}\n", + "\\PY{+w}{ }\\PY{n+nt}{description}\\PY{p}{:}\\PY{+w}{ }\\PY{l+s}{\\PYZsq{}}\\PY{l+s}{\\PYZsq{}}\n", + "\\PY{+w}{ }\\PY{n+nt}{direct\\PYZus{}access}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{allow}\n", + "\\PY{+w}{ }\\PY{n+nt}{driver}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{intake.source.csv.CSVSource}\n", + "\\PY{+w}{ }\\PY{n+nt}{metadata}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{catalog\\PYZus{}dir}\\PY{p}{:}\\PY{+w}{ }\\PY{l+s}{\\PYZsq{}}\\PY{l+s}{\\PYZsq{}}\n", + "\\PY{+w}{ }\\PY{n+nt}{maxLatitude}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{59.440528}\n", + "\\PY{+w}{ }\\PY{n+nt}{maxLongitude}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{\\PYZhy{}151.719944}\n", + "\\PY{+w}{ }\\PY{n+nt}{maxTime}\\PY{p}{:}\\PY{+w}{ }\\PY{l+s}{\\PYZsq{}}\\PY{l+s}{2022\\PYZhy{}01\\PYZhy{}06}\\PY{n+nv}{ }\\PY{l+s}{00:00:00}\\PY{l+s}{\\PYZsq{}}\n", + "\\PY{+w}{ }\\PY{n+nt}{minLatitude}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{59.440528}\n", + "\\PY{+w}{ }\\PY{n+nt}{minLongitude}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{\\PYZhy{}151.719944}\n", + "\\PY{+w}{ }\\PY{n+nt}{minTime}\\PY{p}{:}\\PY{+w}{ }\\PY{l+s}{\\PYZsq{}}\\PY{l+s}{2022\\PYZhy{}01\\PYZhy{}01}\\PY{n+nv}{ }\\PY{l+s}{00:00:00}\\PY{l+s}{\\PYZsq{}}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{noaa\\PYZus{}nos\\PYZus{}co\\PYZus{}ops\\PYZus{}9455500}\n", + "\\PY{+w}{ }\\PY{n+nt}{parameters}\\PY{p}{:}\\PY{+w}{ }\\PY{p+pIndicator}{\\PYZob{}}\\PY{p+pIndicator}{\\PYZcb{}}\n", + "\\end{Verbatim}\n" + ], + "text/plain": [ + "description: Catalog of type local.\n", + "metadata: {}\n", + "name: local\n", + "sources:\n", + " aoos_204:\n", + " args:\n", + " csv_kwargs:\n", + " blocksize: null\n", + " urlpath: https://erddap.sensors.axds.co/erddap/tabledap/aoos_204.csvp?time%2Clatitude%2Clongitude%2Cz%2Csea_water_temperature&time%3E=2022-01-01T00%3A00%3A00Z&time%3C=2022-01-06T00%3A00%3A00Z\n", + " description: ''\n", + " direct_access: allow\n", + " driver: intake.source.csv.CSVSource\n", + " metadata:\n", + " catalog_dir: ''\n", + " maxLatitude: 59.5973\n", + " maxLongitude: -151.8291\n", + " maxTime: '2022-01-06 00:00:00'\n", + " minLatitude: 59.5973\n", + " minLongitude: -151.8291\n", + " minTime: '2022-01-01 00:00:00'\n", + " name: aoos_204\n", + " parameters: {}\n", + " noaa_nos_co_ops_9455500:\n", + " args:\n", + " csv_kwargs:\n", + " blocksize: null\n", + " urlpath: https://erddap.sensors.axds.co/erddap/tabledap/noaa_nos_co_ops_9455500.csvp?time%2Clatitude%2Clongitude%2Cz%2Csea_water_temperature&time%3E=2022-01-01T00%3A00%3A00Z&time%3C=2022-01-06T00%3A00%3A00Z\n", + " description: ''\n", + " direct_access: allow\n", + " driver: intake.source.csv.CSVSource\n", + " metadata:\n", + " catalog_dir: ''\n", + " maxLatitude: 59.440528\n", + " maxLongitude: -151.719944\n", + " maxTime: '2022-01-06 00:00:00'\n", + " minLatitude: 59.440528\n", + " minLongitude: -151.719944\n", + " minTime: '2022-01-01 00:00:00'\n", + " name: noaa_nos_co_ops_9455500\n", + " parameters: {}" + ] + }, + "execution_count": 75, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Code(filename=omsa.CAT_PATH(\"local\", \"demo_local\"))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Run comparison\n", + "\n", + "Now that the model output and dataset catalogs are prepared, we can run the comparison of the two.\n", + "\n", + "In this step, we use the same `project_name` as the other steps so as to keep all files in the same subdirectory. We input the data catalog name under `catalog_names` and the model catalog name under `model_name`. \n", + "\n", + "At this point we need to select a single variable to compare between the model and datasets, and this requires a little extra input. Because we don't know anything about the format of any given input data file, variables will be interpreted with some flexibility in the form of a set of regular expressions. In the present case, we will compare the water temperature between the model and the datasets (the model output and datasets selected for our catalogs should contain the variable we want to compare). Several sets of regular expressions, called \"vocabularies\", are available with the package to be used for this purpose, and in this case we will use one called \"general\" which should match many commonly-used variable names. \"general\" is selected under `vocab_names`, and the particular key from the general vocabulary that we are comparing is selected with `key`.\n", + "\n", + "See the vocabulary here." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
{"temp": {"name": "^(?!.*(air|qc|status|atmospheric|bottom))(?=.*temp)"}, "salt": {"name": "^(?!.*(soil|qc|status|bottom))(?=.*sal)"}, "ssh": {"name": "^(?!.*(qc|status))(?=.*sea_surface_height)(?=.*surface_elevation)"}}\n",
+       "
\n" + ], + "text/latex": [ + "\\begin{Verbatim}[commandchars=\\\\\\{\\}]\n", + "\\PY{p}{\\PYZob{}}\\PY{n+nt}{\\PYZdq{}temp\\PYZdq{}}\\PY{p}{:}\\PY{+w}{ }\\PY{p}{\\PYZob{}}\\PY{n+nt}{\\PYZdq{}name\\PYZdq{}}\\PY{p}{:}\\PY{+w}{ }\\PY{l+s+s2}{\\PYZdq{}\\PYZca{}(?!.*(air|qc|status|atmospheric|bottom))(?=.*temp)\\PYZdq{}}\\PY{p}{\\PYZcb{},}\\PY{+w}{ }\\PY{n+nt}{\\PYZdq{}salt\\PYZdq{}}\\PY{p}{:}\\PY{+w}{ }\\PY{p}{\\PYZob{}}\\PY{n+nt}{\\PYZdq{}name\\PYZdq{}}\\PY{p}{:}\\PY{+w}{ }\\PY{l+s+s2}{\\PYZdq{}\\PYZca{}(?!.*(soil|qc|status|bottom))(?=.*sal)\\PYZdq{}}\\PY{p}{\\PYZcb{},}\\PY{+w}{ }\\PY{n+nt}{\\PYZdq{}ssh\\PYZdq{}}\\PY{p}{:}\\PY{+w}{ }\\PY{p}{\\PYZob{}}\\PY{n+nt}{\\PYZdq{}name\\PYZdq{}}\\PY{p}{:}\\PY{+w}{ }\\PY{l+s+s2}{\\PYZdq{}\\PYZca{}(?!.*(qc|status))(?=.*sea\\PYZus{}surface\\PYZus{}height)(?=.*surface\\PYZus{}elevation)\\PYZdq{}}\\PY{p}{\\PYZcb{}\\PYZcb{}}\n", + "\\end{Verbatim}\n" + ], + "text/plain": [ + "{\"temp\": {\"name\": \"^(?!.*(air|qc|status|atmospheric|bottom))(?=.*temp)\"}, \"salt\": {\"name\": \"^(?!.*(soil|qc|status|bottom))(?=.*sal)\"}, \"ssh\": {\"name\": \"^(?!.*(qc|status))(?=.*sea_surface_height)(?=.*surface_elevation)\"}}" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Code(filename=omsa.VOCAB_PATH(\"general\"))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the following command:\n", + "* `run` is the function being run from OMSA\n", + "* `demo_local` is the name of the project which will be used as the subdirectory name\n", + "* `catalog_names` are the names of any catalogs with datasets to include in the comparison. In this case we have just one called \"local\"\n", + "* `model_name` is the name of the model catalog we previously created\n", + "* `vocab_names` are the names of the vocabularies to use for interpreting which variable to compare from the model output and datasets. If multiple are input, they are combined together. The variable nicknames need to match in the vocabularies to be interpreted together.\n", + "* `key` is the nickname or alias of the variable as given in the input vocabulary" + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Note that there are 2 datasets to use. This might take awhile.\n", + "/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'u' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'v' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'w' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'temp' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'salt' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'Pair' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'Uwind' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'Vwind' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/cf_xarray/accessor.py:1642: UserWarning: Variables {''} not found in object but are referred to in the CF attributes.\n", + " warnings.warn(\n", + " 0%| | 0/1 [00:00.\n", + "\n", + " 0%| | 0/2 [00:00" + ] + }, + "execution_count": 89, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Image(omsa.PROJ_DIR(\"demo_local\") / \"map.png\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here we see a time series comparison at marker \"1\" from the map, station \"noaa_nos_co_ops_9455500\". It shows in black the temperature values from the data and in red the comparable values from the model. The comparison time range is January 1, 2022, through January 5, 2022. The lines are reasonably similar, as captured by the statistical values in the title." + ] + }, + { + "cell_type": "code", + "execution_count": 91, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABNkAAAH4CAYAAAB34DvTAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8o6BhiAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd1hTZxsG8DtsJyAiIqi4EVGLFdxbq1ZR667WvfdetXXVuvf81LraukdVFFr3LKh1TxTFvReIICvv98cxRyJhZZAA9++6cpGcnPHknJyT8OR930chhBAgIiIiIiIiIiIirZkZOwAiIiIiIiIiIqKMjkk2IiIiIiIiIiIiHTHJRkREREREREREpCMm2YiIiIiIiIiIiHTEJBsREREREREREZGOmGQjIiIiIiIiIiLSEZNsREREREREREREOmKSjYiIiIiIiIiISEdMshEREREREREREemISTYiItKLdevWQaFQoGvXrmla7t69e1AoFHBzczNIXERZSdeuXaFQKLBu3Tpjh0JERESU5WSpJFtoaChWrVqFXr16oXz58rCwsIBCocDUqVONHRoRAQgLC8OECRPg6emJ7Nmzw87ODjVr1sSmTZvStJ6DBw9CoVBAoVCgfv36Guc5evSoPE9St//973+JllMlhJK7jR07VuM2U1quffv2Sb4mpVKJRYsWwcvLCzly5ECePHlQv359BAQEpLg//vzzT1StWhW2trbInTs3qlatig0bNqS4HOmPv78/6tevjzx58iBHjhyoUKECFi9eDKVSqdX69HWukLqzZ89i3rx5aN++PYoUKSKfmydPntR53TwP0+bx48fo3bs3ChYsCGtraxQqVAh9+vTB48ePtV7n7t270bhxY+TLlw+Wlpawt7dHrVq1sHr1aq3PRfosKioKf/31F8aNG4d69erB1tYWCoUCxYsX13nd7969w8iRI1GsWDHY2NjA2dkZHTt2xI0bN/QQOaVEn/s/IiICs2bNQqtWrVCqVCnY29vDysoKLi4uaN26NY4dO2aAV0Ca8JwlMhCRhQwZMkQASHT75ZdfjB0aUZb36NEjUaJECQFAmJubi/LlywsPDw+hUCgEANG3b99UrScqKkoUL15cPr/r1auncb4jR44IACJ37tyiWrVqGm+7du1KtFxoaKgAIKytrZNcbvny5Rq3qYopqeUmTpyocbm4uDjR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pLHwARFlPsHBQNmyQGwsYGkpFUVwd9dqVSyCQERERERElHmw8AERUVqUKgWMHi3dj40FBg4EtPw9wd3dHcOGDQMgFUEYMmRImoogxMXF4ddff0WLFi0QFBSkVQxERERERERk+tiSjYgyp8hIwMND6jIKAJs2Ae3ba7WqiIgIuLu74/HjxwCA3bt3o1mzZiku9+7dO7Rr1w779+8HAFhZWWHVqlXo3LmzVnEQERERERGRbtiSjYgorbJnBxYv/vx4+HAgPFyrVWkqghAVFZXsMrdv30blypXlBBsAxMTEoEuXLhg7diyUSqVWsRAREREREZFpYpKNiDIvX1/pBgBPnwITJ2q9qjZt2shFEO7du5dsEYTDhw+jUqVKCA4OBgA4ODigXbt28vMzZ85Ey5YtERERoXU8REREREREZFqYZCOizG3hQiBbNun+okXApUtarUahUGDx4sWwsLAAICXK7ty5k2i+FStWoGHDhnj79i0AwMPDA2fOnMGmTZuwePFimJlJl93du3ejWrVquK/qzkpEREREREQZGpNsRJS5FSkCjB8v3Vcqgf79pb9aKF26NIYPHw5AKoIwePBguQhCXFwcBg8ejL59+yIuLg4A8O233yIwMBBFixaFQqHAwIEDERAQAFtbWwDA5cuX4ePjg8DAQB1fJBERERERERkbk2xElPmNHAmULCnd//dfYN06rVf1888/w8XFBQDg7+8PPz8/vHv3Dk2aNMHiBGPADR8+HHv27Ek0kOY333yDoKAgFC9eHADw4sUL1K5dG3/88YfWMREREREREZHxsbooEWUNBw8CDRpI9x0cgOBg6a8Wtm7dKo+xVrhwYWTLlg03b94EAFhaWmL58uXo0aNHsut48+YNWrdujSNHjsjTxo4di19//VXuUkpERERERET6Zcg8EZNsRJR1tG8PbNki3R8wAFiyRKvVCCHQoEEDHDp0SG26g4MDdu7ciZo1a6ZqPbGxsRg0aBBWrFghT/Py8kK+fPm0issU2NnZYdCgQahWrZqxQyEiIiIiIkqESTYdMMlGRLInT6Ruox8+ABYWwPXrQIkSWq3qxo0bKFeunDz+moeHB/z8/FC0aNE0rUcIgSVLlmDo0KFQajlWnKmxsLDAsmXL0KtXL2OHQkREREREpMaQeSL2SSKirKNAAWl8NgCIiwN++knrVZUuXRozZ86EhYUF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t6JDhw5mn9u6davpOkRERERERMibF/jqK62jIKKkSJUKqFJFPoyePAFiY4FMmTQLiyildNeTLSYmBkWLFsWtW7dw4MABlC1bFgAQFhaGqlWr4ty5czh16hSKFCmSqPNZc68tERERERERERHZD6fqyebm5ob58+ejUaNGqFmzJjp27Ih06dJh9erVuHLlCsaNG5foBBsREREREREREZEt6C7JBgB169bFnj174Ofnh+XLlyMqKgolS5bE2LFj0alTJ63DIyIiIiIiIiIiMqO77aKWxu2iREREREREREQEWDdP5GLRsxERERERERERETkhJtmIiIiIiIiIiIhSiEk2IiIiIiIiIiKiFGKSjYiIiIiIiIiIKIWYZCMiIiIiIiIiIkohJtmIiIiIiIiIiIhSiEk2IiIiIiIiIiKiFGKSjYiIiIiIiIiIKIWYZCMiIiIiIiIiIkohJtmIiIiIiIiIiIhSyE3rAKxNURQAQGhoqMaREBERERERERGRloz5IWO+yJIcPsn28OFDAEDu3Lk1joSIiIiIiIiIiPTg4cOH8PHxseg5HT7JljFjRgDA9evXLf7NI6KUq1ixIg4dOqR1GET0GnyMEukXH59E+sbHKJE+hYSEIE+ePKZ8kSU5fJLNxUXazvn4+CBdunQaR0NEL3N1deVjk0jH+Bgl0i8+Pon0jY9RIn0z5ossek6Ln5GIKAn69eundQhE9AZ8jBLpFx+fRPrGxyiR8zEo1uj0piOhoaHw8fFBSEgI30UgIiIiIiIiInJi1swTOXwlm6enJ/z8/ODp6al1KEREREREREREpCFr5okcvpKNiIiIiIiIiIjI2hy+ko2IiIiIiIiIiMjamGQjIiIiIiIiIiJKISbZiMhqDh06hCZNmiBDhgxIkyYNKlWqhD/++MPsOtHR0Vi1ahW6deuG4sWLI02aNPD29kblypUxa9YsxMbGahQ9keNLzGMUAObNm4fmzZsjf/78SJMmDXx8fFCmTBmMGjUKjx490iByIseX2Mfny65cuYK0adPCYDDgs88+s0GkRM4psY/R0aNHw2AwJPiRKlUqDSInImty0zoAInJMAQEBaNSoETw8PNChQwf4+Phg9erV6NSpE65evYrhw4cDAC5duoQ2bdrA29sb9erVQ4sWLRASEoL169ejX79+2Lx5M9atWweDwaDxPSJyLIl9jALAkiVL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goiIiIiIiIiI7Jmb1gGk1K5duzBt2jTUr18flStXhru7O44ePYpffvkFW7ZsQVBQEHx8fF75um+++QYBAQFo1qwZGjZsiLVr12L06NGIiorC+PHjNbgnRERERERERERkrwyKoihaB5EUBoMBRYsWxdmzZwEA9+/fR+rUqZE2bVqz6/3222/o2rUrxo0bh2+//dZ0ebdu3bB48WLkz58fe/fuRfbs2QEAwcHBKFy4MGJjYxEcHAwPDw/b3SkiIiIiIiIiIrJrdr9dNEuWLK8k2ACgS5cuSJcuHbZv357g140cOdKUYAMAX19ffPDBBwgLC8O5c+esFi8RERERERERETkeu0+yAcDq1avRqFEjZM6cGW5ubjAYDHBxcUFoaChu376d4NeUL1/+lcty5coFAHjy5Ik1wyUiIiIiIiIiIgdj9z3Zpk2bhq+//hqZM2dGw4YNkStXLnh5eQEApk+fjsjIyAS/LqE+bW5u8u2IjY21XsBERERERERERORw7DrJFhMTg7FjxyJHjhw4duwYMmfObPqcoiiYPHmyhtEREREREREREZGzsOvtosHBwQgJCUGVKlXMEmwAcPjwYURERGgUGRERERERERERORO7TrJlyZIFXl5eCAoKwrNnz0yXP378GAMGDNAwMiIiIiIiIiIiciZ2nWRzcXFB3759cfXqVZQpUwZffvklevbsiVKlSsHFxQU5cuTQOkQiIiIiIiIiInICdpVkMw4k8PDwMF02YcIEjB8/HgaDAbNmzcK2bdvQoUMHbN26Fe7u7lqFSkRERERERERETsSgKIqidRCJdffuXWTPnh1169bFjh07tA6HiIiIiIiIiIgIgJ1Vsq1btw4AULlyZY0jISIiIiIiIiIiUtlFJdt3332HkydPYvny5UiVKhVOnjyJfPnyaR0WERERERERERERADtJsmXIkAGxsbGoWrUqxo0bh4oVK2odEhERERERERERkYldJNmIiIiIiIiIiIj0zK56shEREREREREREekRk2xEREREREREREQpxCQbERERERERERFRCukiyXbr1i1Mnz4dDRs2RJ48eeDh4YFs2bKhdevWCAwMTPBrQkND8eWXXyJv3rzw9PRE3rx58eWXXyI0NPSV6x47dgwjR45ElSpVkCVLFnh6eqJAgQLo27cvbt269cr1Hz58iLlz56JFixYoUKAAPD094evri/fffx9btmyx+P0nIiIiIiIiIiL7povBB0OHDsWkSZNQsGBB1K5dG1myZMGFCxewdu1aKIqC//3vf2jXrp3p+k+fPkWNGjVw7NgxNGjQAOXLl8fx48exefNmlC1bFnv27EGaNGlM169SpQoOHjyIihUronLlyvD09ERgYCB2794NX19f7N69G8WKFTNdf/bs2ejTpw9y5syJevXqIWfOnLh58yZWrVqFiIgITJkyBV9//bVNv0dERERERERERKRfukiyrV69GpkzZ0bNmjXNLt+9ezfq168Pb29v3L59G56engAAPz8/jBkzBoMHD8akSZNM1zdePmrUKPj7+5sunzFjBt5//30ULFjQ7PyTJk3C0KFD0aRJE2zcuNF0+Y4dOxAREYH3338fLi5qsd+5c+dQuXJlPHv2DFevXkWOHDks+n0gIiIiIiIiIiL7pIsk25s0atQIW7duxaFDh1ChQgUoioJcuXIhNDQUd+/eNatYe/78OXLkyIHUqVPjxo0bMBgMbzx3bGws0qVLB4PBgPDw8ETF07t3b8ydOxcrVqxAmzZtUnTfiIiIiIiIiIjIMeiiJ9ubuLu7AwDc3NwAABcuXMDt27dRvXp1swQbAKRKlQq1atXCrVu3cPHixbee22AwwNXV1XTu5MRDRERERERERESk6yTb9evXsX37dmTLlg2lS5cGIEk2AChcuHCCX2O83Hi9N1m5ciXCwsLQsGHDRMUTFhaGlStXIlWqVK9sbSUiIiIiIiIiIuel2yRbdHQ0unTpgsjISEyePBmurq4AgJCQEACAj49Pgl+XLl06s+u9zo0bN/D555/Dy8sLY8eOTVRMn332Ge7du4fhw4cjU6ZMib0rRERERERERETk4HS55zEuLg49evTArl270KtXL3Tp0sWi53/06BGaNGmC+/fv47fffkPRokXf+jXDhw/HH3/8gcaNG2P48OEWjYeIiIiIiIiIiOyb7irZFEVBr169sHTpUnTu3BmzZ882+7yxgu11lWqhoaFm13vZ48eP8d577+HUqVP45Zdf0Llz57fG5O/vjwkTJqBevXpYvXq1qaqOiIiIiIiIiIgI0FmSLS4uDp988gkWLFiAjh07YtGiRXBxMQ/xbT3X3tSz7dGjR6hfvz6OHj2KGTNmoHfv3m+Nyd/fH6NHj0adOnWwfv16eHl5JfVuERERERERERGRgzMoiqJoHQQgCbaePXti4cKFaN++PX7//fcEK8YURUGuXLkQGhqKu3fvmk0Yff78OXLkyAEvLy/cvHkTBoPB9LlHjx7hvffew9GjR/Hzzz+jf//+b41p9OjR8Pf3R+3atfH3338jderUlrmzRERERERERETkUHRRyWasYFu4cCHatm2LpUuXvnZLpsFgQM+ePREeHo4xY8aYfW7ChAl4/Pgxevbs+UqCzVjB9uOPPyYqwebn5wd/f3/UrFkTGzduZIKNiIiIiIiIiIheSxeVbMaKsbRp02LgwIFwc3t1HkPLli1RtmxZAMDTp09Ro0YNHDt2DA0aNMC7776L48ePY9OmTShbtiz27NljVuFWp04d/PvvvyhWrBjat2+fYAxffPEF0qdPDwBYtGgRunfvDjc3NwwcOBBp06Z95fp16tRBnTp1UnzfiYiIiIiIiIjI/uliuujVq1cBAOHh4Rg/fnyC18mXL58pyZYmTRoEBATA398fK1euREBAALJly4ZBgwbBz8/PLMEW//xnz56Fv79/gufv1q2bKclmvH5MTAymTZv22riZZCMiIiIiIiIiIkAnlWxERERERERERET2TBc92YiIiIiIiIiIiOwZk2xEREREREREREQpxCQbERERERERERFRCjHJRkRERERERERElEJMshEREREREREREaUQk2xEREREREREREQpxCQbERERERERERFRCjHJRkRERERERERElEJMshEREREREREREaUQk2xEREREREREREQpxCQbERERERERERFRCjHJRkRERERERERElEJMshEREREREREREaXQ/wHaq5UZ5qZJswAAAABJRU5ErkJggg==", + "text/plain": [ + "" + ] + }, + "execution_count": 91, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Image(omsa.PROJ_DIR(\"demo_local\") / \"noaa_nos_co_ops_9455500_temp.png\")" + ] + }, + { + "cell_type": "code", + "execution_count": 99, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
bias:\n",
+       "  long_name: Bias or MSD\n",
+       "  name: Bias\n",
+       "  value: -0.8833044407247495\n",
+       "corr:\n",
+       "  long_name: Pearson product-moment correlation coefficient\n",
+       "  name: Correlation Coefficient\n",
+       "  value: 0.9753704069600988\n",
+       "descriptive:\n",
+       "  long_name: Max, Min, Mean, Standard Deviation\n",
+       "  name: Descriptive Statistics\n",
+       "  value:\n",
+       "  - 4.201254844665527\n",
+       "  - -0.03469964489340782\n",
+       "  - 1.705991268157959\n",
+       "  - 1.3660595417022705\n",
+       "ioa:\n",
+       "  long_name: Index of Agreement (Willmott 1981)\n",
+       "  name: Index of Agreement\n",
+       "  value: 0.8235311833374434\n",
+       "mse:\n",
+       "  long_name: Mean Square Error (MSE)\n",
+       "  name: Mean Square Error\n",
+       "  value: 1.041590395442294\n",
+       "mss:\n",
+       "  long_name: Murphy Skill Score (Murphy 1988)\n",
+       "  name: Murphy Skill Score\n",
+       "  value: -0.25506379908872145\n",
+       "rmse:\n",
+       "  long_name: Root Mean Square Error (RMSE)\n",
+       "  name: RMSE\n",
+       "  value: 1.0205833603593064\n",
+       "
\n" + ], + "text/latex": [ + "\\begin{Verbatim}[commandchars=\\\\\\{\\}]\n", + "\\PY{n+nt}{bias}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{long\\PYZus{}name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Bias}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{or}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{MSD}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Bias}\n", + "\\PY{+w}{ }\\PY{n+nt}{value}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{\\PYZhy{}0.8833044407247495}\n", + "\\PY{n+nt}{corr}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{long\\PYZus{}name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Pearson}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{product\\PYZhy{}moment}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{correlation}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{coefficient}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Correlation}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Coefficient}\n", + "\\PY{+w}{ }\\PY{n+nt}{value}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{0.9753704069600988}\n", + "\\PY{n+nt}{descriptive}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{long\\PYZus{}name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Max,}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Min,}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Mean,}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Standard}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Deviation}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Descriptive}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Statistics}\n", + "\\PY{+w}{ }\\PY{n+nt}{value}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{p+pIndicator}{\\PYZhy{}}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{4.201254844665527}\n", + "\\PY{+w}{ }\\PY{p+pIndicator}{\\PYZhy{}}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{\\PYZhy{}0.03469964489340782}\n", + "\\PY{+w}{ }\\PY{p+pIndicator}{\\PYZhy{}}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{1.705991268157959}\n", + "\\PY{+w}{ }\\PY{p+pIndicator}{\\PYZhy{}}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{1.3660595417022705}\n", + "\\PY{n+nt}{ioa}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{long\\PYZus{}name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Index}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{of}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Agreement}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{(Willmott}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{1981)}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Index}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{of}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Agreement}\n", + "\\PY{+w}{ }\\PY{n+nt}{value}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{0.8235311833374434}\n", + "\\PY{n+nt}{mse}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{long\\PYZus{}name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Mean}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Square}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Error}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{(MSE)}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Mean}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Square}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Error}\n", + "\\PY{+w}{ }\\PY{n+nt}{value}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{1.041590395442294}\n", + "\\PY{n+nt}{mss}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{long\\PYZus{}name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Murphy}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Skill}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Score}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{(Murphy}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{1988)}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Murphy}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Skill}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Score}\n", + "\\PY{+w}{ }\\PY{n+nt}{value}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{\\PYZhy{}0.25506379908872145}\n", + "\\PY{n+nt}{rmse}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{long\\PYZus{}name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Root}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Mean}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Square}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Error}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{(RMSE)}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{RMSE}\n", + "\\PY{+w}{ }\\PY{n+nt}{value}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{1.0205833603593064}\n", + "\\end{Verbatim}\n" + ], + "text/plain": [ + "bias:\n", + " long_name: Bias or MSD\n", + " name: Bias\n", + " value: -0.8833044407247495\n", + "corr:\n", + " long_name: Pearson product-moment correlation coefficient\n", + " name: Correlation Coefficient\n", + " value: 0.9753704069600988\n", + "descriptive:\n", + " long_name: Max, Min, Mean, Standard Deviation\n", + " name: Descriptive Statistics\n", + " value:\n", + " - 4.201254844665527\n", + " - -0.03469964489340782\n", + " - 1.705991268157959\n", + " - 1.3660595417022705\n", + "ioa:\n", + " long_name: Index of Agreement (Willmott 1981)\n", + " name: Index of Agreement\n", + " value: 0.8235311833374434\n", + "mse:\n", + " long_name: Mean Square Error (MSE)\n", + " name: Mean Square Error\n", + " value: 1.041590395442294\n", + "mss:\n", + " long_name: Murphy Skill Score (Murphy 1988)\n", + " name: Murphy Skill Score\n", + " value: -0.25506379908872145\n", + "rmse:\n", + " long_name: Root Mean Square Error (RMSE)\n", + " name: RMSE\n", + " value: 1.0205833603593064" + ] + }, + "execution_count": 99, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Code(filename=omsa.PROJ_DIR(\"demo_local\") / \"stats_noaa_nos_co_ops_9455500_temp.yaml\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here we see a time series comparison at marker \"0\" from the map, station \"aoos_204\". It shows in black the temperature values from the data and in red the comparable values from the model. The comparison time range is January 1, 2022, through January 5, 2022. The data values are mostly missing, but the model output is present." + ] + }, + { + "cell_type": "code", + "execution_count": 96, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABOwAAAH4CAYAAAD5OnKvAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8o6BhiAAAACXBIWXMAAA9hAAAPYQGoP6dpAAD1m0lEQVR4nOzdd3xN9xsH8M/NHiJkICHEHom9N629Sm1qlRr92cQotbcqRXWoGkUpqqjae29qxx4xYiRBIvv8/vj23CEJyc2999zxeb9eefnec+8953vd/dzn+zwqSZIkEBERERERERERkVmwU3oCREREREREREREpMGAHRERERERERERkRlhwI6IiIiIiIiIiMiMMGBHRERERERERERkRhiwIyIiIiIiIiIiMiMM2BEREREREREREZkRBuyIiIiIiIiIiIjMCAN2REREREREREREZoQBOyIiIiIiIiIiIjPCgB2RGahTpw5UKhX279+foetNmDABKpUKEyZMMMq8iGyJSqWCSqVSehpEREREREQM2GXGP//8g3r16sHLywvu7u4oV64cFixYgOTkZKWnZlVCQ0Mxffp0NGjQALly5YKjoyO8vLxQt25dLF269IP/32FhYejduzcCAgLg7OyMvHnzok+fPggLC0v3HJ49ewYvLy+oVCo4ODhk9iZROsXGxmLSpEkoUaIEXF1d4evri08++QTHjx/Xe5/nzp1Dx44d4e/vD2dnZ+TOnRtdu3bF9evXDThz22SI55osOTkZ//zzDyZMmIAmTZrA19eXz790MvZ70y+//KIObvbq1csg+7R1d+7cweLFi/HFF1+gdOnScHBwgEqlwpQpU/Te57lz5zBu3DjUrl0bPj4+cHR0RI4cOdC4cWNs3LjRgLOn9DLEcyc+Ph7fffcdqlSpAk9PTzg6OsLPzw+tWrXC3r17DTxjSosxnrNPnjzBihUr0L9/f1SqVAnOzs58nSUisnUS6WX69OkSAAmAVKBAAalUqVKSnZ2dBEBq0aKFlJSUpPQUrUJiYqL6/xmAlCdPHqlChQpSjhw51NsaNGggvX37NtXrX758WfLy8pIASJ6enlK5cuUkT09PCYDk7e0tXb16NV3z6Ny5s/p49vb2hryJkiRJUu3atSUA0r59+zJ0vQULFkhFixaVFixYYPA5Ke3NmzdS+fLlJQCSk5OTVLZsWSl37tzq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JQu++OILXLhwQV33xFzUrFkThw4dQo0aNXDz5k1ERESgSpUq+PPPP9XZV+lRvnx5HDx4EPXr11fX2MqRIwfmz5+P5cuXp3qdvn37YsKECahVqxYSEhJw/vx5REREoGLFiliwYAFOnjypXlJkCh4eHjhy5AgmTJiA/Pnz48qVK4iNjUXz5s1x6NAhdZfNjOjfvz/q168PAPj333/x9u1bNGrUCOvXr8e6desM3hDB2dkZGzduxKpVq/Dxxx8jNjYWFy5cgJ2dHZo0aYIVK1boXF7f56w5MMZzLSoqCi9evMCLFy90ltTL2168eJGuuk6Z5evri2PHjmHSpEkoXrw4QkNDce/ePfVz459//kmRMafv63ZmmfK9yVKMHTsWo0aNQsWKFfHmzRucP38eb9++Re3atbFixQrs3Lkzxf1RrFgxXLhwATNmzEDFihURFhaG8+fPIz4+HrVr18Y333yDNWvWGGyOCQkJOo9ruTRCTEyMzvb0ljPQLq3w4MGD9753mrOM3HceHh747bff0KVLFwQEBODu3bu4fPkyvLy88Nlnn+HcuXPo1auXwrcoc/Lly4cLFy5g/PjxKFu2LKKionDp0iW4uLigcePG2LBhA37++Welp5lptvicBUQ2qPZ15TrJcXFxOtsN1V2ciIjMn0qSoyFERERERERERESkOGbYERERERERERERmREG7IiIiIiIiIiIiMyIcYroEKXh3a5n7/P555/j888/N+JsiIiIiIiIiIjMDwN2ZFIZKXBdr149I86EiIiIiIiIiMg8MWBHJsUeJ0RERERERERE78cadkRERERERERERGaEGXbplJycjEePHsHDwwMqlUrp6RARERERERERkYIkScLr16/h7+8POzvD5sQxYJdOjx49QkBAgNLTICIiIiIiIiIiM/LgwQPkyZPHoPtkwC6dPDw8AIg7IWvWrArPhoiIiIiIiIiIlPTq1SsEBASoY0aGxIBdOsnLYLNmzcqAHRERERERERERAYBRSqex6QQREREREREREZEZYcCOiIiIiIiIiIjIjDBgR0REREREREREZEZYw46IiIiIiIiI6B3JycmIj49XehqkIEdHR9jb2ytybAbsiIiIiIiIiIi0xMfH486dO0hOTlZ6KqSwbNmyIVeuXEZpLPE+DNgREREREREREf1HkiQ8fvwY9vb2CAgIgJ0dq4nZIkmSEBMTg/DwcACAn5+fSY/PgB0RERERERER0X8SExMRExMDf39/uLm5KT0dUpCrqysAIDw8HDly5DDp8liGiYmIiIiIiIiI/pOUlAQAcHJyUngmZA7koG1CQoJJj8uAHRERERERERHRO0xds4zMk1KPAwbsiIiIiIiIiIiIzAgDdkREREREREREVm7//v1QqVSIjIxUeioG0717d7Rs2VLpaRgFm04QEREREREREZHZunv3LvLnz49z586hTJky6u3fffcdJElSbmJGxIAdEREREREREREZXHx8vFGbd3h6ehpt30rjklgFhIWFYcyYMTh48KDSUyEiIiIiIiIiKxEXF4eBAwciR44ccHFxQY0aNXDq1Cmdyxw5cgSlS5eGi4sLKleujIsXL6rPu3fvHpo3b47s2bPD3d0dQUFB+Oeff9TnX7lyBU2aNEGWLFmQM2dOdOnSBc+fP1efX6dOHfTv3x9Dhw6Fj48P6tevj44dO6JDhw46c0hISICPjw+WLl0KANi+fTtq1KiBbNmywdvbG82aNcOtW7fUl8+fPz8AoGzZslCpVKhTpw6AlEtiP3T75WXBe/bsQYUKFeDm5oZq1arh+vXrev6PGw8DdiYWGRmJunXrYtq0aWjYsCHu3r2r9JSIiIiIiIiIyAqMGDECGzZswPLly3H27FkUKlQIDRs2xMuXL9WXCQkJwTfffINTp04hR44caNGiBRISEgAA//vf/xAXF4eDBw/i4sWLmDlzJrJkyQIAePz4MWrXro0yZcrg9OnT2L59O54+fYp27drpzGH58uVwcHDAkSNH8NNPP6Fz587YvHkz3rx5o77Mjh07EB0djdatWwMAoqOjMXToUJw6dQp79uyBnZ0dWrVqheTkZADAyZMnAQC7d+/G48eP8eeff+p9+wFgzJgxmDNnDk6fPg0HBwd8/vnnmflvNwqVZK2LfQ3s1atX8PT0RFRUFLJmzarXPpKSktC8eXNs27ZNva1jx45YvXq1oaZJRERERERERJkQGxuLO3fuIH/+/HBxcQEAVKhQAU+ePDH5XHLlyoXTp0+n67LR0dHInj07li1bhk6dOgEQmWyBgYEYPHgwKlasiLp162LNmjVo3749AODly5fIkycPli1bhnbt2qFUqVJo3bo1xo8fn2L/48aNw4kTJ7Bjxw71tocPHyIgIADXr19HkSJFUKdO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keZl//zzT3Wwzs7ODmvXrs1wsA4AAgMDsWTJEly5cgWdOnVS19V7/PgxFi9erA7Wubi4YPjw4bh9+zYmT55s9HXfFSpUwNmzZ3U6uOzfvx8lS5bEsmXLjFI7j4iIiIiIiIjInDBgZ0CxsbFo3bo1Hj9+DACoXbs25s6dm67rhoSEwM/PDwCwadMmHDhwIMVlLl68iK5du6pPz5o1C/Xr18/UnIsUKYJVq1bh33//RatWrdTbHR0d0b9/f9y+fRuzZ8+Gr69vpo6TEa6urpg7dy727t2rbjX9+vVr9OjRA61atcL9+/dNNhciIiIiIiIiIlNjwM5AkpKS8Nlnn+H48eMAgLx582LdunVwdHRM1/Xd3d0xdepU9emhQ4ciOTlZffrly5do2bKlOvPts88+w9ChQw02/+DgYPz55584e/YsFixYgBs3bmDBggXqIKIS6tati3///Rfdu3dXb9u0aROKFCmCkSNHprvDLRERERERERGRJWHAzgAkSUL//v2xYcMGAICbmxv++uuvDGelde3aFaVLlwYAnD17FqtWrQIglsm2b98et2/fBiA6qP7888/qZayGVLZsWfTv399s6sV5enpi6dKl2Lhxo/r/My4uDrNmzULBggUxb9489fJjIiIiIiIiIiJrwICdAUycOBE//vgjAMDBwQEbNmxA2bJlM7wfe3t7zJkzR3169OjRiImJwciRI7F7924AQI4cObBx40a4uroaZvIWomXLlrh+/TpCQkLg7OwMQGQdDhkyBMWLF8fatWtZ346IiIiIiIiIrAIDdpn0ww8/YOLEierTy5YtQ6NGjfTe38cff4xmzZoBEN1jmzVrhm+//RaACAauX78eAQEBmZu0hcqePTtmzZqF69ev47PPPlNvv337Njp06IAqVarg0KFDCs6QiIiIiIiIiCjzVBLTktIltVa969evR7t27dSZXd9++y2GDBmS6WNdu3YNwcHBSEpK0tn+ww8/oG/fvpnev7U4e/YsQkJCsHfvXp3tLVq0QPfu3WFvb//e6zs7O6N69erIkiWLMadJREREREREFiQ2NhZ37txB/vz54eLiovR0SGHvezykFisyFAbs0undO2Hv3r1o3Lixun7ayJEjMWPGDIMd73//+x8WLVqkPt27d2/89NNPBtu/tZAkCdu3b8eIESNw6dKlDF/f19cX48ePR+/evdPdIISIiIiIiIisFwN271enTh2UKVMG8+bNS9flly1bhsGDB1ts40ilAnYWsSR21qxZUKlUUKlU6i6s6bF//3719VL7y8i+tJ07dw4tW7ZUB+t69OiB6dOn67WvtEyYMAFeXl4AgGrVqmHBggUG3b+1UKlUaNy4Mc6fP48lS5bA398/Q9d/9uwZ+vfvj+DgYGzcuJF18IiIiIiIiIhIcQ5KT+BDrl69inHjxsHd3R3R0dF67aN27dqoU6dOiu158uTJ8L5u3bqFRo0a4fXr1wCAZs2aGaVjq6+vL44ePYojR46gffv2cHJyMuj+rY29vT0+//xzdOjQAWvXrsWTJ08+eJ1z585h3bp1AIDQ0FB8+umnqF69OmbPno2qVasae8pERERERERERKky64BdUlISunXrhtKlS6NIkSJYuXKlXvupU6cOJkyYYJA5ffrppwgPDwcAVK9eHWvXroWDg3H+G4sWLYqiRYsaZd/Wys3NDT169Ej35U+ePImQkBAcPHgQAHDkyBFUq1YNbdq0wfTp01GoUCFjTZWIiIiIiIjIYOrUqYOSJUvC3t4ey5cvh5OTEyZPnozOnTujf//+WL9+PXLkyIGFCxeicePGAIADBw4gJCQEFy5cgJeXF7p164YpU6ao4xzR0dHo168f/vzzT3h4eGD48OEpjhsfH4+xY8di1apViIyMRHBwMGbOnJlq4hSln1kviZ05cyYuXLiAX3/99YMNBEzl7t27AICgoCBs2bIFbm5uyk6IMqVSpUrYv38/Nm3ahGLFiqm3r1+/HiVKlMCgQYPw/PlzBWdIRERERERElD7Lly+Hj48PTp48iQEDBqBfv35o27YtqlWrhrNnz6Jhw4bo0qULYmJiEBYWhiZNmqBixYq4cOECfvjhByxZsgRTpkxR7y8kJAT79u3Dxo0bsXPnTuzfvx9nzpzROWaPHj1w5MgRrFmzBv/++y/atm2LRo0a4caNG6a++VbFbJtOXLp0CeXLl8fYsWPx9ddfo3v37li+fDmOHTuGKlWqpGsf+/fvR926ddGpUydUrlwZMTExyJcvH+rXrw8fH58MzUcuJAgAefPmxdGjR5E7d+4M3y4yX4mJiViyZAnGjx+Pp0+fqrerVKp0ZVFWqFABmzZtgq+vrzGnSUREREREREaUapOBChWAdJReMrhcuYDTp9N10Tp16iApKQmHDh0CIFYtenp64tNPP8WKFSsAAE+ePIGfnx+OHTuGLVu2YMOGDbh69aq6zNeiRYswcuRIREVFISYmBt7e3lixYgXat28PAHj58iXy5MmD3r17Y968ebh16xYKFy6Mhw8f6tSUr1evHipVqoRp06ax6YSezHJJbGJiIrp3747ixYtj1KhRmd7f6tWrsXr1avVpV1dXTJw4ESEhIRneV/bs2bFjxw4G66yQg4MD+vTpg06dOuGbb77BN998g5iYGEiShISEhA9e/9ixY2jXrh127tzJjrNERERERETW5MkTICxM6Vl8UKlSpdRje3t7eHt7o2TJkuptOXPmBACEh4fj6tWrqFq1qk5N/urVq+PNmzd4+PAhIiIiEB8fr1Pj3cvLS6d019mzZyFJEooUKaIzj7i4OHh7exv89tkSswzYTZs2DRcuXMCJEycyFfjw9fXF7Nmz0axZM+TNmxeRkZHYt28fRo4ciREjRiBr1qzo06dPqteNi4tDXFyc+vSrV68AiKWS2ksnyfp4eHhg4sSJ6NOnD6ZPn45jx459sHvsrVu3EBUVhf3792PYsGGYP3++iWZLRERERERERpcrl0Uc990Yikql0tkmB+eSk5MhSVKKBpryd1+VSvXB78Hyfuzt7XHmzJkUpcyyZMmSobmTLrML2F24cAFTpkzB8OHDUa5cuUztKygoCEFBQerTbm5u6Ny5M0qXLo3y5ctj/Pjx+OKLL2Bnl7KU3/Tp0zFx4sQU2ytUqJCpOZHl8Pf3x4IFC9J12aNHj6JOnTpISEjAggULULZs2Qw1vyAiIiIiIiIzls5lqZakRIkS2LBhg07g7ujRo/Dw8EDu3LmRPXt2ODo64vjx48ibNy8AICIiAqGhoahduzYAoGzZskhKSkJ4eDhq1qyp2G2xRmbXdKJbt24oWLCgwbq6piY4OBiVK1fG06dPcfPmzVQvM3r0aERFRan/Hjx4YLT5kOWrVq0aFi1apD7dt29fHD9+XMEZEREREREREaXtyy+/xIMHDzBgwABcu3YNmzZtwvjx4zF06FDY2dkhS5Ys6NmzJ0JCQrBnzx5cunQJ3bt310l6KlKkCDp37oyuXbvizz//xJ07d3Dq1CnMnDkT//zzj4K3zvKZZYYdgBSF/GTy2umNGzeiZcuWeh9HbjoRExOT6vnOzs5wdnbWe/9ke3r16oVz585h0aJFiI+Px6efforTp0/rFN60BdevX8ePP/6I8uXLo3PnzilSrImIiIiIiEh5uXPnxj///IOQkBCULl0aXl5e6NmzJ8aOHau+zOzZs/HmzRu0aNECHh4eGDZsGKKionT2s3TpUkyZMgXDhg1DWFgYvL29UbVqVTRp0sTUN8mqmF2X2F69eqW6/eDBg7hx4wZatGgBX19f9O/fH2XKlNHrGImJiShUqBDu37+P58+fw8vL64PXMWbnD7IeCQkJqFevHg4ePAgAqFKlCvbv328Twd/k5GR8//33GDFiBGJjYwEADRs2xJIlS9ikhYiIiIiILMb7uoKS7WGX2P/88ssvqW7v3r07bty4gdGjR6NKlSo65z1//hzPnz+Hj4+POnMOEF07q1SpopPhk5iYiJCQENy7dw+NGjVKV7COKL0cHR2xbt06VKhQAQ8ePMDx48fx5Zdf4pdffrHqTLMHDx6gR48e2LNnj872HTt2IDg4GIsWLULHjh0Vmh0RERERERGRZTG7Gnb6WLhwIYoXL46FCxfqbO/YsSMKFCiAzp07Y8SIEejduzeCg4Mxb9485M2bFz/++KNCMyZrliNHDvz1119wdXUFAPz666/4/vvvFZ6VcUiShN9++w3BwcE6wbquXbvCz88PABAZGYlOnTqhffv2ePHihVJTJSIiIiIiIrIYVhGwS0u/fv0QGBiI/fv347vvvsOqVavg7OyMMWPG4Pz588iXL5/SUyQrVa5cOSxZskR9evDgwdi/f79yEzKCZ8+eoXXr1ujatStevXoFAMiTJw927dqF5cuX49KlS+jQoYP68n/88QeCg4NZeJSIiIiIiIjoA8yuhp25Yg070seIESMwe/ZsAKLRyenTp60iULx582Z88cUXCA8PV2/r0qUL5s+fj2zZsulcds2aNfjyyy8RERGh3ta7d2/MmTMHWbJkMdWUiYiIiIiI0oU17EibUjXsrDrDjkhp06dPR8OGDQGIWostW7ZMszOxJXj16hU+//xzfPLJJ+pgnY+PDzZs2IAVK1akCNYBQIcOHXDp0iU0btxYve3nn39G6dKlcfjwYVNNnYiIiIiIiMhiMGBHZET29vb4/fffUahQIQDA+fPn0axZM1y9etXox37x4gWGDBkCT09P2NnZGeTP09MTS5cuVR+jRYsWuHTpEj799NP3zsXf3x9bt27FTz/9BHd3dwDA7du3UatWLfTr1w9Pnz7V+3ZGR0dj8uTJCAgIQIsWLfD69Wu990VERERERCTjgkQCgOTkZEWOyyWx6cQlsZQZly9fRpUqVfDmzRsAIpDXq1cvTJgwAbly5TLosWJjY7FgwQJMnToVUVFRBt23zMPDA/Pnz0e3bt0y3P321q1b6N69u052XZYsWTBixAgMHTpUHdD7kKSkJCxduhTjxo3D48eP1dvr1auHrVu3wsnJKUPzIiIiIiIiAsR3jRs3bsDNzQ2+vr4Z/s5D1kGSJMTHx+PZs2dISkpC4cKFYWenm/dmzFgRA3bpxIAdZdaePXvQtWtXPHr0SL3N3d0dI0aMwLBhw9IdqEpLcnIyVq9ejTFjxuD+/fvq7a6urggODjbYm0zRokUxefLkTNXiS0pKwty5czFx4kR1EBMA/Pz8MGnSJPTo0QP29vapXleSJGzbtg0jRozA5cuXU71Mhw4dsGrVqhQvpkREREREROnx5s0bPHz4kFl2BDc3N/j5+aWaFMKAnRlgwI4MISYmBnPnzsWMGTMyHKh6n7179yIkJARnz55Vb1OpVOjRowcmTZqE3LlzG2T+hvb06VNMnDgRP//8M5KSktTbg4KCMGvWLDRu3Fgn0HjmzBmEhIRg3759Ovtp2bIl2rZti169euHt27cAgAEDBuC7777jr2FERERERKSXpKQkJCQkKD0NUpC9vT0cHBzS/F7JgJ0ZYMCODCk8PBwTJ07ETz/9lK5AVVouXbqEESNGYNu2bTrbGzVqhFmzZqFkyZIGn7sxXLt2DaNGjcKmTZt0tn/00UeYPXs2vLy8MGbMGKxevVrn/MqVK+Obb75BjRo1AAB///03WrZsqf4/nTp1Kr766ivT3AgiIiIiIiKyKQzYmQEG7MgYrl+/jlGjRuGvv/7S2V6lShUEBAS897rR0dHYvn27TgHMMmXKYPbs2ahXr54xpmt0hw4dQkhICE6cOKGz3dHRUeeXrYIFC2L69Olo06ZNisDmsmXL0KNHD/XpxYsXo1evXsadOBEREREREdkcBuzMAAN2ZEyHDx/G8OHDUwSq0isgIABTp05F586dLb5umyRJWLduHUaPHo3bt2/rnOfl5YVx48ahX79+720qMWvWLIwcORIAYGdnhw0bNqBly5bGnDYRERERERHZGGPGiiz7mz2RlahRowaOHTuGP/74A4UKFUr39Tw9PTFjxgxcv34dXbp0sfhgHSBq77Vr1w5XrlzBvHnz4O3tDRcXF4wcORK3bt3CoEGDPtgBNiQkBEOHDgUgmnF06NABBw8eNMX0iYiIiIiIiDKNGXbpxAw7MhVJkvDo0SOdpa5pyZkz5weDV5YuISEBiYmJcHV1zdD1kpOT0a1bN6xcuRKACG4ePHgQpUqVMsY0iYiIiIiIyMZwSawZYMCOyPIkJCSgRYsW2L59OwDRjffIkSPInz+/wjMjIiIiIiIiS8clsUREenB0dMT69etRuXJlAMDjx4/RsGFDhIeHKzwzIiIiIiIiorQxYEdEVs3d3R1bt25FsWLFAAA3btxAixYtEBsbq/DMiIiIiIiIiFLHgB0RWT1vb2/s2LEDuXPnBgCcOHECX375JVgRgIiIiIiIiMwRA3ZEZBPy5s2LLVu2qJtXLF26FAsXLlR4VkREREREREQpMWBHRDajbNmyWLJkifr0kCFDsG/fPgVnRERERERERJQSA3ZEZFM6duyIESNGAACSkpLQtm1b3L17V9lJEREREREREWlhwI6IbM60adPQqFEjAMCLFy/QqlUrxMTEKDwrIiIiIiIiIoEBOyKyOfb29li9ejUKFSoEADh//jw+//xzNqEgIiIiIiIis8CAHRHZpOzZs2PTpk3IkiULAGDt2rWYNWuWwrMiIiIiIiIiYsCOiGxYiRIlsHLlSvXp0aNHY9u2bQrOiIiIiIiIiIgBOyKycZ988gkmTpwIAJAkCR07dkRoaKjCsyIiIiIiIiJbxoAdEdm8sWPHolWrVgCAqKgotGzZEq9evVJ4VkRERERERGSrGLAjIptnZ2eH5cuXIygoCABw9epVfPbZZ0hOTlZ4ZkRERERERGSLGLAjIgLg4eGBTZs2IXv27ACALVu2YPny5QrPioiIiIiIiGwRA3ZERP8pWLCgTpBuz549Cs6GiIiIiIiIbBUDdrbk0iUgOlrpWRCZtYYNG8LBwQEAcOnSJYVnQ0RERERERLaIATtbMWoUULIkkDcvwKwhojQ5OTmhSJEiAEQtu4SEBIVnRERERERERLaGATtb8M8/wMyZYvzyJdCwITB/PiBJys6LyEyVLFkSABAfH4+bN28qPBtdkiRB4nOXiIiIiIjIqjFgZ+2ePgV69NDdlpQEDBoE9OwJxMUpMy8iMxYcHKwem8uy2NjYWMyePRu5cuVCiRIlsHnzZgbuiIiIiIiIrBQDdtYsORno3h0IDxenmzUDRo/WnL90KVCnDvD4sRKzIzJb2gG7ixcvKjgTIDk5GatWrUKxYsUwYsQIhIeH49q1a/jkk0/QpEkThIaGKjo/IiIiIiIiMjwG7KzZggXA9u1inCsX8OuvwLRpwJo1gKur2H78OFChAnDypHLzJDIz8pJYQNkMu71796JixYr47LPPcO/evRTnb9++HcHBwRg1ahTevHmjwAyJiIiIiIjIGBiws1b//guMGKE5vXw54Osrxu3bA0eOiAYUAPDoEVCrFrBihennSWSG8ufPDzc3NwDKBOwuXbqEJk2a4OOPP8bZs2fV2xs1aoQLFy5g3bp1CAgIAAAkJCRg5syZKFasGNasWcNlskRERERERFaAATtr9PYt0LEjEB8vTg8ZAjRooHuZsmWBU6eAmjXF6bg4oFs3YNgwIDHRtPMlMjN2dnYICgoCANy8eRMxMTEmOe6jR4/Qq1cvlC5dGtu2bVNvL1OmDHbt2oVt27ahVKlSaNOmDa5evYqxY8fCyckJABAWFoaOHTuibt26ii/jJSIiIiIiosxhwM4ahYQAV66IcenSwPTpqV8uRw5g926gXz/Ntm+/BZo0ASIijD9PIjMm17GTJAlXr141+vG++eYbFC5cGEuWLEFycjIAICAgAMuXL8eZM2dQr149ncu7u7tj8uTJuHz5Mpo1a6befuDAAZQtWxaDBg1CZGSk0edNREREREREhseAnbX5+2/g++/F2MUFWL0acHZO+/JOTsCiRcCPPwIODmLbrl3Al18af65EZsyUnWKvX7+OkJAQdSZf1qxZMWPGDFy/fh1du3aFnV3aL9WFChXCli1b8Pfff6NQoUIAgKSkJMyfPx9FihTB8ePHjTp3IiIiIiIiMjwG7KzJkydAjx6a099+C5Qokb7r9ukD7N0LZMsmTv/5J/D6tcGnSGQptBtPGHuJ6ZEjR9Tj1q1b49atWxg5ciRc5eYw6dC0aVNcunQJ06ZNU9ffU6lUKF68uMHnS0RERERERMbFgJ21SE4GuncHnj8Xp1u0APr2zdg+atYEPvtMjOPjNR1miWyQKTPsTpw4oR4PGDAAPj4+eu3H2dkZo0ePxrVr19C+fXvMnDkTnp6ehpomERERERERmQgDdtZi/nxgxw4xzpUL+OUXQKXK+H5attSM//rLEDMjski5cuWCl5cXANMF7Ozs7FC+fPlM7y8gIABr1qxB9+7dM70vIiIiIiIiMj0G7KzBhQvAyJGa0ytWAL6++u2rVi3NstitWzWdZolsjEqlUi+LDQsLQ4SRGrFER0erl9wGBQUhS5YsRjkOERERERERWQ4G7CxdbCzQqZMmsDZ0KFC/vv77c3QE5I6TUVHAgQOZnyORhTLFstizZ8+qu8JWrlzZKMcgIiIiIiIiy8KAnaVbvx64ckWMy5QBpk3L/D61l8Vu3Jj5/RFZKFME7LTr1zFgR0RERERERAADdpZv/37NePZswNk58/ts2FCzn02bREMLIhtkik6x2gG7SpUqGeUYREREREREZFkYsLN0hw6Jfx0dgerVDbPPLFk0y2ofPQJOnzbMfoksTFBQkHps7Aw7d3d3neMRERERERGR7WLAzpI9fQqEhopxhQqAq6vh9s1usUTIli0b8uTJA0AE7CRJMuj+Hz9+jAcPHgAAKlSoAHt7e4Pun4iIiIiIiCwTA3aW7MgRzbhGDcPuu0ULwO6/hwcDdmTD5GWxERERePTokUH3ffLkSfWY9euIiIiIiIhIxoCdJZOXwwJAzZqG3bevr2aJ7dWrwPXrht0/kYUwZuMJNpwgIiIiIiKi1DBgZ8m0A3aGql+nTXtZ7KZNht8/kQUwVcCODSeIiIiIiIhIxoCdpXr9Gjh3ToyDgwEvL8Mf45NPNGMuiyUbZaxOsUlJSTh16hQAwN/fX10rj4iIiIiIiIgBO0t17BiQnCzGhl4OKytYEJCDFceOAY8fG+c4RGasWLFisPuvnqMhM+yuX7+O169fA+ByWCIiIiIiItLFgJ2lMmb9Om3ay2I3bzbecYjMlKurKwoVKgQAuHz5MpKSkgyyX9avIyIiIiIiorQwYGeplAjYcVks2Sh5WWxsbCxu375tkH0yYEdERERERGShJAm4cAGYNMloh7CIgN2sWbOgUqmgUqlw/PjxDF03OTkZCxcuRKlSpeDq6gpfX1+0a9cON27cMNJsTSAuDpC/7AcGAsasfVW2LBAQIMZ79gCvXhnvWERmyhiNJ+SAnUqlQvny5Q2yTyIiIiIiIjKiS5eAceOAYsWAMmWAOXOMdiizD9hdvXoV48aNg7u7u17X79u3LwYMGICkpCQMGDAATZo0webNm1GxYkVcuXLFwLM1kTNngNhYMTZmdh0AqFSaLLuEBGDbNuMej8gMaQfsDNF4IiYmRr2foKAgeHh4ZHqfREREREREZARXrwITJwJBQaLO/+TJQGio0Q9r1gG7pKQkdOvWDaVLl0arVq0yfP19+/Zh8eLFqFmzJs6ePYtZs2Zh+fLl2Lp1K169eoV+/foZYdYmYKrlsDLt/3suiyUbpN0p1hAZdmfPnlXXwuNyWCIiIiIiIjNz/z4wZQpQqhRQogQwYQKgnfSlUgG1awPffGO0KTgYbc8GMHPmTFy4cAFnz57F7NmzM3z9xYsXAwCmTJkCZ2dn9faPP/4YDRs2xPbt2xEaGooiRYoYbM4mcfiwZmyKgF3NmkD27EBEBLB1q1iSq/X/SWTtChYsCGdnZ8TFxRkkYMf6dURERERENiohQXy3fvlS/KU1trMDKlUCatQQWV329krP3HacOQPUqQO8eZPyvOrVgfbtgdatAX9/UTZs+HCjTMNsA3aXLl3CxIkTMXbsWAQFBem1j/3798Pd3R3Vq1dPcZ4csDtw4IBlBeySk4EjR8TYxwcoWtT4x3RwAJo3B1asAF6/BvbvBxo2NP5xicyEg4MDihcvjvPnzyM0NBRxcXE6PwJklHbArlKlSoaYIhERERERmbtJk8RyysTE9F3+t9/Evx4eQLVqInhXo4YI5Lm5GW+etuz1a6BDB91gXZUqQLt2QNu2xu0h8A6zXBKbmJiI7t27o3jx4hg1apRe+4iOjsbjx4+RP39+2KcSiS5cuDAApNl8Ii4uDq9evdL5MwuXL4uoOyCeqCqVaY6r3S1240bTHJPIjMjLYpOSknDt2rVM7evkyZMAADc3N71/kCAiIiIiIguycSMwfnz6g3XaXr8GduwAvv4aqFsX8PQEKlcGhg0D/vtuQQbSvz9w86YYV6wI3L0LHDsGDBli0mAdYKYZdtOmTcOFCxdw4sQJODo66rWPqKgoAICnp2eq52fNmlXncu+aPn06Jk6cqNexjcrU9etkDRoALi6i2cWmTcCiRSJFl8hGvNsptnTp0nrt5+nTp7h37x4AoEKFCnBwMMuXYSIiIiJS2v37wLp14t8qVYD69cUqK7I8t28DPXpoTn/0kQj+eHmJv+zZdf/18hJLLY8cESWxDh0CnjzRXD8xUQTqTp4Evv0WWLUK6NTJ9LfL2qxcKVYWAiKr8fffgXz5FJuO2X1TvHDhAqZMmYLhw4ejXLlyis1j9OjRGDp0qPr0q1evEBAQoNh81JQK2Lm7i6Dd5s3iheLkSfGmQWQjDNUplvXriIiIiChNjx6JIN3atSKrRzZ/vlhdVbEi0KiR+KtUiXXNLEFcnFhOKScLtW8vAkHpWS1XvjwwcCAgScCdOyJ4J/9dvaq5XPfuQI4cQL16RrkJNuHWLUC7MemPPwIFCyo3H5jhkthu3bqhYMGCmDBhQqb2I2fWpZVBJy9xTSsDz9nZGVmzZtX5U5wkaQJ27u5A2bKmPb72slh2iyUbY6hOsQzYERERkeIePABmzxaf6RMSlJ4NhYeLFUy1a4usq8GDdYN1MkkSiROTJol6Zr6+IvizdKkI9JF5GjZMNDEAgMKFgZ9/znhpK5UKKFAA6NpVXP/KFeDZM6BXL3F+QgLQqhVw9qxh524r4uOBjh01deu6dTOLjEWzzLADABcXl1TPr1q1KgBg48aNaKkdQHqHu7s7/Pz8cOfOHSQlJaWoYyfXrpNr2VmEu3eBsDAxrlpVNIMwpWbNxDLY5GTx5j5jhmmPT6SgPHnyIGvWrHj16lWmAnYntWpMsOEEERERmdS9e+Iz/JIlmkBdzpwiO6dXL6BQIUWnZ1NiY8XyuzVrgH37xHesd5UsKQJyZcsCBw4A27cD//6rOT8iAvjjD/EHiK6Wq1cDfn4muQmUDmvXAt9/L8bOziJ70lDJQD4+Igvs+XPx/fzNG6BxY+DoUcUzwyzO118Dp06JceHCwIIFys7nP2YXsOvZs2eq2w8ePIgbN26gRYsW8PX1RWBg4Af3Vbt2baxZswZHjhxBrVq1dM7bsWOH+jIWQ6nlsDJfX9Ho4uBB4Pp14No1oFgx08+DSAEqlQrBwcE4evQo7t27h1evXmU48zY5OVkdsPPz80MeExctJSIiIht19y4wbRqwbFnKjLqnT4GZM8Vf3boicPfpp6J+NRlPjx4iWPeuYsVEkK59e6B4cc32Jk3EfRQWBuzcCWzbBuzaBURGai6zf78oY3TggKiBRsoKDQW++EJzesECQM862GmytxdB2vr1Rb278HCxXPrIEbFElj5s505g1iwxdnQUy5U9PJSd03/MLmD3yy+/pLq9e/fuuHHjBkaPHo0q79ROe/78OZ4/fw4fHx/4aBXh7N27N9asWYOxY8di9+7dcHJyAgDs2bMHO3bsQK1atVCkSBHj3RhDUzpgB4g024MHxfivvwA9u/gSWaKSJUvi6NGjAIDLly+rM37T6/r16+rl+JUrV4bKVF2eiYiIyDbdvi0CdcuX63am9PAA+vQRGXfay2L37RN/Xl5Aly4i2MCO9oZ386bIvJIVKKAJ0pUq9f7lkrlzi2Bfjx6axgPbt4usyUePgEuXRJbV7t1mE3SwSW/fAm3biu6uAPDZZ5rlq4bm6ipqzdesKZbK3rwJNG0qnstZshjnmNYiPFwsM5bNmCHqBpoJs6thp4+FCxeiePHiWLhwoc72unXrolevXjh06BDKli2LESNGoFu3bmjatCmyZs2KH374QaEZ6+nwYfGvo6No4ayETz7RjFnHjmzMu51iM4r164iIiMgkbt4UAZ0iRUQgRw7WZc0KjB0rMu5mzxZLKR8+FGPtRIaXL4HvvgOCg4Hq1XWL21PmLVgg6tEBwPjx4v6aNk1kX2XkB10HB1HLbtIkkVWXK5fYfvIk0KKFCBqRMgYN0ixfLlYM+OGHjNetywgvLxG4zZ1bnD59GmjdWtRmo9QlJ4tadU+fitONGon6kWbEKgJ27/PTTz9h/vz5UKlUmD9/PrZu3YrmzZvj5MmTKFGihNLTS79nz8QSVEBEfN3clJlH/vyaNN4TJzQ19YhsQGY7xbJ+HRERERlVcjIwYIAIECxbBiQlie2ensC4cSJQN3my7nLJHDmA4cPFd40DB0QmkPZy2KNHRS1rfvE3jKgo4NdfxdjVVXQANUQgp1AhsURWvm/37xcZXrzfTG/lSmDxYjF2dRV160yR6RYQAOzYAWTLJk7v3An07Jl6fUQSP0ps3y7GOXOK10w78wqRmdds3mPZsmWQJCnFclgAmDBhAiRJSrWzrJ2dHQYMGIBLly4hNjYWz58/x7p16yxrKSygya4DlFsOK9Nu9rFli2LTIDI1Q2XYqVQqVKhQwWDzIiIiIgIArFoFLFyoCdRlywZMnCgCdRMnAtmzp31dlQqoVQv47TextHLBArFUExBLa9MoXUQZtGSJbidKQ9aaCw4WAQg5OLR1q1juJz8eyPiuXBHLzWU//CDuF1MJChLf0eWg+8qVLGOVmrNngZEjNadXrBBBOzNjMQE7m6ddv65GDeXmAYiaCLIjR5SbB5GJ+fj4INd/Sw0yGrB7+/Yt/v0vLb5EiRIZblhBRERE9EHr12vGX30lAnXjxmkybtIre3agf3/dpgiTJgHR0YaYpe1KTATmz9ecHjTI8MeoWFE3YLN2LdC3r2YJLhlPdLTIaoyJEad79BBBWVOrUUM0TpCzxWbPBubONf08zNWbN0CHDpranSEholmLGWLAzlJoB+yqV1duHoBoK+7sLMZaNbmIbIGcZffs2TM8lesdpMPZs2eR+F/9GNavIyIiIoOLjhZL4ABRy2zyZLEUNjMqVhR1sABR52nevMztz9Zt2iQafQAiCaJYMeMcp04dYMMGUeMOENmRw4YxaGdMkgR8+aXIsANEVt07NfZNqmVL4PvvNaeHDhVBPBKB8hs3xLhCBWDKFGXn8x4M2FmCN2+Ac+fEOCgI8PZWdj5OTiJoB4gH+osXys6HyIRKliypHmcky067fh0DdkRERGRwO3YAsbFi/MknhqvFNHUqYG8vxrNm8bN/ZmgHPI1d3L5JE7EcUq6PN3euyJIk49i0SSyrBAB3d1G3Tqm687K+fUWGrax7d91SW7bo6lVNDcksWUQQ08lJ2Tm9BwN2luDYMU3dAaXr18m0Aw5agQgia6dvHTvtDrFsOEFEREQGt3GjZtyqleH2W7Qo8PnnYvzqFTB9uuH2bUtOn9YES0qUAOrXN/4x27fXND8AgAkTmCVpLJs2acaLFhkvezKjJkwAevUS4/h4kXl365aSM1LWN99oxuPGiWYtZowBO0ugvRzWXAJ22s0/uCyWbIi+nWLlgJ2bm5vOPoiIiIgyLSEB+PtvMc6aFahb17D7Hz9eUxNt4ULg/n3D7t8WvJtdZ4jOsOnRsyfw7bea00OGiMYXZFiXL4t/VSqgTRtl56JNpRIBxHr1xOkXL0TX54gIZeelhEePRFMdQJQL0G4OYqYYsLME5hiw086wO35cuXkQmVhQUJB6nN4Mu/DwcNy9excAUL58eTjI9USIiIiIDOHgQSAyUoybNjX8Eq/cuYGBA8U4Lk50nKX0CwsTzR8AUd7os89Me/whQ0Smlax3b+Cff0w7B2smSZradYGByi+FfZejo1iiW7y4OH3tmggqyk0XbMV332lu85dfih83zBwDduYuPl6TwZYvHxAQoOx8ZIGBgK+vGJ88yQKmZDPc3d1RoEABAMDly5eRnJz8weuwfh0REREZlfZy2JYtjXOMkSM13WaXLdMEKOjDFi0SHWIBUVfM1dX0cxg3TlM3LzkZaNdOUyedMufBA00H5RIllJ1LWrJlE1m4Pj7i9N69ImhlK9/jo6KAH38UYycnzQ8QZo5pHubu7Fng7VsxNpfsOkCk1lapIlqGR0SI5hNFiig9KyKTCA4Oxu3bt/HmzRvcu3cP+fPnf+/ltevXMWBHROZq0aJFWCtngHyAs7MzBg0ahKZNmxp5VkT0QZIE/PWXGDs5ie6jxuDlJYJ2o0eLgM/YscCffxrnWNYkJkYTKHB0FEESJahUwJw5wMOHwPr1IsDUtKlIDjGXpBBLJS+HBUSTSHNVoICotffRRyJT9pdfRI3K4cOVnpnx/fSTqMEJAN26iU7aFoABO3NnjsthZZUri4AdIJbFMmBHNqJkyZLYvHkzALEsNiMBOzacICJzdfv2bRw8eDDdlz969Chu3ryJXBbyoZfIap0+LZZcAqJOlYeH8Y41cCAwfz7w+LHI6jt+XLe2NaW0ciXw8qUYt28P+PsrNxc7O9HJNCxMNDZ8/Fh0kz18WNT0Iv1oZ5uaa4adrFo10SW1c2dxesQI0XjB0Jm5p0+L14jGjYEaNQy774yKi9PUkFSpLCpAySWx5s7cA3YyNp4gG5KRxhPJycnqJbG5cuVCAH/BJCIrER0djXHjxik9DSKSs+sA4y2Hlbm5iQYUslGjbGdJnT4kKWWzCaW5ugKbN2u6Y166BLRta3v1zAxJO2Bnzhl2sk6dNDUNJUkE786eNcy+jx4VQbqKFYFp00Q2n9KxglWrRHAaEB20LSjRiAE7c5acrGn97e1tPq2hZRUrarobKf0kJDIh7YDdhxpPhIaGIioqCoBYDqsyVUcwIqIMmjFjBuLi4j749+jRI2T9r1DzkiVLMtQxm4iMQA7YqVRAixbGP97nnwOFC4vxgQPAjh3GP6al2rkTuHpVjGvWBMqXV3Y+Mh8f0XTC21uc3rVL1NZj8FU/2ktize07e1rGjROBO0As227eXCyX1teBAyLDt3p1YPt2zfaEBBEQfv48c/PVV3IyMGuW5vSIEcrMQ08M2JmzK1c07ZZr1DBd6+/08vTUdJq5cEFTa4/IyhUpUgSOjo4APhywY8MJIrIUDg4OcHJy+uCfn58fxowZA0BkEQ+3oKUlRFYnNFST3VOtGpAzp/GP6egITJmiOS3XtKOU5s7VjIcMUW4eqSlcWNQzc3YWp3/9VWREUcZod4jNlw/IkkXZ+aSXSgUsWSJeNwDg0SMRtHvzJv37kCQR7K1VC6hTB9izR3NevnxA6dJi/OCByOJLSjLY9NNtyxbg+nUxrlVLd5WgBWANO3NmzsthZZUrixeoxESRRlu9utIzIjI6JycnFC1aFJcuXcK1a9fw3XffpZk5J9e6A1i/joisx8CBA7Fo0SLcu3cPO3fuxPbt29GoUSOlp0Vke7SXw7ZqZbrjtmkjssXOnAHOnwfWrgU6djTd8S3BlSua7MP8+U2T/ZhR1asDy5cDHTqI02PHAoGBmvpm9GFhYcDr12JsCcthtbm4iNeQypWBO3fEc7lTJ7Hs3c1N98/VVdRABESgbts2YNKklCvtChYExowBPvsMePYMKFcOePpUZJtOmgRMnGja22jB2XUAA3bmzRICdlWqAEuXivGJEwzYkc0IDg7GpUuXkJCQgMHpqEeiUqlQsWJF40+MiMgEXFxcMGPGDHT87wv68OHDUa9ePTg48KMlkUlpB+w++cR0x7WzA2bMAOrXF6fHjgVatxZdakmYP18zHjgQsLdXbi7v0749cO+e6AAMiCXPefIAtWsrOy9Lob0c1twbTqTG1xfYuhWoWhWIihIZaXJjyXe5uIjgnb29CMZpK1ZMBOo6dADkzwL+/iKY//HHIrtu0iQRHGzSxLi3SXbkiKipBwDBwaY7rgFxSay5kiRNwM7NDShbVtn5pEU7pfT4ceXmQWRiLTL4K2n9+vXVNZ+IiKxB+/btUeW/7pCXL1/GkiVL9NpPcnIyJNZNIsq4x49Fp09AfBmVmwiYSr164os4ANy+Dfzyi2mPb85evBDdWAHRtffzz5Wdz4eEhAB9+ohxfLxoXiLX3qP3s6QOsWkpXhxYv/7DQeXYWNHxWDtYFxwsgnKXLomsund/uKtdW3ep9WefAXfvGmzq7zVzpmYcEmJ+JcbSQSXxE1K6vHr1Cp6enoiKijLNl+5790Q6MiDeCHfvNv4x9ZGYKGrZxcQAefOKeRPZAEmScOLECdy5c+eDl3Vzc8PHH3+MLJZS04KIKJ2OHj2K6v9l1+fIkQM3btzI0OekhIQEdOvWDfnz58fUqVONNU0i6/TTT6JRAAB8/bXIXjG1U6cAueRHzpzAzZuWU8PLmKZPB776SowHD9atZWeuEhPFst1t28TpwECRkGGKuoiW7IsvNMHqEyc0zwdLdOCAyLaLiXn/X3Q0UKAAMHSoyOy1+0AemCQBn36qyQguX14013RxMd5tuXJFs0Q5Tx7g1i2jZQAbM1bEdQvm6sgRzdicl5k6OIhusQcOAPfvi1/6/PyUnhWR0alUKlSpUkWdXUJEZIuqVauGtm3bYt26dQgPD8eMGTMwLZ1Fy9++fYu2bdti69atAIBs2bIhJCTEmNOl1ERFieBCUpLIDilRQmRbMCvc/G3cqBm3bKnMHCpWFPXs1q8XdaoWLgRGjVJmLuYiPl78PwAio2fAAGXnk14ODiJTqlYtUcvs7l0x/ucfUZeMUqe9JFZuyGipatc2zlJolQpYtgyoUEEE9c+cEYHsH380/LFk33yjGQ8ZYrHL9bkk1lxZSsAO0F0W+27RSSIiIrJqM2bMgNN/H4Tnzp2L+/fvf/A6r169QuPGjdXBOmdnZxQrVsyo86Q0DBkilg19841Ytlelilg9kScP0KABMGiQyOQ6dEgs8yPzEBUF7N0rxnnzKls+Z8oUTYbNt9+KDBxb9tdfouMmIAKpBQooOZuM8fAQGVYBAeJ0aKh4TWDpo9Rpd4gNCBD/f5Q6T09gwwbRvAIQ7yvLlxvnWGFhwMqVYpwtm8iCtFAM2JkrOWBnZydeJM2Z9vwYsCMiIrIpBQoUwMCBAwEAsbGx+EpeBpaG58+f46OPPsKBAwcAAFmyZMH27dvRvHlzo8+V3vHiBbB6dernhYUBu3aJwvl9+4pMG19fgEuXzcO2bUBCghi3bKlsbaaiRYF27cT42TPWstNuHCjXhbMk/v7iNsj12J4/B+rWBf78U9l5maPHj0XwHLC8DrFKKFUK+OEHzem+fYELFwx/nHnzNK+PX35p0YFUBuzM0atXwMWLYlyypPkvSWCGHRERkU0bM2YMvL29AQCrVq3CyZMnU71cWFgYatWqhTNnzgAAvLy8sHfvXtSpU8dUUyVty5YBcXFi3K6d+JLTuzdQowbg5ZXy8pIkiodHR5tylpQac1gOq007UD97tlgWaqsuXdKMK1RQbh6ZkS+fSCCpW1ecjo0VS5/nzhWvAyRYeodYJXTrJt5nAPG4at0aiIw03P4jI0X2HgA4O4sOzRaMATtzdOIEkJwsxua+HBYQv8LkySPGp06JGihERERkM7Jly4bx48erTw8bNixF59ebN2+iRo0auPpf50F/f38cPHgQFStWNOlc6T/Jybr1gyZN0l3++vy5qEm2bx/w/feaz6QxMcCmTcrMmYS4OFFXDBCB1Zo1lZ0PIJIMWrQQ44cPNR1SbZEcxMmVC/jvhwyLlC0bsH070KWLOC1JosnAoEH8vifT7hDLDLv0++470XgCEM0gevQwXCD4p5+A16/FuHt3i2+awoCdObKk+nUyeVnsmze6L1xERERkE/r27YsiRYoAAA4fPoyNWhlAFy9eRM2aNXH37l0AYhnt4cOHEcQvOMrZs0cU/waAjz4Syxq1qVRAjhxAnTpiSZF2M5FVq0w2TUrFnj3iMzcANG8umgWYgzFjNOMZM0TXUVsTHi6WBQNAcLCyczEEJydRZ2zcOM22BQtEx09m2up+72WGXfq5uIhGNdmzi9N//SVePzIbtIuLE5nigHgPGzYsc/szAwzYmSNLDNhxWSwREZFNc3R0xOzZs9WnR4wYgfj4eBw/fhy1a9fGkydPAADBwcE4fPgw8ufPr9RUCdCtI9Sv34cvX6OGphD9jh2aoASZ3l9/acatWik2jRQqVQLq1RPjW7dEx1Fbo70c1lp+kFCpgIkTgV9/1QSHN28Wy2WfPlV2bkqzpg6xphYYKH78ketvTp8uatplJnvz22+B/z5r4NNPgcKFMz1NpTFgZ24SEzVdeHLnFl2fLIF2wI5dhIiIiGxS8+bN1fXobt26hZ49e6JevXqIiIgAAFSuXBkHDhyAn5+fgrMkhIWJL9wA4OcHfPLJh69jZwd07CjGSUnAunXGmx+lLSlJsyTZ1RWoX1/Z+bxLO8tu2jRNmR9boR3AsYYMO209eohmJ3J99VOnxCqr/8oc2BztDrF58oguqJQxjRuL5bGyn38G2rYVte0yIi5OBPu0a2mOGGGYOSqMATtzc/GiJsW9enVlOz5lRPnygL29GDPDjoiIyCapVCrMmTMHqv8+v6xcuRLR/y2b+uijj7B79254pdbMgExr8WJNFkOvXoCjY/qu17mzZsxlsco4flwsuwSARo0ANzdl5/Ou2rWBatXE+MoV26t3qJ1hZ20BO0BkUB4+rKlffveu+M768KGi01LE06fAfz9GcTlsJgwYIN5P5OzNjRuBhg3T34giLEyUbpAbTQAiWFepkqFnqggG7MyNJS6HBcSHhVKlxPjyZdHploiIiGxOuXLl0LVrV51tn3zyCbZu3YosWbIoNCtSS0gQATtAZM198UX6r1uypGaZ39GjwJ07hp8fvZ/2clhz6A77LpVKN8tu6lTb6ipqC11DS5YUCRplyojTERGizp2tsYX72lQ6dQK2bgXc3cXpgweBWrWAR4/ef71Dh0TikLzCz8VFdD+fOdOo0zUlBuzMjaUG7ADNslhJAk6fVnYuREREpJipU6eqM+m6dOmC9evXw8XFReFZEQCxFFb+EtS8uaYuXXqoVLpZdr//bti50ftJksg+AcTKlmbNlJ1PWho3BsqWFeMzZ4CdO5Wdj6lIkibDLm9ezdJRa+TvD6xZozl96pRyc1EKO8QaVoMGoiu5j484ffGiyNa9fj3lZSUJmD9fNEyS6yjmyydiKd26mW7OJsCAnbmRA3bu7kDp0srOJaPkTrEAl8USERHZsNy5c+PChQs4evQoli9fDgdz6WJJGW828S65jh0gljHZUvaU0i5fFs0cALH01FyXl7+bZTdlinJzMaVHj4CoKDG2hQBO4cJAtmxifOKE7b0WMMPO8CpWFPGQwEBx+t49kcR08qTmMjExIig3aJCmE3W9eiJhqFw5k0/Z2BiwMycPHog/QGSrWdqHWzaeICIiov/kyZMHVatWVdezIzMQGgrs2SPGBQvq17AgMFCzCuTKFeDffw02PfoAc18Oq61VK03XzMOHxRI3a2ft9eveZWcnAiyA6MwZFqbsfExNO8OOATvDKVJElFyQy229eCEy6XbsEGUYqlcHfvtNc/kRI0QzFDkzz8owYGdOLHk5LCCeXHJ3HFv8lYWIiIjInP34o2bct6/4wq0PNp9QhrwcFjD/gJ2dHTB6tOb01KnKzcVUtAN2tpBhB2gCdoBuFpS1kyRNhp2/vybTkAzDz08E+WvXFqejo0UJgHLlgPPnxTZ3d+CPP0S9OktLdMoABuzMiXbATu6uZEns7DRZdk+fAvfvKzsfIiIiIhLevhXFuAHA2Rno0UP/fbVtq/mC9PvvQHJypqdHH/DmDXD2rBiXLZux2oNK6dgRyJ9fjHfutP46Z9pLJG0hww7Q7cRpSwG78HDg5UsxZnadcXh6Atu3A59+Kk4nJmo6xxYuLBKE2rZVbHqmwoCdOZEDdioVULWqsnPRF5fFEhEREZmftWtFN0cAaNcO8PbWf18+PkDDhmL88KHo1EfG9eyZZly0qHLzyAgHB2DkSM3padOUm4spyBl2KpVmObC1s9WAHZfDmoaLi8ii69tXs61ZM/FYs5EsVgbszMXr18CFC2IcHKxZWmpptAN2bDxBREREZB4y22ziXVwWa1rPn2vGllSrqXt3sWQQEDX4Ll5UcjbGk5ysCeIUKAC4uSk7H1Px8wPy5BHj06dtJ9uWHWJNx94eWLQI2LpVlAXYtMmmliAzYGcuTpzQvMBZYv06GQN2RERERObl7FlN9kvp0kCVKpnfZ4sWooYQAKxbB8TFZX6flDbtgF1msiNNzdkZGD5cc3r6dOXmYkz37ok6W4DtLIeVyVl2r18D168rOxdTYYdY01KpgCZNRO1OfWuvWijburXmzNIbTsh8fETXMQA4cwaIj1d2PkRERES27t3sOkN07nV31zQ+iIwUtYbIeCw1ww4AevfWzHntWuDmTWXnYwzaARxby7iyxWWxXBJLJsKAnbmwloAdoMmyi4sD/v1X2bkQERER2bLISM2SVQ8P3aWsmcVlsaZjyQE7d3dgyBAxTk4GZsxQdj7GoN0h1lYz7ADbC9jlygV4eSk7F7JqDNiZg6QkTYMGPz8gMFDR6WSa9jILLoslIiIiUs6KFaJDLAB07QpkyWK4fderB/j6ivGWLcCrV4bbN+my5IAdAPzvf5oa3StW6DbRsAbaATtby7ArX16TtWsLAbtnzzSPX2bXkZExYGcOLl4Ua/4BkV1niGUKSmKnWCIiIiLlSRLw44+a04ZoNqHN0VF0nAWA2FhREJyM48ULzdgSA3aensDnn4txQgJw+LCy8zE0eUmsvb3ldPE1lKxZgWLFxPjCBfFaYM3YcIJMiAE7c2BNy2EBUczYyUmMmWFHZBgJCcC2baIOzJgxur+0ExERpebAAeDqVTGuWdM4Xy65LNY0LD3DDgBq19aMjx1Tbh6GlpSkeZ4VLiwabdgaeVlsQoII2lkz1q8jE2LAzhxYW8DO2RkoV06Mb9zQ/UWQiNIvOVn8Av3ll4C/v+iOtHgxMG2aaO4ydaqmIxkREdG73m02YQxVqgD584vxnj3AkyfGOY6ts9QusdqqVtWMrSlgd+uWpkuyrdWvk9lSHTt2iCUTYsDOHMgBOzc3oEwZRadiMNrLYq39RZvIkCRJ/DI5apT4AlSzpvjC9W5G3atXwNixQKFCYrlTQoIy8yUiIvP09Cnw559i7OsLfPqpcY6jUgGdOolxcrLoAkqGJ38OcHMDXF2VnYu+cuQAChQQ49Ongfh4ZedjKLZcv05mSwE7LoklE2LATmkPHwL374txpUqiFog1YOMJoox59EhkzAUHi8D9zJma1wYAcHERdYL++APo00fUSAFEJkO/fuIDw7p1IuBHRETvdfDgQezatUvpaRjX4cNAYqIYd+tm3GV6XBZrfHLAzlKXw8rkLLvYWOtZOqmdcWWrGXalSmlKItlKwC5HDsvNdiWLwYCd0qxtOaxMO8OOATui94uIEB90xo7V/dXO3h5o3Fh0UwsPF1kLbduKjLrLl4HWrTWXvXFDBPQqVwb27jX9bSAishCbNm1CgwYN0KpVK5y05i+WYWGaccmSxj1W8eKaVSKnTon3JDIcSbK+gB1gPctitTPsbDVg5+QElC0rxqGhQGSkotMxmhcvRPYywOWwZBIM2CnNWgN2gYFi+QUgAnbM+iFK2/r1urUeq1cHvv8eePwY+OcfoEsXwMND9zpFi4rrHT+uW8T51Cng44+BRo1ETRUiItKxatUqxMXFITo6Gk2bNsX169eVnpJxaAfs/P2NfzztLLvVq41/PFsSFSUaGwDWFbA7elS5eRiSHLBzchKlSmyV9rLY06eVm4cxcTksmRgDdkrTfqPSfgOzdCqVZllsRIT4pYWIUqdd72f/fk2jCTno/T6VKwP79onAnnYGxY4dQPPmop4QERGprVixArX/+6Hj+fPnaNiwIR49eqTwrIxA+zblzm3843XoID7/AWJZLH+sNRztH/UsPWBXqpSowwdYR4ZdfLzme06xYoCDg7LzUZIt1LFjh1gyMQbslPTmDXD+vBgHBQHZsik5G8PTDkAePqzcPIjM2dOnIuAGiELMtWplfB8qlVg6e+6cWD4rZ1JcvQr8+6/h5kpEZAVcXFywadMmlC5dGgBw7949NGzYEBEREQrPzMC0A3amyLDLk0eT8X3jhvVm2ChBu/GUpQfsHByAihXF+P593cepJQoN1dSKtPWMK/l+Baw3YKddr9DW728yCQbslHTypCa93ZqWw8pq1tSMGbAjSt369ZosOO3sBH3Y24vls6NGabZZe1F1IiI9eHp6Ytu2bcifPz8A4NKlS2jRogXevn2r8MwMSF4S6+4OZM1qmmNqL4vdssU0x7QF1hSwA6yrjh0bTmgULgx4eoqxtZZEYoYdmRgDdkqy1vp1sgoVNN2CDh1Sdi5E5kp7OWz79obZZ/36mjEDdkREqfLz88OOHTvg+1/5gcOHD6NDhw5IlLNlLJ2cueTvn7kfgzJCe0mcpWdOmRPtgJ01dKW0poCddsMJW8+4srPTZNk9eaJbR9NayAE7H5/0la4hyiQG7JRk7QE7FxfNB7dbt0QBfSLSePhQE8wuXtxwXfyKFtXUKzp0CIiNNcx+iYisTOHChbFt2zZkyZIFALB582b06dMHkqVnhrx+Lf4A0yyHlWl/gX32zHTHtXbMsDNf7BCry5rr2EVEaL7P2npwlkyGATulJCVp3qBy5hS1q6xRjRqaMZfFEulat04zbt/ecBkQKpUmyy42VvfHASIi0lG+fHn89ddfcPpvVcCvv/6KMWPGKDyrTDJ1wwmZdjCJATvDsbaAna+vppvqmTOicYOlkpfEuroC/y2xt2nWHLDjclhSAAN2Srl8GXj1SoyrVzfdUgVTYx07orQZYzmsjMtiiYjS7eOPP8bKlSuh+u/z2PTp0/Hdd98pPKtMMHXDCZmjo6aJGgN2hmNtATtAk2UXFyeaZlmit2+BmzfFuEQJsSTU1llzwE67XiEDdmQiZveqEhkZiYEDB6Jq1arIlSsXnJ2dkTt3bnz00UfYsGFDupco7N+/HyqVKs2/48ePG/mWfIC1L4eVVa2qCUYyYEekceeOKMgLAKVLA8WKGXb/H3+sGe/ebdh9ExFZobZt22LhwoXq04MHD8bvv/+u4IwyQbt2lCkz7ABNQIkBO8Ox5oAdYLnLYq9d0zRW4HJYwc9PdIwGRKdoubGaNdDOsOOSWDIRB6Un8K7nz5/j119/RZUqVdCyZUt4eXkhPDwcW7ZsQZs2bfDFF1/g559/Tvf+ateujTp16qTYnkd+IVGKrQTssmcXb2AXLwLnz4usQlN1KiMyZ3/8oRkbOrsOEEvtS5UC/v0XOHsWePHCOgpVExEZ0ZdffoknT55g8uTJAIBu3boha9asaNq0qcIzyyClMuwAsdzx5k0gKkosdZQbkJH+XrzQjK3lvfzdgN3gwYpNRW9sOJG6SpVEnebXr4Hr10WdZmvAJbGkgEwF7O7evYvVq1fj/PnziIqKgqenJ8qUKYNOnTohMDBQr33mz58fkZGRcHDQndrr169RpUoVLF68GIMGDUJQOl8U69SpgwkTJug1F6OSA3YuLkDZssrOxdhq1hQBu+Rk4PhxoEEDpWdEpLw1azRjYwTsALEs9t9/xa+/e/cCbdsa5zhERFZk4sSJePr0KX7++WckJCSgWbNmaNWqFaZOnYrilvLFU8kMO+3GE8+fmz5gaI3kDDsPD8DZWdm5GEpwMODuDkRHW26GnfYSSWbYaVSqBPz5pxifPGk9ATv5/vbyAnLkUHYuZDP0XhI7c+ZMFC1aFF9//TXWr1+PXbt2Yf369Rg7diyKFi2KmTNn6rVfe3v7FME6APDw8EDDhg0BADflWgGW6tEj4O5dMa5Uyfp/edRuPCF3xCSyZaGhIuMUACpWNF7TmXr1NGPWsSMiSheVSoVFixahdevW6m0bN25EcHAwevXqhYcPHyo4u3RSOsNOpr2Uk/Qn/z9aS3YdADg4aOqdPXggMrIsDTPsUlexomZsLXXsIiM1r6tBQdZbf57Mjl4Bu6VLl2L06NHw8fHBrFmzcPz4cdy5cwfHjx/HrFmz4O3tja+++grLli0z2ERjY2Oxd+9eqFQqlMhACuqNGzcwf/58zJgxA7///juem8MHB1tZDitj4wkiXdrNJjp0MN5xatXS/CCwa5emzgoREb2Xvb091qxZgx9//BF+fn4AgOTkZCxZsgSFCxfGiBEj8PLlS4Vn+R7aAbv/5m8y2gE71rHLvORkzZJYa6lfJ7P0OnZywM7DAwgIUHYu5qR8eU1Ay1oCdlevasZcDksmpFfAbu7cuciZMyfOnTuHYcOGoVKlSsiXLx8qVaqE4cOH49y5c/D19cW3336r98QiIyMxYcIEjBs3Dn379kWRIkVw4cIFjBs3DoULF073flavXo1BgwZh9OjR6NSpE/LmzYvZs2frPS+DsLWAXZ48QL58YnzihGW3bicyBO3lsMZcpurmpnmNuXsXuH3beMciIrIyDg4O6NOnD27cuIGpU6ci6381eGNjYzF79mwULFgQM2fORExMjMIzTYW8JNbbW5RfMSUG7AwrMlJTuJ8BO/Px+jVw754YM+NKl6enppnahQtAbKyy8zEEdoglhegVsLtx4wbatWuHHGms3c6ZMyfatm2LGzdu6D2xyMhITJw4EZMnT8ZPP/2EJ0+eYPbs2Rg/fny6ru/r64vZs2fj6tWriI6ORlhYGFauXAkvLy+MGDECP/3003uvHxcXh1evXun8Gcz+/Zqx9huVNZOz7N6+FQXwiWzVpUuaorXVqxv/F1kuiyUiyhR3d3d89dVXuH37NoYNGwbn/2qIRUZGYtSoUShcuDAWL16MxMREhWf6H0nSZNgpUT+OATvDssYOsbIqVTRjSwvYaTcgYP26lOTlzgkJImhn6dghlhSiV8DO19cXjo6O772Mk5MTfLXfsDMoMDAQkiQhMTERd+7cwaRJkzBmzBi0bt06XR+IgoKCMHz4cBQrVgxubm7w9/dH586dsX37djg5OWH8+PFIfk+b6enTp8PT01P9F2CoL9VPnmhetMqXF0UrbYF2HTsuiyVbpp1dZ8zlsLL69TVjBuyIiPTm7e2Nb775BqGhoejRowfs7MTH6EePHqF3794IDg5GVFSUwrOECPAkJIixqRtOAAzYGZo1B+x8fAB55dTZs0BcnLLzyQjtjCsGcFKSA3aAdSyLZYdYUoheAbsOHTpgw4YNaS4BePPmDTZs2ICOHTtmanKAqCESGBiIUaNGYcqUKdi4cSMWL16s9/6Cg4NRuXJlPH369L3NK0aPHo2oqCj134MHD/Q+po6dOzXj/5po2AQ2niASWQ9y/To7O6BNG+Mfs1w5IHt2Md67F0hKMv4xiYisWN68efHrr7/i33//xSeffKLeXrhwYXh6eio4s/8o2XAC0A0qMWCXeXL9OsD6AnaAZrVRfLxlrcLRbjjBDLuUtAN2p04pNw9DkQO02bMDuXIpOxeyKXoF7CZPnoySJUuicuXKWLt2LcLCwpCQkICwsDCsWbMGVatWRenSpTFp0iSDTrZBgwYAgP3aS0r14PPfm937ao44Ozsja9asOn8GsX27ZmxLAbvixTXZhEeOaGpxENmSc+cA+YeCOnVM84Zvbw98/LEYR0YCZ84Y/5hERDYgKCgIf/31F44cOYLatWtj2rRpSk9JUDpgxww7w9LOsLOmLrEyS61jp51hx4BdSqVKaRqfWXqG3atXmi7GJUqwXiGZlIM+V3JzcwMASJKETp06pThfkiRcuXJFfTmZSqXKVH2PR/99AHFw0GvaAIDExEScPXsWKpUKefPm1Xs/eklO1ixJ8/Cwnfp1gMgmql4d2LJF/FJ47RrTicn2aC+Hbd/edMetVw9Yv16Md+3S/dWTiIgypVq1apn+Mdmg5IYTgPJLYrWDTaQfa14SCwDVqmnGlhSwkzPsvLyAnDmVnYs5cnICypYVDQevXxc/GmfLpvSs9MMOsaQgvSJfNWvWhMpIkeXz588jf/78KZYUvHz5El999RUAoHHjxurtz58/x/Pnz+Hj46POnAOAY8eOoUqVKjrzTExMREhICO7du4dGjRrBy9T1486e1bzpfvwx8IE6gFanZk0RsANEHTu+4GWeJPFXHkuhvRzWwQH49FPTHVu7jt3u3cCYMaY7NhERmZbSGXZubuIvJoYZdoZg7QG7oCCRyPD6teUE7CIiNM+z4GB+Fk9LxYoiYAcAp0/rNkKzJNeuacb8/komplfAzpi/Ii5btgy//PIL6tati3z58sHd3R337t3D1q1b8ebNG7Ru3Vonq2/hwoWYOHEixo8fjwkTJqi3d+zYESqVCtWqVUPu3LkRGRmJgwcP4vr168ibNy9+/PFHo92GNO3YoRnb0nJY2buNJ3r3Vm4ulu7qVaBJE5GtWKaMaGAi/xUpIpZBknk5fhy4f1+M69Uz7YfuAgXE3+3bYkl6dDTg7m664xMRkekonWEHiCy7e/cYsDMEaw/Y2duLzP89e8Rj98EDwFDN/oyFDSfS593GE9YQsCtWTLl5kE3Sf22pkbRp0wZRUVE4fvw4Dh48iJiYGHh5eaFGjRro2rUrOnTokK7svn79+mH79u3Yv38/nj9/DgcHBxQqVAhjxozBsGHDkF0uwm5Ktlq/Tla+PODiAsTGsvFEZrx9C7RrB9y9K04fOqT7/+nunjKIx3oLypOz6wDTdId9V716wM8/i86BBw8CWpnKRERkRZTOsAM0AbsXL0RJGDu9ymYTYP0BO0CUCdqzR4yPHTP/gB0bTqSPtXSK1V4Sy4AdmZhKkiRJ6UlYglevXsHT0xNRUVH6NaCIihKFYpOSRAbU9euGn6QlqFMHOHBAjB88APLkUXQ6FmnAAGDhQjF2dgbi4j58nXr1RMCYmXfKSEoSHz4fPxY1PcLDAVN3Ely/HmjbVoyHDgXmzDHt8YmIyDTKlxdlWOztxWcEJd77mzQBtm0T42fPrDfQZArVqwNHj4pxfLx1ltT55x+gaVMxHjwYmDtX0el8kPZn8f37gdq1FZ2O2UpOFjX+oqJEo7VHjywzgaBYMfHd3cVFrFLhDxD0jkzHit5D70fbvXv3MGTIEHz00UcoWrQoChQokOKvYMGChpyrZdu7V3xpB2wzu05Ws6ZmfPiwcvOwVH//rfmA4OIiOn4+eyaWW0+bBrRuDQQGprze7t0iu4qUcfiwCNYBQKNGpg/WAcBHH2k+JMnNb4iIyPrIS2Jz5VLuhzrtAB2XxWbOixfiX09P6wzWAUCVKpqxHJw0Z9oZdlwSmzY7O1HHDgCePNFdrm8pEhKAW7fEuGhRBuvI5PR6xO3cuRPFihXDd999hyNHjiAmJgaSJKX4S05ONvR8LZetL4eVvVvHjtLv8WOgRw/N6W+/FR8SfHyABg2A0aNFFtWdO2L5xM6dwPjxmst/9ZXI7CLTU3o5LCB+4SxfXowvXhQfnIiIyLokJGje65VaDgvodoplwC5z5CWx3t7KzsOYvLxEMAQAzp0T5XPMmVzDLmdOZo9+iKUvi711C0hMFGMuhyUF6BWwCwkJgZ2dHdauXYu3b9/iwYMHuHPnTqp/BNEdUm444eQkloXaqqpVNb9MMGCXfsnJQNeumg9tn3wC9O2b9uW9vUVn0AkTgG7dxLbISGDECGPPlN6VmCgCqQDg6go0b67cXLS7xcq1YoiIyHo8eSI+dwLKNZwAdAN22jXYKGOSkoCXL8XY2gNDVauKfxMSxAoScxUerglCs37dh2kH7E6dUm4e+mLDCVKYXgG70NBQdOrUCW3btoUd00I/LDRUFN4FxJJQW+7OmDUrULq0GP/7rwgi0YfNmSOWtQLiF/Nffkl/DYhZs4Bs2cR4+XLRcIBMZ98+zQe7Zs2ALFmUm4t2wI7LYomIrI85NJwAmGFnKBERmgCsrQTsANF4wlxxOWzGWHqGHQN2pDC9om1+fn5wcXEx9Fysl5xdB9j2cliZvCxWksz7DdlcnD4tlrMCIkj3228Z+9CWI4eobyf78kvx6yWZhvZy2PbtlZsHAFSrJrL8ABGwY88hIiLroh2wM5cMOwbs9GcLHWJllhKwk5fDAsywSw8/P02TwVOnxKohS8KAHSlMr4DdZ599hm3btiHW3OsLmAvWr9Ol3Xji0CHl5mEJ3rwBOnXS1E4YOVI0D8io3r2BChXE+PJlYP58w82R3k/ukufuLrrmKcnZGahVS4wfPdL9EEJERJZPu6g7M+wsny0F7EqUADw8xPjYMfP9UVE7w44Bu/SRs+xev9YNeFoC7c/KRYooNw+yWXoF7MaNG4cSJUqgYcOGOHLkCN68eWPoeVmP2FjR7hsQvzCULKnodMwCG0+k38CBwI0bYlyxIjBpkn77sbcHfvhBs4x2/Hjg4UPDzJHS9vixJtuhcmVNdpuSuCyWiMh6cUmsdbGlgJ29vfisBIjPT/fvKzuftGgHnEqUUG4elqR6dc3YkpI1JEkTsMuXD3BzU3Y+ZJP0Ctg5ODigf//+uHjxImrVqgVPT0/Y29un+HNwcDD0fC3P4cPA27di3LBh+uuOWTM/P6BgQTE+eRKIi1N2PuZq7Vpg6VIxzpIF+P13wNFR//1VqKBpVBEdDQwdmvk50vudO6cZlyun3Dy01aunGct1EYmIyDpoZ9hxSazle/FCM7b2gB0gSnfIzHFZrCRpMuwCAgBPT2XnYyksdXXV06dAVJQYFy+u7FzIZukVUVu7di06d+6M5ORkFChQAH5+fgzOpYX161JXo4Zokx0XJ2q0af/yQsDdu0CfPprTixZpgpyZMXWq6Fj67Bmwbp14fPJxaTxnz2rG5csrNw9tJUuKuobh4SL7NyEhc4FgIiIyH+aSYZc1q3hvSUhgwC4ztDPsvL2Vm4epvFvHrkMH5eaSmrAwTQCHDSfSr2xZURomOloE7CTJMpJYWL+OzIBeUbZJkybB09MT27ZtQyXtzi+Ukly/TqXSXYpm62rUEB1LAZGFyICdRmIi0Lmz5gNBp07AZ58ZZt/ZswOzZwPdu4vT/fsDFy8CbCJjHNoBO3PJsLOzE1l2q1eLWiInTuguUyciIsslB+xcXTUd4pWgUomMsMePGbDLDFtaEgtolsQC5plhd/68ZswyR+nn4CCCsbt3i6DnvXtAYKDSs/owBuzIDOi1JPbOnTvo0KEDg3UfEhamSZuuWNE2fhlLL0tNjTaFKVOAo0fFOH9+kV1nyF+hunbV/P/fvCkCeGQcZ86If7NkAQoVUnYu2rR/POCyWCIi6yEvifX3Vz6DRV4W+/y5+TYQMHe2FrDLnl2z9PDcOU1ZIXMhf64DzGflhKWwxO9+V69qxgzYkUL0CtgFBAQgKSnJ0HOxPjt3asZcdqirSBHNB7kjRyyvxbexXLwITJ4sxvb2IgvK0PUxVCrg++/F/gFg2jTg9m3DHoPEh2y5YHLZsiKzzVxo17Fj4wkiIusQHa3JzldyOaxM/pwXHy8yuinjbC1gB2iWxSYmirI55sQcV05YCu3VHJYSsGOGHZkBvb5BfvHFF9iyZQtevnxp6PlYF3k5LMCA3btUKs0Ld2Sk5bX4NgZJAoYM0QQvv/4aqFLFOMcqWRIYPFiMY2OBAQP467ehmWPDCVmePJoPHidOaL7gERGR5dKuX6dkwwkZG09knnbAzstLuXmY0rt17MyJnGGXNathakvbkipVxNJYwPICdtmyifrPRArQK2DXpk0bVKpUCdWqVcPKlStx6dIl3L9/P9U/m5WUpMlc8fTUrclAgvYvLYcPKzcPc7F5M7Bnjxjnzw+MHGnc440fr/kF/p9/gE2bjHs8W2OODSe0yctik5KAAweUnQsREWWeuTSckDFgl3lywC57dk2ww9qZa8Du6VPNkvNy5cxr5YQlcHPTfB6+ds38XxOiozUrZYoVU77EACkmWeGVgHq90hQoUACbN29GaGgounXrhtKlSyN//vwp/goUKGDo+VqO06eBiAgxrlfPdt5kM0K7loGtB+zi4oBhwzSnZ882fiMIDw9g3jzN6YEDxZsTGYa5L5vgslgiIuvCDDvrIwfsbKkOdvHimnIwx46ZzwoQc/9cZwks6btfaKhmzOWwNkmSJCxatAg1a9ZEXFycYvPQK4rUtWtXqBhlfr8dOzRjLodNXZky4teWmBjLSY02lvnzgVu3xLh2beDTT01z3DZtRKbVrl3AgwfAjBmaGnqUOfKyCVdXoGhRZeeSmjp1RB3DpCQ2niAisgZy9g9gHhl22jXXGLDLuMREUTYGsJ36dYDIXKtaVZQWevpU1Fk2h+WnbDiReTVrAt98I8aHDgGtWik7n/dh/Tqb9vDhQ/Ts2RM7/+tJMHHiREybNk2RuegVsFu2bJmBp2GFWL/uwxwdxRvynj0iWHT/PpA3r9KzMr2nTzVBMpVKZL2ZKiCuUgELFwLBwUBCAvDjj6J2npOTaY5vrSIjNQHY0qXNM8M2a1axVP/oUfGh5OFDUduOiIgsEzPsrIt2rXBbCtgBQLVqmu9SR46YR8DO3EudWILq1TVjc0/WYMDOJkmShN9//x3/+9//ECn/YALg9evXkCRJkaQ1Lr43hogIUcgdEGndthiESi9L7BhkaGPHarqn9eolMg9NqUgRoHVrMX7+XNTSo8w5f14zNudlE9rLYuX6iUREZJnMLcNOO2Cn3TyB0scWO8TKtAM7R48qNw9tcoZdlixA4cLKzsVSeXsDQUFifO4c8OaNsvN5HwbsbM7z58/Rvn17dO7cWR2s8/f3x/bt27FgwQLFVphmKmD35MkTLFq0CAMHDkTPnj3V2589e4aTJ0/i7du3mZ6gRdqzR9Ppk9l172frjSfOnQOWLBHjrFmBKVOUmYfW81c9H9KfpfwKqx2w47JYIiLLxqYT1sWWA3aVKomyHYDIsFPa8+eaBgRly7LhRGbIdeySksyrqci75ICdoyNgy3X5bcTWrVtRsmRJrFu3Tr2tU6dOuHTpEhoqHM/R+9Vm0aJFyJ8/P/r374+FCxfqLJMNDw9H1apVsXLlSkPM0fKwfl36VamieUPes8d8CsuagiQBgwdrbvPXXyvXMvyjj4DAQDHesUPzoYT0YymFiStXBtzdxdjWnn9ERNZGDthlzy7qpyqNAbvMseWAXZYsoqQIAFy+rKnlpxRL+VxnCbQbT5jr6qqkJE3TiUKFRNCOrNLr16/Ru3dvNGvWDE+ePAEAeHl54Y8//sCqVauQPXt2hWeoZ8Buy5Yt6N+/P0qWLInNmzejX79+OucHBQWhVKlS+OuvvwwxR8siSZqaCy4uooEApS1LFs0L940boruurVi/Hjh4UIwLFxZdWpViZ6fJspMkYOlS5eZiDeRlE05OQIkSys7lfZycNK9Rjx8DV68qOx8iItKPJGmWxJpDdh0AeHlpavIyYJdxthywAzTLYiUJOH5c2bmw4YThWELA7v59IDZWjLkc1modPHgQpUuXxuLFi9XbmjZtikuXLqFt27YKzkyXXgG72bNnI2/evNi3bx+aNWuGHKlkBZUsWRJXrlzJ9AQtztWrong7ANSqZR6/cJq7zz7TjG0lK/PtWyAkRHN6zhzlGz10765J8f/1V/HrEmXcmzfA9etiXLKk8vfrh3BZLBGR5YuIAOLixNgcGk4AYgWFt7cYM2CXcdoBO/n/0ZZo17FTelmspZQ6sQQBAUC+fGJ8/DgQH6/sfFLD+nUWKTExEYsXL0b58uVRsGDB9/4VKFAAderUwZ07dwAAWbJkweLFi7Flyxb4+fkpfEt06RWwO3/+PJo2bQp3eSlVKnLnzo2nT5/qPTGLxeWwGdemDeDsLMa//y66lVq7b78F7t0T4/r1gWbNlJ0PIDqENmokxvfvswmBvi5c0CwttYRlEx9/rBkzYEdEZJnMreGETF4Wy4Bdxr14oRnbYoZdtWqasdIBOznDzs0NKFpU2blYAznLLjZWN3vRXGivOGHAzuxJkoS///4bpUuXRu/evXH27Fncvn37vX937tyB9N/3tZo1a+LChQvo1auXYo0l3kevgF1ycjIcP7CW+9mzZ3CWgzC2RF4OC2iCH/R+np5AixZi/OwZsHOnsvMxtkePgOnTxdjeHpg7V7NkRGm9emnGv/yi3DwsmaX9ChscrKmduH+/bQTMiYisjbk1nJDJgaboaLG6gNLP1pfEBgSIPwA4cQJITFRmHi9fAv9l4aBMGU3tbdKfuS+LZYadxThz5gw++ugjNG/eXGd1p4+PD3x9fd/7V7BgQXzzzTfYt28fCphxYxG9AnZFixbF4fd09ExMTMSBAwdQsmRJvSdmkd6+1dQky5MHKF5c2flYki5dNOPfflNuHqYwerT44AoAfftq2pubg2bNNMGbv/7iL+L6sLTCxHZ2miy716+BU6eUnQ8REWWcdsDOXJbEArqNJ7QDUPRhth6wAzTLYmNixAoGJZw7pxlbwg+xlsCSAnbMqDRLd+/eRefOnVGhQgXs379fvb1q1ao4fPgwnj17hvDw8Pf+3bx5E8OGDYO9mQfh9QrYde7cGWfPnsWUKVNSnJeUlIThw4fj9u3b6Nq1a6YnaFEOHNAUqGzY0HyypixBo0aaDyObNgGvXik7H2M5eRJYsUKMs2cHJk5Udj7vcnQEunUT44QE6w+eGoOc2m9vL2rYWQLWsSMismzmviQW4I+AGSUH7FQq8ZnRFpnDsljtJZuW8EOsJShWTPO978gRIDlZ2fm8Sw7Y+fmJlWBkNiIiIjB8+HAULVoUq1evVm8vWLAg1q1bhyNHjqC6dv1LK+Cgz5UGDBiALVu2YPz48fjtt9/US1/btWuH06dP4+7du2jQoAF6yl0nbcXPP2vGjRsrNw9L5OgIdOgALFwogp4bNgA9eig9K8OSJGDwYM3pCRPMs4hwz57A7NlivGQJMGQIg8/p9fYtIKdjBwWJTtGW4N2A3bhxys2FiIgyzhIy7Biwyxg5YOflZbvLMLW/eB89CgwcaPo5WFqpE0ugUgE1aojVPBER4rNzcLDSsxJevNC8VnE5rNHFxcVhXDq/d8TGxuK3335DRESEepu3tzfGjx+PPn36wMncG/3pSa+AnaOjI3bs2IGJEyfixx9/VP+nrV+/HlmzZsXIkSMxceJEsyzaZzS3b4sXHUBE45s3V3Q6Fumzz0TADhCZXdYWsPv9d+DYMTEuXhzo10/Z+aSlaFGRqn7okHgDPX4cqFpV6VlZhosXNd11LelX2Lx5gcKFgRs3xGP0zRsgSxalZ0VEROnFDDvrIwfsbHU5LACUKgW4u4tSMkpn2Lm4sNyRIdWsqfnufOiQ+QTsrl/XjBmwM7qEhATMmjUrw9dzcXHB4MGDMWrUKHhaeRakXkti79+/j9jYWEydOhXPnz/HlStXcPjwYfz777948eIFpk+fjri4ONy/f9/Q8zVf8+drOkP27w9YaYTXqCpVEkEDQBS/f/BA0ekYVGwsMGqU5vTcuSKr0FxpZ8ey+UT6WfKvsHKWXWKiphYnERFZBjnDzs4OyJlT2bloY8BOP/HxmvIw5rgaw1QcHIAqVcT44UPA1N8to6KAmzfFuHRpMR8yDHOtY8eGE2ZNpVKhW7duCA0NxfTp060+WAfomWGXP39+jB8/HuPGjYNKpUKxVB7MixYtwldffYUkOdvEmkVFiaWDAODqCvTpo+x8LJVKJZpPjBsngp+rVwMjRyo9K8NYsEATgGzcWNQ4NGdt2ohlB69eAWvXAvPmAR4eSs/K/Flawwlt9eoBP/wgxrt3A02aKDsfIrJ8L16IQFJwMEsrGJscsMuZ07yCCgzY6eflS83YljPsAFHHbs8eMT56VKwKMBU2nDCeMmUANzfRUOTQIfHdzxzeJ7QDdsyoNDpXV1ccOHAg3ZcPDAxEXlO+BpgBvd7RJTmTLJOXsRq//CKWkAGiYL8t/xKWWZ07a+pn/fYbMGKEebx4Z8aLF8DUqWJsZwfokfZrcu7uQKdOwI8/imUIa9cCvXopPSvzJy+bUKnEL7GWpG5dMW9J0nwwJiLSV2SkaLzz+LH4UfPzz5WekfVKTASePBFjc1oOCzBgpy92iNXQrmN35IioeW0qbDhhPI6OouTOnj0ie/LePSAw8P/t3Xd8k+X6x/Fv2kKBQsuesgVZCigIDmQpCAhyZMlRFJQp7oEL2YiKCycCR1AQf4qgHkVFWYILB0NAmYKCLMtomYW2z++P+4QnhRaakuR5knzer1df3EnT5Coa2nxz3ffldFV02IVYbGysrrrqKqfLcLU8bYnNje3bt6tINHTkpKeb7bBevkMF4L9q1ewfzGvXSitXOlpOQIwda7owJal3b/ec0XA2vgEd22LP7vhxc4adZH7AJyQ4W4+/ihWTGjUy619/lXbvdrYeAOHt449NWCeZM1wRPHv22FMW3TRwQsoaNhHY5R6Bna1pU/vN+1CfYxfOR52EAzdui/UGdgkJ7vv3FFEp1x12o0aNynJ58eLF2d4uIyND27dv1//93/+pSZMm51RcWPjwQ/s8hfbtzYH9ODe9etk/kKdPlxo2dLaec7Fliz1Io2BBaeRIZ+vxx8UXmy6xVaukZctMGHXhhU5X5V5r10onTph1uL4L27q19NNPZr1wodSzp7P1AAhf3sPEJTO8KCMjeiddBptbB05IWcMm3xAKZ0ZgZ0tKMm92r15tficN5WAsb4dd/vxSnTqhecxocmpg16uXc7VIUlqaGSQpmdf0MUHrbQJyLdeB3YgRI06uPR6PFi9enGNoJ0nly5fX008/fS61hYfnn7fX99/vXB2RpHt3c37a8ePmXflnnnHXeSz+ePxxO8S57z7pvPOcrccfHo/psrvrLnP5P/8xZ9khe5HwLuzVV0tPPWXW8+cT2AHImyNHpHnz7MuHDklr1oTfUQHhwnt+neS+jpD4eCkx0ZyJS4dd7hHYZXXFFSawy8w0byK3bh38xzx4UNqwwawvuoiBgsHQtKl5jZee7o4Ou82bzZtLEtth4Rq5jo0XLVqkRYsWaeHChbIsS7179z55ne/HkiVLtGbNGv31119q3LhxMGt33g8/mA/J/EPeqpWz9USKYsWk664z6127wvc8rZ9/trcBlSxpzuMLNzfdZH7Zlky3Y1qas/W4WTgPnPC64gqpQAGz/uore/I1APjjyy+lo0ezXvfdd87UEg18Azu3ddhJ9jl2BHa5R2CX1ann2IXCypX270Hh+kas2xUqZP/drlvn/L8RnF8HF8p121Lz5s1ProcPH66WLVtyQOALL9jre+8N/+EIbnLzzdKcOWY9fbr7p6qeyrKkhx6yLw8bZlr6w02xYlKXLmZi7759ZotTjx5OV+VOvgcTN2jgWBnnpEAB6corTXfdtm3Spk1SjRpOVwUg3Hz44enXffedNGhQ6GuJBm7eEiuZwG7zZmn/frPrIF8+pytyP9/AjmF2ZlKsV6jCfwZOhEazZqZrUpK++Ub617+cq+X33+01gR1cIk8bs4cPH05Y9+ef0uzZZl26NFvHAq19exMWSeYXf+8U3nDx+eeSd8t49erSgAGOlnNOGD5xdunp5lwVSTr//PAMZ72uvtpez5/vXB0AwtOJE9Inn5h1kSJ21y4ddsHj5i2xUtZJsXv3OldHOPH9e6LDTqpaVSpb1qy//97ethhMkXDUSThw0+AJOuzgQpykmFcvv2z/sBg82P6FFIERH293ch05kv279W6VkZF1++u4ceF97kXz5iZ0lEyAs2WLs/W40bp10rFjZh3u78IS2AE4F0uXmk4qybz55p0+/ccf5pgLBF44dNh5Ob3lLVywJTYrj8feFpuaagZ9BZu3wy5fPjP0AsHhu93ZLYGdx8MOE7gGgV1eHDwoTZ5s1vHx0sCBztYTqXwnBU2f7lwd/nrrLfsXiUsvlbp2dbaecxUTI912m3156lTnanGrSHoXtkEDqXhxs164MDTvYgOIHL5vsP3rX1m3sn3/fejriQbeDrv4ePvfbzfxDZwI7HLHG9jFxEhFizpaimuEclvs4cN2eFOvnn2eMwKvRAmpbl2zXrHCuV1VlmX/N69alWYcuAaBXV5MnWre3ZHMWWulSztbT6S67DKpWjWzXrAg65YPtzpyRHriCfvy+PGRcbZh7972aPM33yTEOVUkDJzwio21B+gcOJD1ewOAM7Esc9apZDrL27Vz5uypaOP9/ah8eXf+zuHbYefbOYacef+eSpSwf/+KdqEcPLFqlZlIK4X/G7HhwLstNiPDuTd2duyww0K2w8JF+Angr4wMacIE+/K99zpWSsTzeEwgKpkfmjNnOltPbrz4ov2Lc6dOUqSc9Vi+vNShg1n//bc0d66z9biN78HEDRs6V0egsC0WQF788ou0fbtZt24tJSaaN9+8COwC7+hRMxRKcud2WIktsXnhDezYDmtr2NDuegp2YMfAidBywzl2nF8HlyKw89dnn5lzWCSpTRvONAg2b2AnSTNmOFdHbvzzj/TUU2YdE2OvI0W/fvZ65Eh71H20y8w0LfySVLlyZExz8w3sFixwrg4A4cV3O2znzubP0qXNMB5J+vlnKS0t5GVFtJ077bUbB05IBHb+OnbM7vSJhN8pAiV/fqlxY7PesiXr//uBFklHnYQDtwV2tWs7UwOQDQI7f736qr2+7z7n6ogWNWpITZua9apV0urVztZzJqNHm/MNJTNZNdL+se/QwZxvJplfZMJpEEgwbdxozjqRIudd2GrVpCpVzPqbb0wHBwCcjXc7rMcjXX+9fb13W+zx42yzDzS3D5yQCOz8xYTYnPluiw1mx663wy42VrroouA9DoyKFc2b3pL0ww/mZ0Wo0WEHlyKw85d3X33t2lLbts7WEi18u+zcOnxi0ybp9dfNOiHBdKBFmpgYE0p6DRvGWXZSZL4L6/GY7WyS6YYJ9tYTAOFvwwbpt9/M+vLLpTJl7M9xjl3w+J7vS4ddZGBCbM5CcY7d0aP2v2V16zJ8IFS8XXbHjjnzxg6BHVyKwC6v7rvPnQf7RqIePaS4OLN+5x13hkSPPSalp5v1gw9KZcs6W0+wdOhgdzyuXSu9956z9bhBJA2c8MU5dgD84e2uk+ztsF4EdsHjG9jRYRcZ6LDLWSjOxPz1V/u1RqS8ERsOnN4W6w3sSpTgeQdXIbDLi5Ils3Z9IbhKlpTatzfrHTukhQudredU33wjzZpl1mXKSA884Gw9weTxSGPG2JeHD7eDymgVqQcTeyfFSgR2AM4uu/PrvOrUMQMoJPMimzNQA8d3S6xbO+wSEqSCBc2awO7s6LDLWYkSdvfT8uXBObIjUn+vczvfwG7JktA+9sGD9sAkuuvgMgR2eTFwoP2LB0KjVy97fffd9mG8TtuzR7rxRvvyiBFSkSKOlRMSrVpJLVqY9aZN0ltvOVqOoyzL7rArXz7rFrBwV7q0VL++WS9fnvUdfwDwtWOHOXdIMsO4vEMmvGJj7e7sXbukrVtDWl5EC4cOO8kOnnzDKGSPwO7MvNtiT5yQfvop8PcfiUedhINatczvnpK0eHFoz7HbsCFrHYCLENj5Ky5OuuMOp6uIPtdfbw88WLdOGjTI+Xfo09NNWOd9d7tZMzNsItKd2mU3alT0Tv3bskVKSTHrSHwX1rst1rKkRYucrQWAe/33v/b6X//K/jahOiw+2oTD0AnJ3habnGymqyNnBHZnFux/S7wddjEx9huXCD6PR2rTxqwPHTI7mELl99/tNYEdXIbAzl/duknlyjldRfTJl096/327e23GDOnNN52taehQO8QoV87U5z1rL9JdcYXUrp1Z//WXNGWKs/U4JdLfheUcOwC5cabtsF6cYxcc3g67pCSz9dStvIFdRoZ04ICjpbieb2BXooRzdbiV778lgR48ceyYtGaNWdeuLRUqFNj7x5l5X1tI0uefh+5xGTgBFyOw8xfddc6pUUOaPNm+fOed5mBYJ8yZIz39tFnHxZmwLlIHTeTEd2LsmDHSkSPO1eKUSB044dWsmQnLJQI7ANk7cMA+W7ZyZalhw+xvd+mlpmNFIrALFMuyAzs3d9dJDJ7wBx12Z1azpv338t13ge3YXLPGPps5Et+Idbs2beyhjl98EbrHJbCDixHY+euii5yuILr16GG2w0rmXbBu3cxBoaG0fr3Uu7d9+bnnpCuvDG0NbnDJJdINN5j1rl3Sa685W48TIv1g4oQE+53szZvNFmAA8PXZZ/YL3M6d7Rdbp0pMlC680Kx//TX0P7sjUUqK/WaZWwdOeBHY5R6B3Zl5PPbvJvv2ZT1/7Fz5/l5HYBd6JUuaN3ckE55u2xaax/UGdvnzS1WqhOYxgVwisEP4ef55+x38DRvMEJBQnWd36JAJqbwvNHr2lO66KzSP7UYjR9ovzp56KrpegPkOnChVyv0vlvLKd1us7zlVACDlbjusl/dFdmam9OOPQSspaoTLwAmJwM4f3iFPsbFmqzNOF6xtsZG+cyIc+G6LDUWXXXq6tHGjWdeoET3HGyFsuC6wO3DggO6++25ddtllKlu2rOLj41WhQgW1atVKs2fPluVHMJOZmalXXnlFF110kQoWLKhSpUqpe/fu2uh9UiI8FSiQ9Ty7mTNDc4aaZZmhEr/9Zi7Xq2e26ObUTRAN6tUzoaVkfsGcMMHZekJp+3b7XfCLL47c/w+8XZSSNH26c3UAcJ9jx+xzhkqUOHu3OefYBVa4DJyQCOz84f3domTJyP3d4lz5Dp4IZGDn7bDzeOxhdwitUJ9jt3WrPZG2du3gPx7gJ9cFdsnJyXrzzTeVkJCgzp0764EHHlC7du20du1ade3aVQMGDMj1fQ0cOFB33XWXMjIydNddd6l9+/b673//q8aNG+s3b+iC8HT++VmHTtx1l7RqVXAfc8IE6b33zDoxUZo9290HPIfKiBHmXWBJevZZaf9+R8sJmUgfOOFVp47UqJFZ//KLtHats/UAcI/586XDh826Y8ezdyYQ2AWWb4ed27u8fbd2EtidmW9gh+w1amSfsRuof0uOH5dWrzbrCy6QChcOzP3CP40a2f/vz59vh2nBwvl1cDnXBXZVq1bVgQMHNH/+fE2cOFFPPvmkpkyZok2bNqlOnTqaPHmy1ubiBeOiRYs0efJkNWvWTMuXL9czzzyjt956S3PnzlVqaqoGec9BQ/jq2tUMnpCktDRznl1qanAea+lS6cEH7ctvv20OvYVpH/ee6ZeSYkK7aOA7bj7St03cequ9fust5+oA4C4ffWSv//Wvs9++alWpTBmz/v77wB4WH43CtcPO94w2ZHXkiH0uIYFdzgoUsN8sXb8+MP9PrV1rh0OR/Eas28XESG3bmvXBg8F/c4fADi7nusAuNjZWcdm8Q1ukSBG1/d+Td9OmTWe9n8n/myY6ZswYxcfHn7y+devWatu2rZYsWaINgTykFM549ln7h+rGjVL//oE/z27nTql7dykjw1x+9FHp+usD+xjh7okn7Hc6J0yQ9uxxtp5gO3JEmjrVrPPli/yhIzfeaP/3nTHDfi4AiF4ZGfa5loUKSddcc/av8T0sPiVF+v334NUXDcKpw44tsbnjPb9OMtvMkTPfbbGBCHUYOOEeodwWS2AHl3NdYJeTY8eOaeHChfJ4PKpTp85Zb7948WIlJCToCt9/zP/HG/x9/fXXAa8TIRYfb86z8x7K+9570htvBO7+T5wwYd2uXeby1VdLo0cH7v4jReXKJiyVzPaop55ytp5gmzHD/qW6Rw+7YyRSlSwpdehg1jt3mi0KAKLbt9/awcu110oFC+bu69gWGzgMnYg8TIjNPd/XeGPH2p2JeeUb2EX6zgm3a9PGPr8xlIHdBRcE97GAPHBtYHfgwAGNGDFCw4YN08CBA1WzZk2tWrVKw4YNU40aNc74tYcPH9bOnTtVtWpVxXrP1vLh/fozDZ9IS0tTampqlg+4VLVqWc+zu/deacWKc7/fzEzpvvvsrY8VK5oBF9n8PwVJjz9utihI0muvZd2qE0ksS3rxRfvyvfc6VUlo3XKLvX77befqAOAO/m6H9SKwCxzvz1mPRypb1tlazqZoUfuMQwK7nBHY5V6bNuZ3c8lMnb7llrxvs09OzjqRtGHDc68PeVeqlH1+8urVZtBbMJw4YZ9beN55nFsIV3J1YDdy5EiNHj1ab7zxhnbt2qXx48dr+PDhZ/3alJQUSVJSDqPQExMTs9wuO+PGjVNSUtLJj4reHwhwpxtukO6+26zT0szlc3kh8Oefppvu1VfN5fz5pQ8+yPoOMbIqVy7rmYJjxzpbT7B89ZW9jatZs+jZNtGhg1S8uFl/+GHwzosE4H6WZf4dkEwI4+3AzY2LLzY/UyUCu3Pl7bArXdo+tsCtPB47gCKwy5nvllgCuzNLSJA+/dQOWWbPlh57zP/72b/fbOnfutVcvvxyM1wOzvLdFusbpgbS11/bv882axacxwDOkWsDuypVqsiyLKWnp2vLli0aNWqUHn/8cXXp0kXp6elBf/xHH31UKSkpJz+2bdsW9MfEORo/Xmrc2Ky3bjWt8gMGSPv25f4+LMucTXbhhdKiRfb1r74qXXppQMuNSEOG2L84TZoUmS/GXnjBXkdLd51kXmD37GnWR4+aABtAdPr1V/vFbYsWUrFiuf9a38PiN2xgAEFeZWSYIwok92+H9fK+6fnPP4E/bzhS0GHnn4suMkfjxPzvJe3TT0v/O8c8V1JSzICDlSvN5fLlGa7lFqEI7D7+2F537hycxwDOkWsDO6/Y2FhVqVJFjzzyiMaMGaMPP/zw5ECJnHg763LqoPNub82pA0+S4uPjlZiYmOUDLpc/v3l3zbfjadIkc4DojBln/+Vw927zj/Vtt5mpRJJptZ8/X+rbN2hlR5RSpaSHHzbrjAxz/l8kvZP+++/2Lw1VqkTf8BGmxQKQ7O46KW8vcny3xX7//TmXE5X++cceAOT2gRNe3sAuLU06dMjZWtyKwM5/7dpJL79sXx40yOyGOJuDB6X27aWffjKXy5SRFiyQzj8/OHXCP40b24NXvvrKbF8NJMuyA7v8+c1ZrIALuT6w89WmTRtJZqDEmSQkJKhcuXLasmWLMrKZZug9u+5sZ+EhDFWsKC1bZiaVFilirvvnH6lXL7PFNafJwLNnS/Xq2RPvJKl3b3OuQevWQS87ojzyiNS8uVn//bd0882RM1V0wgR7fffd0XeeYaNG9gStJUukLVucrQeAMz791F6fa2AXiZ3YoRBOAye8fAMoOiuzR2CXN3fcYe96yMiQunaV1q7N+fZHjkgdO9r//pQoYd6gZ0qoe8TGmnMKJbNtNdBv7qxYIXl30LVqxTZouFZYBXY7/vfLSZz30NozaN68uQ4fPqxvv/32tM/Nmzfv5G0QgWJjTZjy++9Sly729QsXmq2uI0ZIx46Z6/bvN4FS1672L0mlS5vDtKdOtafPIvfi4qR337Unp375pTRmjLM1BcLevfawhcKFTSdmtPF4snbZTZ/uXC0AnGFZ9jmeNWrkrbvrssvsNYFd3vgOdgq3DjspsrrvA8k3sPN2FyF3nn1W6tTJrFNTzdmau3effrtjx8wOia+/NpeLFTNhXb16oasVueO7LTbQ02J9ByexHRYu5rrAbuXKldluZd23b58e+99Bou18nrzJyclat26dkk95p65///6SpKFDh+r48eMnr1+wYIHmzZunq666SjVr1gzGtwC3qFDBnLP16adS5crmuuPHpZEjzZkXL71kArx33rG/5oYbpDVrom+rY6CVKyf93//ZZ4qMHJm77QluNnmyObtNMmFdtIa5N99sgjvJBJicQwRElz17THeKlPetY+XKSVWrmvWPPwZ+q1M0CMcOOwK7s6PDLu9iY6WZM81gG8kMkOvUyf73SrIH082fby4nJpo3lhs0CHm5yIW2be11MAO7jh0De99AALkusJs2bZoqVKigjh076s4779TDDz+sG2+8UZUrV9bKlSvVpUsX/fvf/z55+1deeUW1a9fWK6+8kuV+WrZsqb59+2rp0qVq2LChhgwZoltvvVUdOnRQYmKiXn/99VB/a3BKhw6mLX7IENP9JUkbN0r33GO/Q52UZLqFmAQbOC1a2J11liX9+9/BG8sebCdOSN5/YzweeyJxNDrvPHub+ObNdMcA0eaPP+x1tWp5vx/vtthjx+wD35F7vh12BHaRwxvY5ctnH+2C3EtIkD75xPyuIpk3BG65RcrMNL/L9ehhBz+FC5tziRs1cq5enFnp0vZ/n1Wrsr5RcS7++MMceyRJTZqEz7+hiEquC+y6du2qbt26adOmTZo+fbqef/55LVq0SFdeeaVmzpypWbNmKSYmd2W/8cYbeumll+TxePTSSy9p7ty56tixo3788UfVqVMnyN8JXCUhwUyOWr4869k5khnlvnp11s4hBMbDD5sDfSXzS2iPHuHZSfHBB/aLo06dpOrVna3Hab7bYr3bhAFEh0AHdhLBf174vnBlS2zk2LvX/FmyJL+T5lX58tLcuSaQk8w51UOGSDfdZA8ZKFTI3MZ3ez7cKRjTYn2nw7KrCi7nsSz2M+VGamqqkpKSlJKSwsTYcJeZac6nmz3bnFnQrx+/FAXTvn1me8Kff5rL998vPfecszX5w7LMu2/eKWKLFpnuwWh2+LBUtqyZ8peUJO3cKRUs6HRVAEJh9Ghp2DCz/vDDvJ/9s3Kl1LChWXfrJr3/fiCqix7t29udQnv2hMfugMWLpZYtzfqhh6RnnnG0HNexLBMkHTtmjmz59VenKwpvn38uXXed+b3fV4EC5rgchsqFh+++k664wqy7dpVmzTr3+2zRwj7D8LffpNq1z/0+EdWCmRW5rsMOCLqYGOn226XPPpP69yesC7bixc0LsXz5zOXnn5fmzHG2Jn98/70d1jVoYE/AjWYJCeaXJklKSTHbTwBEh0B12NWrZ3fAfPst52H6y9v1nS9f+Jx1RofdmR05Yg9FC5f/pm7Wrp308stZr8uf37zRQFgXPpo0MYNBJHMednr6ud1fcrK0dKlZ16jBZGC4HoEdgOC79FIT1Hn16SNt2uRcPf548UV7fe+9BLxet9xir996y7k6AITW5s322js4Ii/i4swLMcls79y27dzqijbeLbHly4fPzyXfEIrA7nRMiA28O+6Q7rvPrOPizBEn117rbE3wT2ys1KaNWaekSD/8cG73N3eu3XXZuXP4/PuJqEVgByA0Bg82Z9hJUmqq2QLlnbrqVn/+abZOS1KZMtKNNzpbj5s0by5VqmTW8+ZJu3Y5Ww+A0PB22JUqde6H4nu3OUmcY+ePY8fscCecDkv3DaF8wykYTIgNjueeM1Nhf/2VaaDhyvccu3OdFus7HZbz6xAGCOwAhIbHI02eLF1wgbm8cqX7p62+8or9Ltwdd0jx8c7W4yYxMVKvXmadkSHNnOlsPQCC79gxeyvmuWyH9WLwRN74DpzwTsMMB3Fx5pgMiQ677BDYBYfHY7bAck5Z+PLtijyXwO7IEfMms2Qm0DZtem51ASFAYAcgdIoUMdsRvAMKpkyRXnvN2ZpycuiQCRglc+bJwIHO1uNGvttimRYLRL6tW+11IAK7Jk3s7UgEdrnnDU2l8ArsJPscOwK70xHYAdkrU8YMsJOkFSvyvqtj/nx7d0+nTma7LeByBHYAQqtePWniRPvy4MFmcuy5HiIbaNOmmbMyJOmmm8w7cciqZk373clVq8wHgMgVqIETXkWLSnXrmvXKlWYCNc5u+3Z7Ha6B3cGDUlqas7W4zd699prADsjKd1vsF1/k7T7YDoswRGAHIPRuuUV68EH78gsvSB06SPv3O1eTr8xMacIE+/K99zpWiuvdequ9ZvgEENkCHdhJ9rbYjAzp558Dc5+Rzjewq1DBuTrygkmxOaPDDsjZuZ5jl5EhffKJWSckMCkYYYPADoAzxo+XXn/dnGkjSV9+abq11q93ti7JTJDyTrFt1Uq66CJn63Gz7t3NlmFJeucd93VKAgicYAR2DRrY640bA3OfkS4StsRKBHanIrADctakienKlsxrBn9/3/zuO/s51ratfTwP4HIEdgCcM3CgOU/C+4vphg3SpZee+wSoc/Xii/b6vvscKyMsFC9uzgGRpD177MN8AUSeYAR2Vatmf//IGR12kck3sPOdqAvAvMF/zTVmfeCAtGyZf1//8cf2unPnQFUFBB2BHQBnNW8u/fST3cWWmmq2xz77rGRZoa0lI0N6/HFp4UJz+fzzpfbtQ1tDOGL4BBAdvIFavnyBC4p8gz8Cu9zx7bArX965OvLCt3PMN6ACHXbA2eR1W6xl2efXxcaa1xlAmCCwA+C8KlWkb7+VbrjBXLYs6aGHzPlox46FpoaUFHMA7ZNP2tc9+qgUwz+TZ3XttXbXxIcfSuvWOVsPgMCzLDtQq1IlcNP1Kle2J8US2OWOt8OuTBn7SIJwQYddzryBXXy8OWMLQFbXXmuv/QnsfvtN2rzZrK+6yuwOAcIEr0QBuEPhwtKsWdLw4fZ106ebDrwdO4L72OvXm7Mx5s41l2NjzSCMPn2C+7iRIl8+s71Zkk6ckPr1M4M7AESOf/6xp7gGajusZMIJ7zlsBHZnl5Eh7dxp1uG2HVYisDsTb2BXsqQdYgOwlStnn3u6fLm0e3fuvo7psAhjBHYA3CMmRhoxQvrgA6lQIXPdjz9KjRpJM2YEJwSaO9ecm+cddlG8uDmH7d57+YXZH48+KlWvbtbffCNNmuRsPQACKxjn1516f3v3mmMRkLPdu01oJ4XfwAmJwC4nlpU1sAOQPd9tsePG5e74HN/z6wjsEGYI7AC4T5cuZppTpUrm8s6dUq9eUsOG0mefBeZsO8sy2187drRfIF54oTlPj1Hv/itYUJo82b48ZEjWc5YAhDffwM4bzgeKbwC4ZUtg7zvS+A6cILCLHIcOmQ51icAOOJOuXe31hAnS7befeWLs9u3md3tJql/fHOkAhBECOwDuVL++9PPPWd9J+/VXc1BsixbS99/n/b4PH5Z69DADJrzhX9euJiQMdOdINGnZ0vziJEkHD0qDB4d+cAiA4AhFh92pj4PThfOEWInALicMnABy5+KLpVdesXfBTJ1qpr56j2w41X//a6+ZDoswRGAHwL1KlTIddfPnS40b29cvWSJdfrn5wfvbb/7d55Yt5mtnzTKXPR5pzBjp/ffNOXo4N+PHm4PQJbMFYc4cZ+sBEBjBDOyqVs3+cXA6387lcOywi4+XihQxawI7m29gV6KEc3UA4WDwYOm99+yhO3Pnmt0x2U2eZjsswhyBHQD3a91aWrbMhGw1a9rXf/yx2cZ6223Stm329RkZ5pyfVaukL780wyuefdZMnm3c2HTqSeZFw8cfm047zqsLjGLFpJdfti/feae0f79z9QAIDN8gzTdgCwQ67HIv3DvsJLvLLrsX19GKDjvAP926mTOnExPN5WXLpCuvlLZutW+TkiItWmTWlSrZAyuAMEJgByA8eDxm2+ratWagQfny5vrMTNMOX6OGdNFFprsrf36pbFnzg7ltW+mWW0xY9+yz5lBzyQR/P/5ozrBDYHXtKnXqZNa7dpnz7ACEt82bzZ8lS9ovkAKFwC73wv0MO8kOpPbtswdoRDsCO8B/LVqYXTflypnL69ebXTTeN+Y//9w+G7JzZ96cR1gisAMQXuLipH79pI0bpaeekooWNdenpUmrV0t79px9mmzHjuaduFq1gl5uVPJ4pFdftbc9TZliv8MJIPwcO2ZvxQzGOZ+lS9uTwQnszsx3S2y4d9hZlv0mWrQjsAPypn59cwb1BReYyzt3Ss2aSYsXSx99ZN+O7bAIU3FOFwAAeVKokPTww1L//tLTT0sTJ0pHj5oOuzJlTIedd+17uWJFBkuEwnnnmf8ud9xhLvfvb97xLFjQ2boA+O/PP+0BMsH499PjMfe7Zo3ZzpSZKcXwnnK2vB12SUnhe+7qqYMnSpd2rha3ILAD8q5KFembb6TrrjNvyKemmh02sbHm88WKmRAPCEMEdgDCW7FiptPuySfNiz7a3d1jwADpnXekb7+VNm2SRo2Sxo1zuioA/grmwAnf+12zRjp+XNqxI3y3ewaTZdkdduH898Ok2NP5dhoS2AH+K1lSWrBA6t7dDKw7ftz+XIcOUr58ztUGnAPevgQQGWJiCOvcJiZGmjzZnuI1fry0cqWjJQHIg1AFdtk9Hmz79pntyRKBXaRhSixw7hISzDbY3r2zXt+5swPFAIFBYAcACJ7ataWhQ806I0Pq21dKT3e2JgD+IbBzh0iYECsR2GVn1y57TYcdkHf58klvvik9/rh54/iCC6R27ZyuCsgzAjsAQHA9/LBUt65Z//KLNGGCs/UA8E8oAruqVbN/PNh8B07QYRdZtm41f5YqZQ9gAZA3Ho80ZowZQLF6Nc8phDUCOwBAcOXPbybFercsP/EEL8iBcOJ9vsbFBS8oosPu7CKlw863g8x3K2i0Sksz5zZKWYNrAOemdGnOrkPYI7ADAARf06bSXXeZ9dGj0g03SPv3O1sTgLOzLDtAq1LFnroXaFWq2GsCu+z5BnZ02EWOv/6ypzD7Pg8AAFGPwA4AEBpjx9rdA6tWmaldhw45WxOAM0tOtp+nwdoOK5ktS+XKmfWWLcF7nHDGltjI5N0OK9FhBwDIgsAOABAahQtLn39uv1j7/nszucs79RCA+4Ti/LpT73/XLunIkeA+VjiKlC2xhQtL8fFmTWCXNaCmww4A4IPADgAQOhdcIH31lVS0qLm8YIF0443SiROOlgUgB04EdhJddtnxBnYFCkjFiztby7nweOw3bgjs6LADAOSIwA4AEFr160uffSYlJJjLH38s9ekjZWY6WxeA0zkV2HGO3em8W2LPO88e4hOuvIFdcrJ9flu0osMOAJADAjsAQOhddpkJ6vLnN5ffeUcaPJgXboDbhDKw8+0uIrDL6tAhKSXFrMN5O6yXN7BLT5cOHHC0FMf5dthVruxYGQAA9yGwAwA4o3VradYse+rkxInSI48Q2gFuQoedO0TKwAkv38ETycnO1eEG3g67cuXMdmcAAP6HwA4A4JxOnaS337a3dz3zjDRunLM1AbB5g7PixaWkpOA+FoFdznwHTkRaYLdjh3N1OO3oUWn3brPm/DoAwCkI7AAAzvr3v6XXX7cvP/649PLLztUDwDh+XNq2zayrVw/+45UrZ08PZehEVpEyIdarZk17vXatc3U4zXc7LOfXAQBOQWAHAHDegAHS+PH25bvvlqZNc6wcADJhgneLerC3w0pSTIzdZfTHH2yP9xVpW2IvvNBer17tXB1OY0IsAOAMCOwAAO7w4IPSE0/Yl2+/3WyRZXos4IxQnl936uP4bhVE5HXY1atnr6M5sGNCLADgDAjsAADuMXKk6a6TTFD38MNS587S/v2OlgVEJScDu1MfP9pF2hl2RYtKFSua9Zo10dtNSYcdAOAMCOwAAO7h8UgvvCANG2YPovjkE+nii6VffnG2NiDaOBHY+YYWBHY275bY2FipTBlnawkU77bYlJSsgWQ0ocMOAHAGBHYAAHeJiTGddp99JpUoYa7bulW6/HIznCJaOzGAUKPDzj28gVa5cia0iwScY2d32MXE2B2HAAD8D4EdAMCdrr1WWrFCatrUXD5+XLrjDunmm6VDh5ytDYgG3sAsLi502zAJ7E6Xlibt2WPWkbAd1ovAzu6wq1BByp/f2VoAAK5DYAcAcK+KFaWvv5buvde+buZM6dJLpd9+c6wsIOJZlh2YVa5sQrtQ8N0S67tdMJrt3GmvCewix8GD0t69Zs35dQCAbBDYAQDcLX9+c67drFlSkSLmut9/lxo3lmbMcLY2IFLt3WsCBSl022El8xwvVcqs6bAzIm1CrFetWnYQHI2Bne/ACc6vAwBkg8AOABAeunaVfv5Zuugic/nIEalXL+m226R//nG2NiDSOHF+3amP9/ff0rFjoX1sN/IOnJAiq8Muf36pZk2z/v136cQJZ+sJNSbEAgDOgsAOABA+ataUfvjBhHReU6ea619+WUpPd642IJK4IbCzLOnPP0P72G4UqR12kr0t9sQJacMGZ2sJNSbEAgDOgsAOABBeChaU/vMf6c037S2yBw5Id98tNWggLVjgZHVAZHBDYHdqHdHKN7CLpA47KbrPsfMN7OiwAwBkg8AOABCe+vQxHRm9e9vXrV0rXX211KVL1u1GAPzjZGDnG14Q2EXullgpugM7zrADAJwFgR0AIHyVLWu2xP7wgxlC4TVnjlS7tjR8uDnrDoB/6LBzD98Ou/LlnasjGHwDuzVrnKvDCd4Ou7i4yNvqDAAICAI7AED4a9LEhHZTp0plypjrjh2TRo0ykwjff9+chwUgd7xBWbFiUtGioX1s38DOd9tgtPIGdqVKSfHxztYSaJUrS4ULm3W0dthVrGhPywUAwAeBHQAgMsTEmO2xGzZIDz5ovwDatk3q0UNq1EiaNUvKyHC0TMD1jh83zxsp9N11ktn26X3+RnuHXUaGtHOnWUfadljJ/Ltdr55Zb9kiHTzobD2hsn+/lJJi1pxfBwDIAYEdACCyJCZK48ebbo22be3rly+Xunc3W2WnTJHS0pyrEXCzv/6SMjPN2onALjbWPtPrjz+iuzt2zx57+nWkbpv03Ra7dq1zdYSS7/l1BHYAgBwQ2AEAIlOtWtLnn0uffCJdcol9/caNUr9+Joh47rno6egAcsvJ8+tOfdyDB6W9e52pwQ0ieUKsl7fDToqebbG+W70ZOAEAyAGBHQAgcnk80nXXST/9JH31ldSqlf25HTvM1tnKlaVhw6R//nGuTsBNNm+2104HdlJ0b4v1nRAbDR120RLY0WEHAMgF1wV2f//9t1588UW1adNGlSpVUv78+VW2bFl16dJFy5Yty/X9LF68WB6PJ8ePH374IYjfBQDAVTwe6eqrpQULpGXLpH/9y/7c/v3S6NEmuLvnHunPP52rE3ADN3TY+YYY0RzYRUOHXTQGdnTYAQBywXUjiV5++WU9/fTTql69uq655hqVLl1aGzdu1EcffaSPPvpI7777rrp3757r+2vevLlatGhx2vXnReovPQCAM7v0UmnOHOn336VnnpFmzDBnRB09Kr30kvTaa1LPntKQIVm3agHRwg2BHR12hm+HXaT+7lqypFS2rLRrlwnsLMu8yRLJ6LADAOSC6wK7Sy+9VEuWLFGzZs2yXL906VK1bt1agwYN0vXXX6/4XI61b9GihUaMGBGESgEAYa12bWnqVGnkSHOW3eTJJrRLT5emTzcf110nPfywdOWVTlcLhI43IIuNlSpVcqYG38DOtxsp2vh22EXqlljJdNnt2mXOK9y1SypXzumKgsv7/3R8vAkrAQDIhuu2xN5www2nhXWS1KxZM7Vs2VL79u3T6mhplwcABF+lStKECWYy5vDhUvHi9uc+/VRq1swEdp9+ak/OBCKVZdmBXeXKUpxD7+3SYWdEw5ZYKeu22DVrnKsjFCzL7rCrXFmKcd3LMQCAS4TVT4h8+fJJkuL8+OVx48aNeumll/TUU0/p3XffVXJycrDKAwCEs5IlpREjzBl2L7wgVaxof+7bb6WOHaWLLjKddydOOFYmEFT79kmpqWbt1HZYSSpaVCpWzKyjObDzbolNTJSKFHG2lmCKpnPskpOlw4fNmvPrAABnEDaB3V9//aX58+erbNmyutD3h/pZzJw5U/fcc48effRR/fvf/1alSpU0fvz4s35dWlqaUlNTs3wAAKJA4cLSvfdKmzZJ06ZJderYn1u7VrrlFqlWLenDD02nBBBJ3HB+3amP/9df0RmSW5bdYRfJ22Gl6ArsOL8OAJBLYRHYnThxQr169VJaWpqeeeYZxcbGnvVrSpUqpfHjx+v333/X4cOH9ffff2vGjBkqXry4hgwZojfeeOOMXz9u3DglJSWd/Kjo22kBAIh8+fNLt95qXjx+/LF02WX25/74Q7rhBqlVK2nlSsdKdJxlmfOmjh51uhIEihsDu8xME9pFm/377edWJG+HlcwbI95BE5Ee2DEhFgCQS64P7DIzM3XbbbdpyZIl6tevn3r16pWrr6tbt64efPBB1apVS4UKFVL58uV100036YsvvlD+/Pk1fPhwZZ7hLKJHH31UKSkpJz+2bdsWqG8JABBOYmKkTp3MttglSyTfyeOLF0sXXyz17y/t3u1UhaGXmWlCzEsvNYfDFyki1a8v3XabmbK7bBkhXrhyU2Dn230UjdtifSfERnqHXcGC0vnnm/XatVJGhrP1BBMddgCAXHJ1YGdZlvr166cZM2bo5ptv1sSJE8/5PuvVq6cmTZpo9+7d2rRpU463i4+PV2JiYpYPAEAU83jMAIqFC8122OrVzfWWZSbM1qghPfOMlJbmbJ3BlJEhvf++1LCh1Lmz9PPP9vW//mqm7g4eLDVtakK8Bg2k2283Id6KFWwhDgduCuyiffBEtAyc8PJuiz12TNq82dlagokOOwBALrk2sMvMzNTtt9+uN998Uz179tS0adMUE6ApSiVLlpQkHTlyJCD3BwCIIh6PCavWrpXGjzeHwUvSwYPSww+brV1z5kRWOJWeboZt1Ksn9ehhwjmvunXNC+1Tj6vIyJBWrZLefNOEeBdfbP7edu4Maenwk1sDO9+QI1pEa2AnRfa2WDrsAAC55MrALjMzU3379tXUqVPVo0cPTZ8+PVfn1uVGenq6li9fLo/Ho0qVKgXkPgEAUSg+XnrwQWnjRrMl1vum0h9/SF26SC1bSr/84myN5+r4cWnKFOmCC8ywjXXr7M9deqn0ySfmhfWvv5rJot99J738stS7twn3Tn2j7b//NQHfjBmRFWhGEm9g5zul1SnR3mEXTVtipegJ7Lzhc6FCUqlSztYCAHA11wV23s66qVOnqlu3bpoxY8YZw7rk5GStW7dOycnJWa7//vvvZZ3yYiA9PV0PPfSQ/vzzT7Vt21bFixcPyvcAAIgipUtLb7whLV9uQjqvr7+WGjWSunaVfv/dufr8YVmmA27RItM9eP75Ur9+WcOSZs2kL7+UfvhBuu46+6D4QoXMYI477zRbY1evNl2H330nPf+8VKaMud3+/VKvXtL110s7doT+e0TOTpywhzs43V0nSZUqZQ3Co000d9itWeNcHcFkWdKff5p1lSr2v58AAGTDY52aajlsxIgRGjlypAoXLqx77rlHcXFxp92mc+fOatCgQZbbDx8+XCNGjDh5mypVqsjj8ejyyy9XhQoVdODAAS1ZskTr169XpUqVtGTJElWuXDnXdaWmpiopKUkpKSmcZwcAyJ5lmS6yBx7IegZTTIyZODt8uOTHzx7t3y999JH06afmvqtVMx/Vq5s/K1c202z9deKECUDWrTNh4rp19kdKSvZfc8010tCh0lVX+f94krR3r3T33dLMmfZ1RYtKEyaYAI8Xrs7bvNk++L9rV2nWLGfrkcyWwa1bTbffvn1OVxNa7dpJX3xh1v/8I/3vSJeIlZFhzr48elSqWVNav97pigJv506pfHmzbt9emjvX2XoAAOcsmFnR6WmYw7b+71yHQ4cOaezYsdnepkqVKicDu5wMGjRIX3zxhRYvXqzk5GTFxcXp/PPP1+OPP64HHnhAxZze5gEAiDwej+kca9dOmjRJGjPGTI/NzDRdZ++8Iw0cKD32mN1xdqrUVDOB9b33TCfbiRM5P15MjFSxoh3kVapkzps7eFA6dCj7Pw8elJKTze1y47rrpMcfN4MkzkWJEub779bN/B3s3i0dOGCCzFmzTJei94UsnOGm8+u8qlUzgd3+/eYjmn5/83bYxceb50+ki401Z4D+8ou0aZMJ7goWdLqqwOL8OgCAH1zXYedWdNgBAPx2+LA50+3pp0045VWokHTvvdJDD5kus0OHzHlw771nOmqcmjRbubJUu7ZUq5b5uPJKc+ZcoO3bJ91zjznLzqtoUenFF81ZeXTbOeONN0yYKkkTJ0oDBjhbj2S2ZE+ZYta//GKGl0SLYsXMvxvVqkX21FRfffpI06aZ9c8/S5dc4mg5ATdzpnTTTWY9frw5BxUAENaiqsMOAICIkZAgPfKICT6efdYEUkeOmI8nn5Ree82EYgsWmG6SU1WoIHXvbj7KljUdUN6PzZvtdW62CsbGmu1mRYpIxYubQRLeYK52bbMFrVChgP8VZKt4cTN1tls383eza5cJJnr3Nt12U6aY7xehtWKFvXZLh51vF9Iff0RPYHf4sB3yR8P5dV716tnr1asjL7Cjww4A4AcCOwAAgq1YMWnsWHOG29ixpnvpxAnzgvzTT7PetmxZE2R17y5dfnnWSatVqkitWp1+/wcOmDBj+3apQAGpcGETzPn+GR/vvs61Tp1MYHnvvSbAk8yZThdeKP3nP+bzCI0jR6T/+z+zLljQTAF2A9/g0DtdMxpE24RYr0ifFOv7/3CVKo6VAQAID66bEgsAQMQqU0Z66SVpwwbTTeYN40qVMlsRFy0yodtLL5kgKyaXP6aLFjWdR506SW3amKDvwgtNB0fJkibEc1tY51W8uPT222ZYh7erLjnZnAU4YIDpNELwffCBPXCke3cpKcnZerx8A7tomhQbbRNivSI9sKPDDgDgBwI7AABCrUoVM4Tir7+k5culHTuk11+XWrQwW1ejUceO5gV65872dZMmSQ0bSj/95FhZUWPyZHvdr59zdZwqWgO7aO2wK1vWHrARiYGdt8OuSJHoGqACAMgTAjsAAJxSoYIJpOI4oUKS6QacM8eER97z9DZuNB2DY8dKGRnO1hepfv9d+uYbs65d2/x9u0WJEibckKIrsIvWDjuPx+6y27XLdNtGiowM8yaNZLrr3Nr1DABwDQI7AADgHh6P1LevtHKl1LixuS49XRo61HQg+m4pQ2D4dtf17++uIMHjsbvstm6NntA2WgM7Keu22DVrnKsj0HbsMGeXSmyHBQDkCoEdAABwnxo1pG+/lZ54wj7L75tvpPr1pRkzJMtytr5IkZZmzhCUpPz5pV69nK0nO97ALj09a5AVyaJ1S6wUuefY+b7ZwMAJAEAuENgBAAB3ypdPGjVKWrLEfoGbmmpCpRtuMNtlcW4+/FDau9esu3Sxzw9zE99upGjZFusNJmNi7GEs0SJSAzvfCbF02AEAcoHADgAAuNsVV0irVkm33GJf99FHUp060t13S//841hpYe/U7bBu5Dt4wjf0iGTeDrty5aLvjMu6de11JAV2dNgBAPxEYAcAANwvMVF66y3pvfekMmXMdenp0ssvS+efL40bJx096myN4WbTJmnhQrOuUUNq3tzZenISbZNijx+Xdu8262jbDiuZISPeQGvNGikz09FyAoYOOwCAnwjsAABA+Oje3QRNw4fbk2RTU6XHHpNq1jShXrQMJjhXU6bY67593TVswle0BXY7d9pnNEbbwAkv77bYQ4ekP/90tpZAocMOAOAnAjsAABBeCheWRowwwV2/fvZQiu3bpd69pUsukb76yskK3e/ECWnaNLOOi5NuvdXRcs6ocmU7TIyGwC6aB054ReI5dt4Ou+LFTccwAABnQWAHAADCU7ly0qRJ0q+/StddZ1+/apXUpo3Utq20ebNz9bnZJ5/Y2y47d7a3GbtRgQJ2cLVhg9kyGsl8J+FGe4edFBmBne+EY7rrAAC5RGAHAADCW926JoBauNB013l9+aXUuLG0YIFztbnVpEn2ul8/5+rIrYsvNn/u3y+98IKztQQbgV3kBXbbttlb9Tm/DgCQSwR2AAAgMrRsKf34o/TOO2YbpWQCnrZtpZdess8Fi3Zbt5owUzLdPldf7WQ1uTN8uL31efRoE4BEKrbEmvMo8+Uz6zVrnK0lEDi/DgCQBwR2AAAgcsTESP/+t9km26GDuS4jQ7rnHtNJlpbmbH1u8Oabdnh5++12EOZmF18sDRpk1ocPSw884Gw9wUSHnQnratc26/Xrw38bNBNiAQB5EAa/oQEAAPgpMVH6+GPpkUfs6/7zH6l1a2nPHufqclp6ugnsJCk2VurTx9l6/DF6tFSqlFnPmhW5g0V8A7to7bCT7G2x6enSunXO1nKu6LADAOQBgR0AAIhMsbHSuHHSzJlmcIEkffut1KiRtHKlo6U55vPP7S2XHTqEVyBUrJj0zDP25TvvjMyOSe9/nxIl7P9vo1EknWNHhx0AIA8I7AAAQGTr2VNautQOp7Ztky6/3HRpRZvJk+11OAybONUtt5j/dpKZGBtpAygyM+3ALlq3w3rVq2evwz2w8+2w856vCQDAWRDYAQCAyNeokfTTT1KTJuby0aNS9+7SsGEmJIkGf/8tzZ1r1uedJ117rbP15EVMjPTqq1kHUPz1l7M1BdI//5gtoFJ4dT8Gg2+H3a+/OldHIHg77EqXlhISnK0FABA2COwAAEB0KFdOWrzYdGl5jR4tdekiHTvmWFkhM3WqHU7edpsUF+dsPXnVoIF0xx1mfeSIdP/9jpYTUAycsFWsKCUlmfXnn5vn6aZNztaUF2lp0o4dZs35dQAAPxDYAQCA6FGggDRtmvTcc3aX1kcfmSmykSwzU5oyxaw9HhPYhTPfARSzZ0vz5jlbT6AQ2Nk8HqlbN/vynDlSnTrSffdJ+/Y5V5e//vrLnsrM+XUAAD8Q2AEAgOji8ZiurM8+kwoWNNdNmmSGU0Sqr76S/vzTrNu2Df9ztIoWlcaPty/fdVdkDKDwnl8nsSVWkiZONOculi1rLp84Ib34olS9uvT88+Hx39x34AQddgAAPxDYAQCA6NS2rfTaa/blAQOk9eudqyeYfIdN9O/vXB2B1KuXdMUVZr1xowlwwh0ddlnFxkp9+5r/vsOG2QH7gQPSAw+YjrsPPrA72NzId+AEHXYAAD8Q2AEAgOjVu7d0661mfeiQ2YJ39KijJQXU8ePSs89KH39sLpcpI113nbM1BUqkDaA4elRasMC+TGBnK1xYGjnSBHe9e5suWUn64w/znG3WTFq2zNESc0SHHQAgjwjsAABAdHv1VdOpI0mrV0t33+1sPYHy2Wdm0uZDD9mTR/v3l/Llc7auQKpfXxo82KyPHjXnm4Wjo0el66+XfvzRXC5Xzmz7RFYVKpjhKb/8IrVqZV//7bdS06bS2287V1tO6LADAOQRgR0AAIhuCQnSrFlSoULm8pQp0owZztZ0LjZuNF10HTpIGzaY6zweE9YNHepsbcEwapRUurRZz5kjffGFs/X46+hRqXNnc86gJBUpYrZ5xsc7WparNWwozZ8vffKJVKuWff3gwfZZjW7h22FXqZJzdQAAwg6BHQAAQJ060uuv25cHDpTWrXOunrxITZWGDJHq1pXmzrWvv+IK6eefpTfekPLnd66+YAnnARTesO7LL83lwoVN4Hj55Y6WFRY8HhNMr14t3XKLue7QIalfP3edaeftsCtf3kypBgAglwjsAAAAJPOiv08fsz582JyNdeSIszXlRmamNG2aVLOmCa5OnDDXV6hgJt8uXSpdfLGjJQZdr17SlVea9aZNZgpur17S9OnSrl3O1paTY8ekf/0ra1g3bx5hnb/i4qSXX5YqVjSXv/pK+s9/nK3J68gRafdus+b8OgCAnwjsAAAAvF55xXSoSdKaNaZby82WLZMuu8wEjd5gID7ebH1dv17q2dM+oD+SeTzmLMLYWHN5926zrfmWW8x5cA0amO7D+fNNUOa0Y8dMZ928eeYynXXnJjEx6yTk++93xwAS3+25nF8HAPATgR0AAIBXoULmPLuEBHP5zTfdeZD9zp1mum3TpvagAkm64Qbp99/NxFTv9xAtLrpIWrhQ6tjx9O991SrTfXjNNVLx4lK7dtILL0i//Rb67ZM5hXVXXBHaOiJN27bSbbeZ9cGD5sxGp7fG+p5fR2AHAPATgR0AAICv2rWliRPty4MGmWDHDdLSpKeeMttffYPEunVN99js2dEdDFx1lfTf/0r79kmLF0uPPSY1apS1y/DoUROQ3X+/+XurXNmcezZ7tnTgQHDr826D9YZ1CQnS558T1gXKc8+ZreCS+TueOtXZepYssddsiQUA+MljWU6/9RQeUlNTlZSUpJSUFCUmJjpdDgAACLa+fe2zsOrUMZ1sTnWtWZaZiHn//dLmzfb1xYqZKakDB5qzvJC95GRpwQIT4nz5pfT339nfLjZWatJEuvZa07F1ySX2Ntszsayzbz0+dsx0QH7+ubmckGCCQ+/ZewiMzz4zE5Ils1V27VrpvPNCX8euXVL16uYcu3z5zPPWe84eACBiBDMrIrDLJQI7AACizNGjJrxZvdpcvuUWM9wh1GfC/fabdN999nACSYqJkQYMMGFdyZKhrSfcWZb5O503z3x8/XXOU2WLF5dKlJDS080wj5z+tCxzdmCBAlLBgtn/uWePORdRsjvrmjUL3fcdTfr0Mc9VyWx/njs39M/bu+4yZ2J61y+9FNrHBwCEBIGdCxDYAQAQhdatM1sqDx82lx98UHrmmdC8+D9wQBoxwrzoz8iwr2/eXJowQapfP/g1RIMjR8zWxXnzTMfbunXBfTzCuuDbv1+qV0/ascNcnjpV6t07dI+/ZYt0wQUmzE1IMN11ZcqE7vEBACFDYOcCBHYAAESp99+XbrzRPsD+iSdMZ1uwWJbpDhoyxGzl9KpUyZzR1aVLdEx+dcqff9rdd998Y0KXfPnMluOc/oyJMVtejx0znZm+f544Yd93sWLSRx+Zs/YQXHPnStddZ9ZJSWZrrPd8u2C79Vb7jMnHH5fGjAnN4wIAQo7AzgUI7AAAiGKTJ5upk15jx5qBBoG2dq0ZcrF0qX1dwYLSI49IDz1k1ggvGRl2gJeYKOXP73RF0cM3OOvQwZwDGeywe80aM7HYskxA+8cfUtGiwX1MAIBjgpkVMSUWAADgbPr1y3oG1eOPS88/H7j7P3LEBIANGmQN67p3N1s0hw0jrAtXsbFmW2TJkoR1ofbii1K5cmY9d640fXrwH3PoULsb95FHCOsAAHlGYAcAAJAbd91lzq/zeuAB6bXXzv1+P/tMqltXGjfODDGQzHTJefOk994zW2EB+K9YMemNN+zL99xjn2sXDD/8IH38sVmXLy/deWfwHgsAEPEI7AAAAHLroYekkSPty4MHS2++mbf72r5d6trVbNXbutVcly+fOSNv9WqpTZtzLheIeh07SjffbNYHDkgDB9odcIFkWVm3yQ8bJhUqFPjHAQBEDQI7AAAAfzzxhPToo/blvn2ld97J/denp5uterVrS7Nn29e3bCn9+qsZaMH2VyBwJkywp7R+8ol5/gY6tJs/X1q0yKzPP1+67bbA3j8AIOrEOV0AAABAWPF4zNCJo0dN8GZZ5nD7+HjTMXeqzEzp99+l77+XvvtOWrxY2rLF/nypUuY8vJtuYvorEAzFi5vBMZ06mctPP22er77dsufCsrKG+KNGmW5ZAADOAYEdAACAvzweE7KlpUmvv24mgfbsaUKA5s2lZctMOPf99+Zcq5SU7O+nf39zdl3x4qGtH4g2HTua5+qgQebyqFHm+RqIac+zZ0u//GLW9etLPXqc+30CAKIegR0AAEBeeDzSK69Ix45JU6eara7/+pfpqDvTdrt8+aTLLzdB3WWXha5eINoNHCgdP26GT0hm2nN8vBkgk1fp6WYyrNfYsVIMpw4BAM4dgR0AAEBexcSYrXbHjknvvms67U5VpowJ5i6/3Px5ySWcUQc45e67TWfskCHm8oMPSvnzmynQefH229L69WZ9xRVS+/aBqRMAEPUI7AAAAM5FbKx50R4fb0K7OnWyBnRVq3I2HeAmDz1kQrsnnjCX777bPH/79/fvfo4dk0aMsC+PG8dzHQAQMAR2AAAA5youzmyLnTrV6UoA5MbQoSa0GzPGXB4wwHTa9e6d+/uYOFHats2s27WTmjULeJkAgOjFAQsAAAAAos+oUabbzuu226SZM3P3tQcPmvPqvJ58MrC1AQCiHh12AAAAAKKPxyM9/bQZRDFhghkWc8stptOua9est83IkPbvl5KTzcfMmeZPSbrxRqlBg5CXDwCIbAR2AAAAAKKTxyO98ILZHjtxognmevaU3nora0C3b1/2059jY02nHgAAAUZgBwAAACB6eTzSq6+aTrs335TS06VPP83d1w4cKNWoEdz6AABRyXWB3d9//61Zs2bps88+07p167Rr1y4VL15cV1xxhYYMGaImTZrk+r4yMzP12muvadKkSdq4caMKFy6sli1bauzYsarBD1YAAAAAkhQTI02aJGVmStOm2dcnJkolS2b/UaWK1KWLUxUDACKcx7Ky6+12ziOPPKKnn35a1atXV/PmzVW6dGlt3LhRH330kSzL0rvvvqvu3bvn6r769++vyZMnq06dOurQoYN2796t9957TwUKFNB3332nOnXq5Lqu1NRUJSUlKSUlRYmJiXn99gAAAAC4lWVJf/4pxcdLJUqY8+wAAMhBMLMi1wV2c+bMUalSpdTslLHoS5cuVevWrVWkSBHt2LFD8fHxZ7yfRYsWqVWrVmrWrJm++uqrk7dfsGCBrrnmGjVr1kxf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", + "text/plain": [ + "" + ] + }, + "execution_count": 96, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Image(omsa.PROJ_DIR(\"demo_local\") / \"aoos_204_temp.png\")" + ] + }, + { + "cell_type": "code", + "execution_count": 100, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
bias:\n",
+       "  long_name: Bias or MSD\n",
+       "  name: Bias\n",
+       "  value: -0.8878410455767599\n",
+       "corr:\n",
+       "  long_name: Pearson product-moment correlation coefficient\n",
+       "  name: Correlation Coefficient\n",
+       "  value: 0.06920705857903918\n",
+       "descriptive:\n",
+       "  long_name: Max, Min, Mean, Standard Deviation\n",
+       "  name: Descriptive Statistics\n",
+       "  value:\n",
+       "  - 4.227032661437988\n",
+       "  - 2.051501989364624\n",
+       "  - 3.102297782897949\n",
+       "  - 0.6421294808387756\n",
+       "ioa:\n",
+       "  long_name: Index of Agreement (Willmott 1981)\n",
+       "  name: Index of Agreement\n",
+       "  value: 0.3597021219453842\n",
+       "mse:\n",
+       "  long_name: Mean Square Error (MSE)\n",
+       "  name: Mean Square Error\n",
+       "  value: 1.2352567365192588\n",
+       "mss:\n",
+       "  long_name: Murphy Skill Score (Murphy 1988)\n",
+       "  name: Murphy Skill Score\n",
+       "  value: -4.753303126266135\n",
+       "rmse:\n",
+       "  long_name: Root Mean Square Error (RMSE)\n",
+       "  name: RMSE\n",
+       "  value: 1.11142104376301\n",
+       "
\n" + ], + "text/latex": [ + "\\begin{Verbatim}[commandchars=\\\\\\{\\}]\n", + "\\PY{n+nt}{bias}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{long\\PYZus{}name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Bias}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{or}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{MSD}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Bias}\n", + "\\PY{+w}{ }\\PY{n+nt}{value}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{\\PYZhy{}0.8878410455767599}\n", + "\\PY{n+nt}{corr}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{long\\PYZus{}name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Pearson}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{product\\PYZhy{}moment}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{correlation}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{coefficient}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Correlation}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Coefficient}\n", + "\\PY{+w}{ }\\PY{n+nt}{value}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{0.06920705857903918}\n", + "\\PY{n+nt}{descriptive}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{long\\PYZus{}name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Max,}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Min,}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Mean,}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Standard}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Deviation}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Descriptive}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Statistics}\n", + "\\PY{+w}{ }\\PY{n+nt}{value}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{p+pIndicator}{\\PYZhy{}}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{4.227032661437988}\n", + "\\PY{+w}{ }\\PY{p+pIndicator}{\\PYZhy{}}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{2.051501989364624}\n", + "\\PY{+w}{ }\\PY{p+pIndicator}{\\PYZhy{}}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{3.102297782897949}\n", + "\\PY{+w}{ }\\PY{p+pIndicator}{\\PYZhy{}}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{0.6421294808387756}\n", + "\\PY{n+nt}{ioa}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{long\\PYZus{}name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Index}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{of}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Agreement}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{(Willmott}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{1981)}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Index}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{of}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Agreement}\n", + "\\PY{+w}{ }\\PY{n+nt}{value}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{0.3597021219453842}\n", + "\\PY{n+nt}{mse}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{long\\PYZus{}name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Mean}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Square}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Error}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{(MSE)}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Mean}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Square}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Error}\n", + "\\PY{+w}{ }\\PY{n+nt}{value}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{1.2352567365192588}\n", + "\\PY{n+nt}{mss}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{long\\PYZus{}name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Murphy}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Skill}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Score}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{(Murphy}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{1988)}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Murphy}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Skill}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Score}\n", + "\\PY{+w}{ }\\PY{n+nt}{value}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{\\PYZhy{}4.753303126266135}\n", + "\\PY{n+nt}{rmse}\\PY{p}{:}\n", + "\\PY{+w}{ }\\PY{n+nt}{long\\PYZus{}name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{Root}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Mean}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Square}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{Error}\\PY{l+lScalar+lScalarPlain}{ }\\PY{l+lScalar+lScalarPlain}{(RMSE)}\n", + "\\PY{+w}{ }\\PY{n+nt}{name}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{RMSE}\n", + "\\PY{+w}{ }\\PY{n+nt}{value}\\PY{p}{:}\\PY{+w}{ }\\PY{l+lScalar+lScalarPlain}{1.11142104376301}\n", + "\\end{Verbatim}\n" + ], + "text/plain": [ + "bias:\n", + " long_name: Bias or MSD\n", + " name: Bias\n", + " value: -0.8878410455767599\n", + "corr:\n", + " long_name: Pearson product-moment correlation coefficient\n", + " name: Correlation Coefficient\n", + " value: 0.06920705857903918\n", + "descriptive:\n", + " long_name: Max, Min, Mean, Standard Deviation\n", + " name: Descriptive Statistics\n", + " value:\n", + " - 4.227032661437988\n", + " - 2.051501989364624\n", + " - 3.102297782897949\n", + " - 0.6421294808387756\n", + "ioa:\n", + " long_name: Index of Agreement (Willmott 1981)\n", + " name: Index of Agreement\n", + " value: 0.3597021219453842\n", + "mse:\n", + " long_name: Mean Square Error (MSE)\n", + " name: Mean Square Error\n", + " value: 1.2352567365192588\n", + "mss:\n", + " long_name: Murphy Skill Score (Murphy 1988)\n", + " name: Murphy Skill Score\n", + " value: -4.753303126266135\n", + "rmse:\n", + " long_name: Root Mean Square Error (RMSE)\n", + " name: RMSE\n", + " value: 1.11142104376301" + ] + }, + "execution_count": 100, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Code(filename=omsa.PROJ_DIR(\"demo_local\") / \"stats_aoos_204_temp.yaml\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.10.8 ('omsa')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.8" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "393aad9b5b2237e40fb0b42a69b694739ba0baf65a287986ba8256fa5298c468" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/demo_cli.md b/docs/demo_cli.md deleted file mode 100644 index fd62cd6..0000000 --- a/docs/demo_cli.md +++ /dev/null @@ -1,141 +0,0 @@ ---- -jupytext: - text_representation: - extension: .md - format_name: myst - format_version: 0.13 - jupytext_version: 1.14.4 -kernelspec: - display_name: Python 3.10.8 ('omsa') - language: python - name: python3 ---- - -```{code-cell} ipython3 -import ocean_model_skill_assessor as omsa -from IPython.display import Code, Image -``` - -# Demo of `ocean-model-skill-assessor` with known data files - -This demo runs command line interface (CLI) commands only, which is accomplished in a Jupyter notebook by prefacing commands with `!`. To transfer these commands to a terminal window, remove the `!` but otherwise keep commands the same. - -More detailed docs about running with the CLI are [available](https://ocean-model-skill-assessor.readthedocs.io/en/latest/cli.html). - -There are three steps to follow for a set of model-data validation, which is for one variable: -1. Make a catalog for your model output. -2. Make a catalog for your data. -3. Run the comparison. - -These steps will save files into a user application directory cache. - -## Make model catalog - -Set up a catalog file for your model output. The user can input necessary keyword arguments – through `kwargs_open` – so that `xarray` will be able to read in the model output. Generally it is good to use `skip_entry_metadata` when using the `make_catalog` command for model output since we are using only one model and the entry metadata is aimed at being able to compare datasets. - -In the following command, -* `make_catalog` is the function being run from OMSA -* `demo_local` is the name of the project which will be used as the subdirectory name -* `local` is the type of catalog to choose when making a catalog for the model output regardless of where the model output is stored -* "model" is the catalog name which will be used for the file name and in the catalog itself -* Specific `kwargs` to be input to the catalog command are - * `filenames` which is a string describing where the model output can be found. If the model output is available through a sequence of filenames instead of a single server address, represent them with a single `glob`-style statement, for example, "/filepath/filenameprefix_*.nc". - * `skip_entry_metadata` use this when running `make_catalog` for model output -* `kwargs_open` all keywords required for `xr.open_dataset` or `xr.open_mfdataset` to successfully read your model output. - -```{code-cell} ipython3 -!omsa make_catalog --project_name demo_local --catalog_type local --catalog_name model --kwargs filenames=https://www.ncei.noaa.gov/thredds/dodsC/model-ciofs-agg/Aggregated_CIOFS_Fields_Forecast_best.ncd skip_entry_metadata=True --kwargs_open drop_variables=ocean_time -``` - -```{code-cell} ipython3 -Code(filename=omsa.CAT_PATH("model", "demo_local")) -``` - -## Make data catalog - -Set up a catalog of the datasets with which you want to compare your model output. In this example, we use only known data file locations to create our catalog. - -In this step, we use the same `project_name` as in the previous step so as to put the resulting catalog file in the same subdirectory, we create a catalog of type "local" since we have known data locations, we call this catalog file "local", input the filenames as a list in quotes (this specific syntax is necessary for inputting a list in through the command line interface), and we input any keyword arguments necessary for reading the datasets. - -In the following command: -* `make_catalog` is the function being run from OMSA -* `demo_local` is the name of the project which will be used as the subdirectory name -* `local` is the type of catalog to choose when making a catalog for the known data files -* "local" is the catalog name which will be used for the file name and in the catalog itself -* Specific `kwargs` to be input to the catalog command are - * `filenames` which is a string or a list of strings pointing to where the data files can be found. If you are using a list, the syntax for the command line interface is `filenames="[file1,file2]"`. -* `kwargs_open` all keywords required for `xr.open_dataset` or `xr.open_mfdataset` or `pandas.open_csv`, or whatever method will ultimately be used to successfully read your model output. These must be applicable to all datasets represted by `filenames`. If they are not, run this command multiple times, one for each set of filenames and `kwargs_open` that match. - -```{code-cell} ipython3 -!omsa make_catalog --project_name demo_local --catalog_type local --catalog_name local --kwargs filenames="[https://erddap.sensors.axds.co/erddap/tabledap/noaa_nos_co_ops_9455500.csvp?time%2Clatitude%2Clongitude%2Cz%2Csea_water_temperature&time%3E=2022-01-01T00%3A00%3A00Z&time%3C=2022-01-06T00%3A00%3A00Z,https://erddap.sensors.axds.co/erddap/tabledap/aoos_204.csvp?time%2Clatitude%2Clongitude%2Cz%2Csea_water_temperature&time%3E=2022-01-01T00%3A00%3A00Z&time%3C=2022-01-06T00%3A00%3A00Z]" --kwargs_open blocksize=None -``` - -```{code-cell} ipython3 -Code(filename=omsa.CAT_PATH("local", "demo_local")) -``` - -## Run comparison - -Now that the model output and dataset catalogs are prepared, we can run the comparison of the two. - -In this step, we use the same `project_name` as the other steps so as to keep all files in the same subdirectory. We input the data catalog name under `catalog_names` and the model catalog name under `model_name`. - -At this point we need to select a single variable to compare between the model and datasets, and this requires a little extra input. Because we don't know anything about the format of any given input data file, variables will be interpreted with some flexibility in the form of a set of regular expressions. In the present case, we will compare the water temperature between the model and the datasets (the model output and datasets selected for our catalogs should contain the variable we want to compare). Several sets of regular expressions, called "vocabularies", are available with the package to be used for this purpose, and in this case we will use one called "general" which should match many commonly-used variable names. "general" is selected under `vocab_names`, and the particular key from the general vocabulary that we are comparing is selected with `key`. - -See the vocabulary here. - -```{code-cell} ipython3 -Code(filename=omsa.VOCAB_PATH("general")) -``` - -In the following command: -* `run` is the function being run from OMSA -* `demo_local` is the name of the project which will be used as the subdirectory name -* `catalog_names` are the names of any catalogs with datasets to include in the comparison. In this case we have just one called "local" -* `model_name` is the name of the model catalog we previously created -* `vocab_names` are the names of the vocabularies to use for interpreting which variable to compare from the model output and datasets. If multiple are input, they are combined together. The variable nicknames need to match in the vocabularies to be interpreted together. -* `key` is the nickname or alias of the variable as given in the input vocabulary - -```{code-cell} ipython3 -!omsa run --project_name demo_local --catalog_names local --model_name model --vocab_names general --key temp -``` - -## Look at results - -Now we can look at the results from our comparison! You can find the location of the resultant files printed at the end of the `run` command output above. Or you can find the path to the project directory while in Python with: - -```{code-cell} ipython3 -omsa.PROJ_DIR("demo_local") -``` - -Or you can use a command: - -```{code-cell} ipython3 -!omsa proj_path --project_name demo_local -``` - -Here we know the names of the files so show them inline: - -```{code-cell} ipython3 -Image(omsa.PROJ_DIR("demo_local") / "map.png") -``` - -```{code-cell} ipython3 -Image(omsa.PROJ_DIR("demo_local") / "noaa_nos_co_ops_9455500_temp.png") -``` - -```{code-cell} ipython3 -Code(filename=omsa.PROJ_DIR("demo_local") / "stats_noaa_nos_co_ops_9455500.yaml") -``` - -```{code-cell} ipython3 -Image(omsa.PROJ_DIR("demo_local") / "aoos_204_temp.png") -``` - -```{code-cell} ipython3 -Code(filename=omsa.PROJ_DIR("demo_local") / "stats_aoos_204.yaml") -``` - -```{code-cell} ipython3 - -``` diff --git a/docs/demo_erddap_cli.md b/docs/demo_erddap_cli.md deleted file mode 100644 index 965c81d..0000000 --- a/docs/demo_erddap_cli.md +++ /dev/null @@ -1,113 +0,0 @@ ---- -jupytext: - text_representation: - extension: .md - format_name: myst - format_version: 0.13 - jupytext_version: 1.14.4 -kernelspec: - display_name: Python 3.10.8 ('omsa') - language: python - name: python3 ---- - -```{code-cell} ipython3 -import ocean_model_skill_assessor as omsa -from IPython.display import Code, Image -``` - -# Demo of `ocean-model-skill-assessor` with `intake-erddap` - -This demo runs command line interface (CLI) commands only, which is accomplished in a Jupyter notebook by prefacing commands with `!`. To transfer these commands to a terminal window, remove the `!` but otherwise keep commands the same. - -More detailed docs about running with the CLI are [available](https://ocean-model-skill-assessor.readthedocs.io/en/latest/cli.html). - -There are three steps to follow for a set of model-data validation, which is for one variable: -1. Make a catalog for your model output. -2. Make a catalog for your data. -3. Run the comparison. - -These steps will save files into a user application directory cache. - -## Make model catalog - -Set up a catalog file for your model output. The user can input necessary keyword arguments – through `kwargs_open` – so that `xarray` will be able to read in the model output. Generally it is good to use `skip_entry_metadata` when using the `make_catalog` command for model output since we are using only one model and the entry metadata is aimed at being able to compare datasets. - -In the following command, -* `make_catalog` is the function being run from OMSA -* `demo_erddap` is the name of the project which will be used as the subdirectory name -* `local` is the type of catalog to choose when making a catalog for the model output regardless of where the model output is stored -* "model" is the catalog name which will be used for the file name and in the catalog itself -* Specific `kwargs` to be input to the catalog command are - * `filenames` which is a string describing where the model output can be found. If the model output is available through a sequence of filenames instead of a single server address, represent them with a single `glob`-style statement, for example, "/filepath/filenameprefix_*.nc". - * `skip_entry_metadata` use this when running `make_catalog` for model output -* `kwargs_open` all keywords required for `xr.open_dataset` or `xr.open_mfdataset` to successfully read your model output. - -```{code-cell} ipython3 -!omsa make_catalog --project_name demo_erddap --catalog_type local --catalog_name model --kwargs filenames=https://www.ncei.noaa.gov/thredds/dodsC/model-ciofs-agg/Aggregated_CIOFS_Fields_Forecast_best.ncd skip_entry_metadata=True --kwargs_open drop_variables=ocean_time -``` - -```{code-cell} ipython3 -Code(filename=omsa.CAT_PATH("model", "demo_erddap")) -``` - -## Make data catalog - -Set up a catalog of the datasets with which you want to compare your model output. In this example, we search on an ERDDAP server to create our catalog. - -In this step, we use the same `project_name` as in the previous step so as to put the resulting catalog file in the same subdirectory, we create a catalog of type "erddap" to search an ERDDAP server, we call this catalog file "erddap", we input the address for the ERDDAP server we're using, we search by "standard_name" on the server for variables that match with the variable nickname "temp" which can be found in the vocabulary "standard_names", the spatial extent to search is determined by checking the model in the model catalog, and a specific time range is chosen. - -In the following command: -* `make_catalog` is the function being run from OMSA -* `demo_erddap` is the name of the project which will be used as the subdirectory name -* `erddap` is the type of catalog to choose when making a catalog from an ERDDAP server search -* "erddap" is the catalog name which will be used for the file name and in the catalog itself -* `vocab_name`: Name of the pre-defined vocabulary that provides regular expressions to match dataset variables to the nickname that they represent. -* Specific `kwargs` to be input to the catalog command are - * `server` which is the location of the ERDDAP server. - * `category_search`: "[standard_name,temp]" means to compare the variable nickname "temp" with the category of "standard_name" through the regular expressions defined in the vocabulary in `vocab_name` -* `kwargs_search` any keywords to narrow the search by, in this case: - * `model_name` points to the model catalog we made in a previous step so that it can be read in and used to determine the spatial bounding box - * we narrow the time range with `min_time` and `max_time`. - * `search_for`: in this case we remove entries with the text "(HADS)" which are on land - * search_for="-(HADS)" query_type="intersection" - - - max_lat: 61.524627675 - max_lon: -148.92540748154363 - max_time: 2022-1-6 - min_lat: 56.7415606875 - min_lon: -156.48488313881575 - -```{code-cell} ipython3 -!omsa make_catalog --project_name demo_erddap --catalog_type erddap --catalog_name erddap --vocab_name standard_names --kwargs server=https://erddap.sensors.ioos.us/erddap category_search="[standard_name,temp]" --kwargs_search min_lon=-156.5 min_lat=56.75 max_lat=61.5 max_lon=148.9 min_time=2022-1-1 max_time=2022-1-6 -``` - -## Run comparison - -Now that the model output and dataset catalogs are prepared, we can run the comparison of the two. - -In this step, we use the same `project_name` as the other steps so as to keep all files in the same subdirectory. We input the data catalog name under `catalog_names` and the model catalog name under `model_name`. - -At this point we need to select a single variable to compare between the model and datasets, and this requires a little extra input. We do know the format of the data coming from the ERDDAP server because it is standardized, but the model output does not necessarily have variables tagged with standard_names to match. Accordingly, variables will be interpreted with some flexibility in the form of a set of regular expressions. In the present case, we will compare the water temperature between the model and the datasets (the model output and datasets selected for our catalogs should contain the variable we want to compare). Several sets of regular expressions, called "vocabularies", are available with the package to be used for this purpose, and in this case we will use one called "standard_names" (for standard names in the ERDDAP datasets) and "general" which should match many commonly-used variable names. "general" is selected under `vocab_names`, and the particular key from the general vocabulary that we are comparing is selected with `key`. - -See the vocabulary here: - -```{code-cell} ipython3 -Code(filename=omsa.VOCAB_PATH("general")) -``` - -In the following command: -* `run` is the function being run from OMSA -* `demo_erddap` is the name of the project which will be used as the subdirectory name -* `catalog_names` are the names of any catalogs with datasets to include in the comparison. In this case we have just one called "erddap" -* `model_name` is the name of the model catalog we previously created -* `vocab_names` are the names of the vocabularies to use for interpreting which variable to compare from the model output and datasets. If multiple are input, they are combined together. The variable nicknames need to match in the vocabularies to be interpreted together. -* `key` is the nickname or alias of the variable as given in the input vocabulary -* `ndatasets` sets the max number of datasets per catalog to use in the comparison. Here we will just use 3. - -Note that many of these datasets seem to be on land and therefore may not be able to be compared with the model output. - -```{code-cell} ipython3 -!omsa run --project_name demo_erddap --catalog_names erddap --model_name model --vocab_names general --key temp --ndatasets 3 -``` diff --git a/docs/developer.md b/docs/developer.md new file mode 100644 index 0000000..e566e51 --- /dev/null +++ b/docs/developer.md @@ -0,0 +1,26 @@ +# Developer documentation + +## Updating docs + +The demo notebooks are compiled by ReadTheDocs with Myst-NB and jupytext. These packages allow for a 1-1 mapping between a Jupyter notebook and a markdown file that can be interpreted for compilation. The markdown version of each demo is what is git-tracked because changes can be tracked better in that format. + +The steps for updating demo pages: +1. If you don't already have a notebook version of the demo you want to update, convert from markdown to notebook with `jupytext [filename].md --to ipynb`. +2. Update notebook. +3. Convert to markdown with `jupytext [filename].ipynb --to myst`. +4. Git commit and push the markdown file. + + +## Vocab demo page + +The docs page ["How to make and work with vocabularies"](https://ocean-model-skill-assessor.readthedocs.io/en/latest/add_vocab.html) is set up differently from the other pages because it contains a widget. Most of the page is an ipython notebook that has been converted to markdown with `Myst-NB`, but the final cell in the page is a raw .html file. One can save the widget state in Jupyter lab under "Settings > Save widget state automatically". It is supposed to be possible to then present the basic widget state with Sphinx but I was not able to get it to work with this setup. However, I was able to export from the "vocab_widget.ipynb" notebook to html and have that properly retain the widget state. As a workaround, then, I embedded the html version of "vocab_widget" in add_vocab.md. Hopefully it will not need to be changed often. That is also why a .ipynb file is saved for the "vocab_widget" demo. + + +## Roadmap + +Next steps: + +* Extend to be able to compare model output with other dataset types: + * time series at other depths than surface + * gliders + * 2D surface fields and other depth slices diff --git a/docs/environment.yml b/docs/environment.yml index 3f4917a..7116094 100644 --- a/docs/environment.yml +++ b/docs/environment.yml @@ -3,7 +3,7 @@ channels: - conda-forge - defaults dependencies: - - python=3.8 + - python=3.9 # If your docs code examples depend on other packages add them here - aiohttp - cartopy @@ -11,7 +11,7 @@ dependencies: - cf_xarray - extract_model - intake - - intake-axds + # - intake-axds - intake-erddap - intake-xarray - numpy diff --git a/docs/examples/ciofs.ipynb b/docs/examples/ciofs.ipynb new file mode 100644 index 0000000..16d7121 --- /dev/null +++ b/docs/examples/ciofs.ipynb @@ -0,0 +1,310 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# CIOFS" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import ocean_model_skill_assessor as omsa" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Set up model and data catalogs. " + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "project_name = \"ciofs_ncei\"\n", + "# compare sea water temperature\n", + "key = \"temp\"\n", + "\n", + "# model set up\n", + "loc = \"https://www.ncei.noaa.gov/thredds/dodsC/model-ciofs-agg/Aggregated_CIOFS_Fields_Forecast_best.ncd\"\n", + "model_name = \"model\"\n", + "kwargs_open = dict(drop_variables=[\"ocean_time\"])\n", + "\n", + "# data catalog set up\n", + "catalog_name = \"erddap\"\n", + "kwargs = dict(server=\"https://erddap.sensors.ioos.us/erddap\", category_search=[\"standard_name\", key])\n", + "kwargs_search = dict(min_time=\"2020-6-1\", max_time=\"2020-6-5\", max_lat=61.5, max_lon=-149, \n", + " min_lat=56.8, min_lon=-156)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-26 16:00:49,939] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:369} INFO - Catalog saved to /Users/kthyng/Library/Caches/ocean-model-skill-assessor/ciofs_ncei/model.yaml with 1 entries.\n" + ] + } + ], + "source": [ + "# set up model catalog\n", + "cat_model = omsa.make_catalog(project_name=project_name, \n", + " catalog_type=\"local\", \n", + " catalog_name=model_name, \n", + " kwargs=dict(filenames=loc, skip_entry_metadata=True),\n", + " kwargs_open=kwargs_open,\n", + " save_cat=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-26 16:00:55,018] {/Users/kthyng/projects/intake-erddap/intake_erddap/erddap_cat.py:246} WARNING - search https://erddap.sensors.ioos.us/erddap/search/advanced.csv?page=1&itemsPerPage=100000&protocol=tabledap&cdm_data_type=(ANY)&institution=(ANY)&ioos_category=(ANY)&keywords=(ANY)&long_name=(ANY)&standard_name=sea_surface_temperature&variableName=(ANY)&minLon=-156&maxLon=-149&minLat=56.8&maxLat=61.5&minTime=1590969600.0&maxTime=1591315200.0 returned HTTP 404\n", + "[2023-01-26 16:00:57,006] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:369} INFO - Catalog saved to /Users/kthyng/Library/Caches/ocean-model-skill-assessor/ciofs_ncei/erddap.yaml with 42 entries.\n" + ] + } + ], + "source": [ + "# set up data catalog\n", + "cat_data = omsa.make_catalog(project_name=project_name, \n", + " catalog_type=\"erddap\", \n", + " catalog_name=catalog_name, \n", + " kwargs=kwargs,\n", + " save_cat=True,\n", + " kwargs_search=kwargs_search,\n", + " vocab=\"standard_names\")" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Plot discovered data locations\n", + "omsa.plot.map.plot_cat_on_map(catalog=catalog_name, project_name=project_name)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The image shows a map of the Cook Inlet area with black dots with numbered labels showing data locations." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Plot first 3 datasets in the data catalog." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-26 16:01:16,445] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:432} INFO - Note that we are using 3 datasets of 42 datasets. This might take awhile.\n", + "[2023-01-26 16:01:27,333] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'u' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n", + "[2023-01-26 16:01:27,334] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'v' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n", + "[2023-01-26 16:01:27,335] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'w' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n", + "[2023-01-26 16:01:27,337] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'temp' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n", + "[2023-01-26 16:01:27,338] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'salt' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n", + "[2023-01-26 16:01:27,340] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'Pair' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n", + "[2023-01-26 16:01:27,341] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'Uwind' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n", + "[2023-01-26 16:01:27,342] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/warnings.py:109} WARNING - /Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/xarray/conventions.py:523: SerializationWarning: variable 'Vwind' has multiple fill values {0.0, 1e+37}, decoding all values to NaN.\n", + " new_vars[k] = decode_cf_variable(\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 0%| | 0/1 [00:00.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-26 16:03:14,200] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:478} INFO - \n", + "source name: aoos_204 (0 of 3 for catalog .\n", + "[2023-01-26 16:03:21,807] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:521} WARNING - Error {\n", + " code=404;\n", + " message=\"Not Found: HTTP status code=404 java.io.FileNotFoundException: https://erddap.sensors.axds.co/erddap/tabledap/aoos_204.nccsv?&time%3C=1591315200.0&time%3E=1590969600.0\n", + "(Error {\n", + " code=404;\n", + " message=\\\"Not Found: Your query produced no matching results. (nRows = 0)\\\";\n", + "})\";\n", + "}\n", + "\n", + "[2023-01-26 16:03:21,808] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:523} WARNING - Data cannot be loaded for dataset aoos_204. Skipping dataset.\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-26 16:03:21,811] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:478} INFO - \n", + "source name: edu_oregonstate_burkolator (1 of 3 for catalog .\n", + "[2023-01-26 16:03:21,823] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:490} WARNING - Dataset edu_oregonstate_burkolator at lon -149.4428, lat 60.0992 not located within model domain. Skipping dataset.\n", + "\n", + "[2023-01-26 16:03:21,824] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:478} INFO - \n", + "source name: edu_ucsd_cdip_236 (2 of 3 for catalog .\n", + "[2023-01-26 16:03:25,095] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:546} WARNING - Dataset edu_ucsd_cdip_236 had a timezone UTC which is being removed. Make sure the timezone matches the model output.\n", + "[2023-01-26 16:05:42,517] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:659} INFO - Plotted time series for edu_ucsd_cdip_236\n", + ".\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "3it [02:28, 49.44s/it]\n", + "100%|██████████| 1/1 [02:28<00:00, 148.50s/it]\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-26 16:05:56,722] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:674} INFO - Finished analysis. Find plots, stats summaries, and log in /Users/kthyng/Library/Caches/ocean-model-skill-assessor/ciofs_ncei.\n" + ] + }, + { + "data": { + "image/png": "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wQGnTp3ChAkTULhwYdy8eRNxcXFo3rw5Tpw4IY2yqauEhASpiWZWNYfVsLKyws6dO7Fx40bUr18fcXFxuHr1KpRKJZo2bZqmqZpCocCGDRuwfv161KpVC8+fP8eNGzdQsGBBBAQE4NKlS1I3AKbG19cXV69eRd++fWFvb49r167B3t4e/fr1w9WrV6W+gnQh13X4rty5c+PMmTOYNGkSSpYsiTt37uDhw4fStbF3715YW1trbVOgQAGcOXMGbdq0gaWlJQIDA2FtbY2JEydi//79MDc3z5JYs/ueIicYN24cxo4dC39/f8TExODKlSuIjY1FnTp1sH79ehw8eDDN+dDnXslQWXHumjdvjn/++QcdO3aEQqHAlStXYGdnh+7du+PixYsGd1eR1XQ5d/rcq2Wl5ORkhIeHSw9N8734+Hit+emNFJ16uaZP08TERK35ujThnD59Ojp06AAvLy88evQIly5dghAC9evXx4oVK3Dq1Cm4ubkZ58BlpM99TL58+XDmzBksWbIEtWvXRnh4OC5fvozXr1+jcuXKmDhxIo4ePWrUOLt3744TJ06gWbNmiI2Nxc2bN1GkSBFMmDABJ0+e1HlE94IFC+Lq1asYP348KlSogKioKFy/fh3W1tZo0qQJtm/fjuXLlxv1GL799lts27YNVapUQUREBO7fv49atWrh5MmTOo+YPHfuXHz11VcoW7YsXr58iStXrgBQd/+xe/fudJv1b9q0CT179oSjoyMuXryIv//+O9N9Bn/Iu9eapquat2/fas039QF7iN6lEJpv1UT0yShUqBAePnyIoKAgFCpUSO5wiIiIiIiIiCgV1rAjIiIiIiIiIiIyIUzYERERERERERERmZCs6YyFPinDhg3D5cuXM7VuhQoVsHDhwiyOKPt8KseuS78WvXv3Ru/evbMwGiIiIiIiIqKPGxN2ZLBr167h1KlTmVo3qzrslsuncuyZPUYAaNCgQRZGQkRERERERPTx46ATREREREREREREJoR92BEREREREREREZmQnNtGL5upVCo8ffoUDg4OUCgUcodDREREREREREQyEkLg9evXyJ8/P5RK49aJY8Iuk54+fQovLy+5wyAiIiIiIiIiIhPy+PFjeHp6GrVMJuwyycHBAYD6JDg6OsocDRERERERERERySk6OhpeXl5SzsiYmLDLJE0zWEdHRybs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PcPu3bu1arANGTIEJUuWxOeff44SJUpgyZIlAID8+fPj1KlTSE5ORuPGjeHr64uvvvoKTk5OUCo//NLr0qULbt68CQ8PD61+5pRKJbZs2YKLFy/C19cXI0aMwKxZs7S2NTc3x4IFC7Bs2TLkz58fLVu21Pv4iYiIiIiIiIgkmhp2H+hOzBAKoenIi94rOjoaTk5OiIqKkkYq1YiLi0NQUBAKFy7MUUOJrwciIiIiIiKij1VsLODoCCQlIbpkSTjdupVurshQrGFHRERERERERESUGf/+CyQlqacrVsyy3TBhR0RERERERERElBmpB5yoUCHLdsOEHRERERERERERUWakHnCCCTsiIiIiIiIiIiKZaWrYmZsDvr5Zthsm7IiIiIiIiIiIiD4kJga4dUs9XaYMkIUDTTJhR0RERERERERE9CFXrgAqlXra3z9Ld8WEHRERERERERER0Yek7r/Ozy9Ld8WEHRERERERERER0YekHiGWCTsiIiIiIiIiIiKZaRJ2VlZA6dJZuism7Chb1K1bF19//XWm11+7di1y5cqVZfEQEREREREREWVaVBRw5456ulw5wNIyS3fHhB0REREREREREdH7XLqUMp3FA04ATNgRERERERERERG9XzYOOAEwYffJq1u3LoYNG4avv/4azs7OyJMnD5YvX443b96gV69ecHBwQNGiRbFv3z5pm7///huVK1eGlZUV8uXLh7FjxyIpKUla/ubNG3Tv3h329vbIly8f5syZk2a/CQkJGD16NDw8PGBnZ4cqVarg2LFj2XHIRERERERERES6ycYBJwAm7AjAunXr4ObmhvPnz2PYsGEYNGgQ2rVrh+rVq+PSpUto3LgxunXrhrdv3yIkJARNmzaFv78/rl69iqVLl2LVqlWYMmWKVF5AQACOHj2KnTt34uDBgzh27BguXryotc9evXrh1KlT2LJlC/7991+0a9cOn3/+Oe7evZvdh09ERERERERE9H6ahJ2tLeDjk+W7UwghRJbv5SMQHR0NJycnREVFwdHRUWtZXFwcgoKCULhwYVhbW6cs8PMDQkOzOVIAefNqZ37fo27dukhOTsaJEycAAMnJyXByckKbNm2wfv16AEBoaCjy5cuHM2fO4I8//sD27dtx69YtKBQKAMCSJUswZswYREVF4e3bt3B1dcX69evRoUMHAMCrV6/g6emJ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ERERERF9qlKPEMsadp+wWbOApk3V0xERQPPm6r9ERERERERERJS9NDXsLCyAMmXkjSUVJuyym5kZsHmzuiNDQF3Drl07IDFR3riIiIiIiIiIiD4lMTEpA06UKQNYWckbTypM2MnB0RH44w8gd271/0eOAMOHA0LIGxcRERERERER0afiypWUXIwJ9V8HMGEnn0KFgJ07AUtL9f8//wwsXChrSEREREREREREnwwT7b8OYMJOXjVqACtXpvw/YgSwf7988RARERERERERfSpMdIRYgAk7+XXrBnz7rXpapQJ69VK3oSYiIiIiIiIioqyjqWFnaZky1oCJYMLOFEyZkjJybGgoMGeOvPEQEREREREREX3MXr8Gbt9WT5vYgBMAE3amQakE5s0DzM3V/8+cCTx7JmtIREREREREREQfrcuXUwacMLH+6wAm7ExH8eLAoEHq6bdvgfHj5Y2HiIiIiIiIiOhjZcL91wFM2JmWH38EHB3V06tWATduyBsPEREREREREdHHyIRHiAWYsDMtbm7Ad9+pp1UqYPRoeeMhIiIiIiIiIvoYaWrYWVoCpUvLG0s6mLAzNcOHA15e6um9e4EjR+SNh4iIiIiIiIjoYxIdnTLgRLly6qSdiWHCztTY2AD/+1/K/wEB6tp2RERERERERERkuMuXU6ZNsDkswISdaerSBahQQT19+TKwcaO88RARERERERERfSxS919nggNOAEzYmSalEpg9O+X/778HYmPli4eIiIiIiIiI6GOReoRY1rAjnXz2GfDFF+rpx4+B+fPljYeIiIiIiIiI6GOgqWFnZQWUKiVvLBlgws6UzZyprm0HANOmAS9eyBsPEREREREREVFOFhUF3L2rni5fHrCwkDWcjDBhZ8pKlQL69FFPR0cDkybJGw8RERERERERUU526VLKtIn2XwcwYWf6Jk4E7OzU0z//DNy5I288REREREREREQ5VeoBJ0y0/zqACTvTly8fEBCgnk5KAsaOlTceIiIiIiIiIqKcKvWAE6xhRwYZNQrIm1c9vXMncPKkvPEQEREREREREeVEmhp21tYmO+AEwIRdzmBvD0yenPL/N98AQsgXDxERERERERFRThMRAdy/r54uXx4wN5c1nPdhwi6n6NULKF1aPX3uHPDbb/LGQ0RERERERESUk6QecMKE+68DmLDLOczMgJkzU/7/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Ydu2bVi9ejX8/f3Rpk0baf7Lly8RGBiIly9faq3fv39/AMC4ceOQkJAgzT9y5AgOHDiA2rVrw9vbO4uOwMRYWGjXsvvhB6MU+/jxY/zwX1kKhQJDhgyRlv3xxx9G2QcRERERERERkU40CTtzc6ByZXlj0ZNJJuyqVKmCRo0a4auvvsKYMWNQr149tGvXDoUKFcJvv/2mNejEokWLULJkSSxatEirjHr16qFv3744ceIEKlSogNGjR6NHjx744osv4OjoiKVLl2b3YcmrXz+gQAH19N69wOnTBhf59ddf482bNwCAgQMHYuLEiVAq1S8pDjxBRERERERERNnu1Svg1i31dMWKgK2tvPHoySQTdh06dEBoaCjWrFmDBQsWICwsDOPGjcPly5dRsGDBTJezbNkyLFiwAAqFAgsWLMCePXvQvHlznD9/HqVKlcrCIzBBVlbAjz+m/D9unEHF/fnnn9LgEu7u7pg6dSpcXV1R47+qprdv38adO3cM2gcRERERERERkU5SV1DKoc1hAUAhUo8WQBmKjo6Gk5MToqKicu4AFImJQKlSwL176v8PHwbq19e5mDdv3qB06dJ4+PAhAHXfgp07dwYAzJ49GwEBAdL0qFGjjBM7EREREREREdGHjB2bMuDmtm1A27ZZtquszBWZZA07yiIWFsDEiSn/jxsH6JGvnTx5spSsa9CgATp16iQta968uTTNZrFERERERERElK0+ggEnANawy7SPooYdAKhUQLlywPXr6v//+ANo1izTm1+/fh0VKlRAUlISrKyscO3aNRQvXlxrnRIlSuDOnTswMzNDWFgYXF1djXkERERERERERERpxccDTk7qv0WLprQwzCKsYUfGo1QCkyal/D9unDqJlwkqlQoDBw5EUlISAODbb79Nk6wDUmrZJScnY9++fYbHTERERERERET0IZcuqZN1QI6uXQcwYfdpatUK8PNTT1+9CmzfnqnN1qxZg1P/VS0tXrw4xowZk+56LVq0kKb/+OMPg0IlIiIiIiIiIsqUkydTppmwoxxHoQCmTEn5/8cfgeTk927y4sULjB49Wvp/yZIlsLa2Tnfd6tWrw8XFBQCwb98+JCQkGB6zjhITE9GiRQu4urpi27Zt2b5/IiIiIiIiIjIOIQR27NiBwYMH49ChQxmv+JH0XwcwYffpatQIqFlTPR0YCGzY8N7VR48ejVevXgEAOnfujAYNGmS4rrm5OZo2bQoAeP36Nf7++2/jxKyDxYsX448//sCrV6/QtWtXnDt3LttjICIiIiIiIiLDHDt2DFWrVkXbtm2xdOlSNGrUCA0bNsTFixe1VxQCOH1aPe3sDJQsmf3BGhETdp8qhQL43/9S/p84EcigJtzff/+NtWvXAgCcnJzw008/fbB4OZvFhoaGYvz48dL/8fHxaNmyJR4/fpytcRARERERERGRfv799180bdoU9erVw/nz57WWHT58GH5+fujUqRPu37+vnnn3LvDihXq6enV1H/45WM6OngxTu7a6ph0ABAUBq1enWSUhIQEDBw6U/p8+fTry5MnzwaIbN24MCwsLAMDu3buRnYMRjxkzBtHR0QAAGxsbAEBYWBhatmyJN2/eZFscRERERERERKSbhw8fonv37ihfvrzWQJa+vr6YOXMmChcuLM3bsmULfHx8MGzYMESnHvQyhzeHBZiwo8mTtadjY7UWz549G4GBgQCAKlWqoH///pkq1tHREXXr1gWgvtiuXbtmlHA/5NSpU1i/fj0AwNnZGZcuXUKRIkUAAJcvX0aPHj2gyuSouERERERERESUPcLDwzFq1Ch4e3vjl19+kSr+FChQAOvWrcOVK1cQEBCAwMBALFiwAG5ubgCApKQkLFq0CLu++SalMCbsKMerXBlo2VI9/fQp8PPP0qIHDx5g8n8JPaVSiZ9//hlKHaqUZnez2OTkZAwdOlT6f8qUKfDx8cHu3bvh4OAAANi+fTsmTZqU5bEQERERERER0Ye9ffsW06ZNQ5EiRfDTTz9JA1c6Oztj9uzZuH37Nrp37w4zMzMAgKWlJYYNG4b79+/jxx9/hJ2dHQCgclISACABwM8XL8oyAKYxMWFnQl6+fImwsDBERUUhISEh+5qRTp6s7tMOAKZNA2JiIITAkCFDEBcXBwD46quvUL58eZ2Kbd68uTS9e/duY0WboWXLluHKlSsAgPLly2PAgAEAgNKlS2Pz5s1Q/HeMEydOxK+//prl8aQnMjISkZGRJlPLLzY2FomJiXKHQURERERERJ+YpKQkrFixAsWKFcN3330ndW1lbW2NsWPH4sGDBxg1ahSsra3T3d7R0RETJ07EvXv3ENCrF3z+m38RwKCRI1GqVCls3brVZL5/60ohsrNzsRwsOjoaTk5OiIqKgqOjo9HLHzVqVJrBHBQKBaytraWHjY2N1v/29vbo168fvvzyS8MD6NQJ2LJFPT1lCraVKIF27doBADw9PXHz5k2plpouypUrh3///RcA8OzZM+TNm9fwWNPx4sULeHt7IzIyEgBw8uRJ1HinCuzs2bMREBAAQP0GcOLECfj5+WVJPO8KDAzEqFGjsHfvXgDqc+vo6AhnZ2fkypVLerz7v4uLC2rWrIlChQoZNZ5Xr15h2rRpWLRoEezs7DB16lT07dtXpxqURERERERERPoQQqBx48Y4dOiQNE+pVKJ3796YMGECPDw8dCtw926p9eBsAAGpFvXu3RurVq0yPOh0ZGmuSFCmREVFCQAiKirK6GWHhYUJMzMzAUDnh4WFhbh9+7bhQdy+LYSZmRCAUDk5iTKentI+tm/frnex48aNk8pZsWKF4XFmoG/fvtJ+unfvnu46KpVK9OzZU1ovf/78IiQkJMtiEkKI8PBwMXz4cGFubq7X+QUglEql6Ny5s/j3338Njuft27di+vTpwsnJKc1+/P39xYULF4xw1EREREREREQZCw4O1vo+2qpVK3Hz5k39CwwIEAIQAhB3ZswQ9erV0yr/6tWrxgs+lazMFbE6jQnYsmULkpOTAahHPWnUqBFq166NypUro2zZsihevDi8vLyQO3duODg4SKOvAkBiYiJGjhxpeBDe3kCPHgAARVQU2j95AgBo1KgRWrdurXex2dEs9vz581K23MHBATNmzEh3PYVCgZ9//lmqeff06VO0atUKse8MtGEMiYmJWLhwIYoVK4YFCxYg6b+29J6enmjcuDGqVKkCb29vuLu7a53P9KhUKmzatAlly5ZFy5YtcfbsWZ3jSUpKwqpVq1C8eHGMHTsWUVFRAKC17wsXLqBy5coYNGgQXr16pfM+iIiIiIiIiDLj6tWr0vSIESOwc+dOlCxZUv8CT52SJov36IEjR45g6tSp0rz58+frX7ZM2CQ2k7KymmPlypVx4cIFAMD169dRunTpD24TExODkiVL4sl/ibU9e/agadOmhgXy8CFE8eJQJCYiBkBxpRKH//03U/FkRKVSwcPDA6GhobCxscHLly9ha2trWJzvlF+1alXp+fvpp58wYsSI927z/Plz+Pv749GjRwCATp06YePGjVIfd4bav38/Ro4ciVu3bknzbG1tMWbMGHzzzTdpjl8IgdjY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REREqaZbx05j0KBBCkRCRGZj9Wrt998uXayn9JOZUUmSec1bS0hIQL169RAQEABPT080a9YMHh4euHjxIvbu3QsnJyfs27cPNWrUAABMmDABEydOhL+/PyZMmKC3rZ49e2LRokUoXrw4mjRpgufPn2P9+vVwdnbGsWPHULx48WTHFR4eDnd3d4SFhXF6rDX64w9gwIDk3dfOTozKy5kTuH8fePNGrLe3Fwmr77/XdqG1Rdu2AZ06AZrOyh4eoglHhw48kBMRERFZGEmSkD9/fjx48AAA0KRJE/z3338KR0VEipEkoGRJUcMcAO7cEaPsbJQxc0VmN8LO3t4eu3btwrRp05AnTx6sXbsWM2fOxLVr19ChQwecOXNGTtZ9zoIFCzB79myoVCrMnj0b27dvx1dffYVTp06lKFlHNqBfP2DaNCBHjs/fV60Gnj8HLlzQJuvy5gUOHxZTQW05WQeI7kCnTgFFiojroaEigdegAXD7trKxEREREVGKqFQqvW6wQ4YMUS4YIlLe+fPaZF316jadrDM2sxthZ644ws6GxMWJhNzTp5++PH8u7t+2rRihp+mWSkJYGNCrF7Bhg3adkxPwww9iFKKjo3KxEREREVGyRUREYMyYMShevDj69OmjdDhEpKQhQ4BZs8TyggXiO58NM2auiAm7ZGLCjhJRq0Vyz9qbSqTV9u1A//7A+2kUAIBixcTBvWZN5eIiIiIiIiKi5IuLA3LlAl6+FN+Dnz4VJZBsmE1NiSWyGHZ2TNYlR5MmwNWrwIgR2unC168DtWoBPXoAr18rGx8RERERERF93u7dIlkHAM2a2XyyztiYsCMi43NxAX75RXTarVxZu37xYqBoUWDlSm2XISIiIiIiIjI/K1Zol7t0US4OG8GEHRGZTunSwNGjouafZrjwy5fiYF+vHhAUpGx8RERERERElFhoKLB1q1j29AQaNlQ2HhvAhB0RmZa9vejKe/26aNihceAAUKoU8OOPQESEcvERERERERGRvr//BmJixHKHDkC6dMrGYwOYsCMiZXh5AevXi6YUefOKdTExgL8/kDs3MHw4cO+esjESERERERERp8MqgAk7IlJW48aiKcX332ubUoSFAb/9BhQqBLRsCRw6xBp3RERERERESrhzR5Q2AoASJYCyZZWNx0YwYUdEynNxAaZNAy5dArp313bfVauBLVuA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1Dab+JSsWbMCAN69e/fR+zg5OcHNzU3vQkRENsLJSUyFPXxYTBMDgKgoYOBAoGFD8SXOFuzbB/Tpo70+f76YKkZE1kGlAmrXBv77D7h2DejRA3B0FLfFx4uRxcWLiynx588rGqpBXb8ONGsG+PqKEzQadeqIZkRXrohRhi4uysVIREQ2z6ynxL569QpeXl7ImDEjnjx5AicD1IqIj49HoUKF8PDhQ4SEhCBz5szJehybThAR2ajISOD774E//9Suy5xZTCdLormR1Th9Wjy/yEhxvX9/McKQiKzb8+fAH3+I93toqP5tjRoBY8eKbtqW6OlTYMIEYNEi/dHSPj7AL7+IEzIqlWLhERGR5bHZKbErV65EbGwsOnXq9NFkXUhICG7cuIGQkBC99cePH8eHucj4+HiMGDECDx48QMOGDZOdrCMiIhvm4iK+vO7eDeTKJda9fg00aAD89ZeysRnLzZtA48baZF2LFsDMmUpGRESmkj078OOPorPs9OlAjhza23buBGrUECPT9uwR9d8swdu3gL8/UKiQOG5rknW5colp/+fPA19+yWQdERGZFbMeYefj44MrV67g0qVL8PHxSfI+muYQ/v7+mDBhgrw+X758UKlUqFatGnLlyoU3b94gMDAQN2/ehLe3NwIDA5E3b95kx8IRdkREhNBQoGNH8aVVY/BgUbjdwUG5uAzp8WOgWjXg4UNx3dcX2LULcHZWNi4iUkZ0tEhq/fKLSOLpqlBBjLhr1kxb89OcxMUBixeLUXXPn2vXu7oCo0eL43eGDIqFR0REls8mR9idOnUKV65cQaVKlT6arPuUvn37Il++fAgICMCsWbOwevVqODk5YezYsbhw4UKKknVEREQARMfAbduAoUO162bNApo2BcLClIvLUF6/FlPCNMm60qWBf/9lso7Iljk7i07Rt24By5YBRYpobztzBmjZEihVCli9WtS9MwcJCaJBjo8P0LevNlnn4CBqkd65IxJ2TNYREZEZM+sRduaEI+yIiEjPokXii6DmC2qxYiKZp2lSYWnevQPq1weOHRPXCxQAjh7Vnw5HRKRJhv38M3Dhgv5tefIAvXoB330H5Mxp+tjCw8VowDlzgLt39W9r00bEXKiQ6eMiIiKrZcxcERN2ycSEHRERJRIQALRqJUamAaIZxebNYhqpJYmLE6Nktm8X17NnF8k6S00+EpHxSZIoD/DTT9pEv4aDg6h92aePaF5j7Omyt2+LJN3SpaJena4aNUQtvipVjBsDERHZJJucEktERGT2atcGTp0So+sAkbirV0+MvrMUarUYDaNJ1rm5iS/hTNYR0aeoVKI5zZEjwMGDYlnTtCE+XnTSrlcPKFoU+O034NUrw+5fkoD9+4GvvgK++AKYPVs/WVevnjiuBQYyWUdERBaJI+ySiSPsiIjoo8LCgHbtRHMGjSFDRDMKe3vFwvosSQKGDwd+/11cd3ISz6F2bUXDIiILdf8+sHChaPSg2+QBEMeXtm3FqLuqVVPfkTUqCli1SiTorlzRvy19eqBzZ2DQIKBEidRtn4iIKAU4JdYMMGFHRESfFB8PjBgBzJypXdeoEbB2LeDurlhYn/TLL8DIkWLZzk6MiGnZUtmYiMjyxcaKhjXz5onRdx8qVUok7nx9k5+4i40F1q8HFizQliHQyJ0bGDAA6NEDyJIl7fETERElExN2ZoAJOyIiSpaFC0VHRU0ziuLFRTOKAgWUjetDS5aIqbAaf/0F9OypXDxEZJ1u3BDHl2XLgNBQw267WjVg8GBxoiFdOsNum4iIKBlYw46IiMhS9OwJ7N0rGlAAwLVrQMWKohmFudi6VT8599NPTNYRkXEULSqm3T9+DCxfnvZ6cunSAR07ivqhR4+KabZM1hERkRXiCLtk4gg7IiJKkdu3RTH0Gze067p2BWbNEo0dlHL4MNCgARAdLa4PHgzMmJH6elJERCl14QKwZg0QEpL4to99NZEkoHBhoHt3IGdOo4ZHRESUXJwSawaYsCMiohQLCxM1lTZu1K7Llw9YuRKoUcO0scTHi/p648eLou0A0KGDiMWOA+6JiIiIiFKKU2KJiIgskbs7sGGDmAbm6irW3b8vCq2PHSuKqJvCmTNiWu6IEdpkXcOGwNKlTNYREREREZkhfkonIiIyJpUK6NIFuHgRqF5drFOrgZ9/BqpW1Z8ya2gREcCwYUDlymIKmiaeQYOAf/4BHB2Nt28iIiIiIko1JuyIiIhMIX9+4NAhkahzcBDrzp0DypUD/vjj43WbUmvHDqBkSVGfTq0W60qVAk6cEHX00qc37P6IiIiIiMhgmLAjIiIyFXt7YPRo4ORJ0TkREFNUBwwAGjcGnj5N+z6ePwfatweaNAEePBDrnJ2BqVPF1NhKldK+DyIiIiIiMiom7IiIiEytXDng7FmRqNPYtQvw8RFTVVNDkoDFi0UicN067fp69YArV4CRI4F06dIWNxERERERmQS7xCYTu8QSEZFR7NoFdOsGPHumXffVV0CxYkC2bNpL9uzip6dn4sRbUBDQq5eYcquRJYuYDtupk6hbR0REREREBmXMXBETdsnEhB0RERlNSAjQuzeweXPy7u/hoU3iZcoE7N4NxMRob+/cGfjtN5HcIyIiIiIio2DCzgwwYUdEREYlScCyZcDQoUBYWOq2UaAAMH8+UL++QUMjIiIiIqLEmLAzA0zYERGRSURFAffuieYRL14kfdHc9vateIyDAzBsGODvD2TIoGz8REREREQ2wpi5IgeDbo2IiIjSJn16oHhxcfmcqCiRuMucGXB1NX5sRERERERkEkzYERERWar06YG8eZWOgoiIiIiIDMxO6QCIiIiIiIiIiIhIiwk7IiIiIiIiIiIiM8KEHRERERERERERkRlhwo6IiIiIiIiIiMiMMGFHRERERERERERkRpiwIyIiIiIiIiIiMiNM2BEREREREREREZkRJuyIiIiIiIiIiIjMCBN2REREREREREREZoQJOyIiIiIiIiIiIjPChB0REREREREREZEZYcKOiIiIiIiIiIjIjDBhR0REREREREREZEYclA7AUkiSBAAIDw9XOBIiIiIiIiIiIlKaJkekyRkZEhN2yfTq1SsAQJ48eRSOhIiIiIiIiIiIzMWrV6/g7u5u0G0yYZdMmTNnBgA8fPjQ4L8EIqKUqFixIk6fPq10GERk43gsIiKl8ThEREoLCwuDt7e3nDMyJCbsksnOTpT7c3d3h5ubm8LREJEts7e353GIiBTHYxERKY3HISIyF5qckUG3afAtEhGRUfXv31/pEIiIeCwiIsXxOERE1kwlGaMynhUKDw+Hu7s7wsLCeBaHiIiIiIiIiMjGGTNXxBF2yeTk5AR/f384OTkpHQoRERERERERESnMmLkijrAjIiIiIiIiIiIyIxxhR0REREREREREZEaYsCMiIiIiIiIiIjIjTNgREZmR06dPo3HjxvDw8ICLiwsqVaqENWvW6N0nLi4OmzZtQteuXVGsWDG4uLjA1dUVlStXxp9//omEhASFoicia5Cc4xAALFy4EF999RXynw/xSgAAEeNJREFU588PFxcXuLu7o3Tp0hg/fjxev36t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ePfuXfKfDBERERERERERWS2bSNjFxcWhc+fOiImJwS+//AJ7e3sAQFhYGADA3d09yce5ubnp3e9jgoODMWjQIKRPnx6TJk3Su81Q+yAiIiIiIiIiItvg8Pm7WDa1Wo3u3bsjMDAQPXv2ROfOnQ26/devX6Nx48Z48eIFVqxYgSJFihh0+0REREREREREZFuseoSdJEno2bMnVq1ahU6dOmH+/Pl6t2tGvX1sdFt4eLje/T4UGhqKevXq4erVq5g3bx46deqU6D7J3YdmpB0REREREREREdk2q03YqdVqfPfdd1iyZAnat2+PZcuWwc5O/+l+rkbdp+rPvX79GnXr1sX58+cxd+5c9O7dO8ltfGofkiTh9u3b8PLyStT0goiIiIiIiIiIbJNVJuzUajV69OiBpUuX4ptvvsHKlSvlunW6ChcuDC8vLxw9ehSRkZF6t0VHRyMwMBBeXl4oVKiQ3m2vX79GvXr1cP78ecyZMwf9+vX7aCy1a9cGAOzZsyfRbadOncKbN2/g6+ubimdJRERERERERETWyOoSdpqRdUuXLkWbNm2watWqJJN1gOjS2qNHD0RERODHH3/Uu23KlCkIDQ1Fjx49oFKp5PW6I+tmzZqFAQMGfDKeL774ArVq1cLBgwexY8cOeX1cXBx++OEHAEDPnj1T+3SJiIiIiIiIiMjKqCRJkpQOwpAmTJiAiRMnImPGjBg8eDAcHBL31WjRogXKlCkDAIiMjESNGjVw4cIF1K9fH+XLl8fFixexc+dOlClTBkeOHNGbrlq7dm0cOnQIRYsWxTfffJNkDEOGDEGmTJnk69euXUO1atUQFRWFtm3bwsvLC7t27cKlS5fQo0cPLFy40KCvARERERERERERWS6rS9h17doVy5cv/+R9li5diq5du8rXw8LCMHHiRGzcuBHPnj1Djhw50Lp1a/j7+ydqOJEvXz48ePDgk9u/d+8e8uXLp7cuKCgIY8eOxcGDBxEREYFChQqhd+/e6N+/f6LaekREREREREREZLusLmFHRERERERERERkyTi0i4iIiIiIiIiIyIwwYUdERERERERERGRGmLAjIiIiIiIiIiIyI0zYERERERERERERmREm7IiIiIiIiIiIiMwIE3ZERERERERERERmhAk7IiIiIiIiIiIiM8KEHRERERERERERkRlhwo6IiIiIiIiIiMiMMGFHRERERERERERkRpiwIyIiIiIiIiIiMiNM2BEREREREREREZkRJuyIiIiIiIiIiIjMyP8BkT8jb4J5wy4AAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAkUAAALBCAYAAABWX9UPAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8o6BhiAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd5hU5dnA4d+U7b0v2zu7iHTp0lRAFFFBRcSo+aImYmI0xV6iiUaN0cQWNZZoFAsKYsOKiCBVpG9he+9tts3OOef7A3bCsH2Z2frc1+Wle8p7nnndmX3mrTpN0zSEEEIIIUY4/UAHIIQQQggxGEhSJIQQQgiBJEVCCCGEEIAkRUIIIYQQgCRFQgghhBCAJEVCCCGEEIAkRUIIIYQQgCRFQgghhBCAJEVCCCGEEIAkRUIIIYQQwDBKir777juWLl1KWFgYOp2ODRs22Jy/9tpr0el0Nv9Mnz69XTk//PADCxYswMPDA19fX+bNm0dTU5PN+QkTJhAdHc1LL71kPT59+nR+9atf2ZT1/PPPo9PpePnll22O/9///R8zZ860w6vunD3qY968ee2uWblypc01I6k+2miaxvnnn99hOSOpPm688Ubi4+Nxc3MjKCiIZcuWkZqaanPNSKmPqqoqfv3rXzN69Gjc3d2JioriN7/5DbW1tTbljJT6AHjxxReZN28e3t7e6HQ6ampq2j1nJNVHS0sLv/71rwkMDMTDw4OLLrqIgoICm2uGS32c7MYbb0Sn0/HUU0/ZHM/MzOSSSy4hKCgIb29vLr/8ckpLS22uGYj6GDZJUUNDA+PHj+eZZ57p9JrFixdTXFxs/efTTz+1Of/DDz+wePFiFi5cyK5du9i9ezc333wzev3/qunnP/859957L2vXruXRRx8lLy8PgPnz57N582ab8r799lsiIyM7PD5//vzTfcldskd9AFx//fU217zwwgs250dafQA89dRT6HS6Ds+NpPqYPHkyr776KkePHuXzzz9H0zQWLlyIoijWa0ZKfRQVFVFUVMTf/vY3Dh48yGuvvcamTZv4v//7P5syRkp9ADQ2NrJ48WLuuuuuTssYSfXx29/+lvXr1/P222/z/fffYzKZuPDCC4ft+wVgw4YN7Ny5k7CwsHb3L1y4EJ1OxzfffMO2bdswm80sXboUVVWt1w1IfWjDEKCtX7/e5tg111yjLVu2rMv7pk2bpt1zzz1dXhMVFaVlZWVpJpNJmzJlinb48GFN0zTt888/1wCtqKjIem1ISIj23HPPaeHh4dZjeXl5GqB9+eWXvXtRp6Gv9TF37lztlltu6fKakVQfmqZpP/30kxYREaEVFxd3WM5Iq4+T7d+/XwO0Y8eOWY+N5Pp49913NWdnZ621tdV6bCTWx+bNmzVAq66ubndupNRHTU2N5uTkpL399tvWY4WFhZper9c2bdpkPTZc6kPTNK2goEALDw/XDh06pEVHR2tPPvmk9dznn3+u6fV6rba21nqsqqqqXewDUR/DpqWoJ7799luCg4NJSkri+uuvp6yszHqurKyMnTt3EhwczMyZMwkJCWHu3Ll8//33NmXcd999pKSk4OPjw/Tp0xkzZgwAs2bNwsnJiW+//RaAI0eO0NTUxM9//nPq6urIyMgAYPPmzTg7Ozu8ebMnuqqPNm+++SaBgYGcccYZ/P73v6e+vt7m/Eiqj8bGRq688kqeeeYZQkNDOyxjJNXHyRoaGnj11VeJjY0lMjLSenyk1gdAbW0t3t7eGI1G67GRXB8dGSn1sXfvXlpbW1m4cKH1WFhYGGPHjmX79u3WY8OlPlRV5eqrr+YPf/gDZ5xxRrvzLS0t6HQ6XFxcrMdcXV3R6/U2f3MHoj5GTFJ0/vnn8+abb/LNN9/wxBNPsHv3bhYsWEBLSwsAWVlZADzwwANcf/31bNq0iUmTJnHOOedYKxiO909WVlZSXl7O008/bT3u4eHBWWedZf2f9O233zJ79mxcXFyYNWuWzfFp06bh7u7ePy+8E93VB8BVV13F2rVr+fbbb7n33nt5//33ufTSS23KGUn1ceuttzJz5kyWLVvWaTkjqT4AnnvuOTw9PfH09GTTpk18+eWXODs7W8+PtPpoU1lZyUMPPcSNN95oc3yk1kdnRkp9lJSU4OzsjJ+fn819ISEhlJSUWH8eLvXx6KOPYjQa+c1vftPh+enTp+Ph4cHtt99OY2MjDQ0N/OEPf0BVVYqLi63XDUh99LhNaQihk+a8kxUVFWlOTk7a+++/r2mapm3btk0DtDvvvNPmujPPPFO74447evTcu+++W0tKStI0TdMuu+wy7bHHHtM0TdMeeeQRbdWqVZqmaVpsbKx2//339+LVnL6+1EdH9uzZowHa3r17e/Tc4VQfH374oZaQkKDV19f3qpyTDaf6aFNTU6Olp6drW7Zs0ZYuXapNmjRJa2pq6tFzh2N9aJqm1dbWatOmTdMWL16smc3mHj93uNZHV91nXRlO9fHmm29qzs7O7a4799xztRtvvLFHzx0q9bFnzx4tJCREKywstB47tftM0453gcXFxWk6nU4zGAza6tWrtUmTJmm/+tWvevRcR9XHiGkpOtWoUaOIjo62tgKNGjUKwNo81yYlJcU6uKs78+fPJz09ncLCQrZs2cLcuXMBmDt3Lt9++y15eXlkZ2c7fBBcX5xaHx2ZNGkSTk5OXV5zsuFUH9988w2ZmZn4+vpiNBqtXSLLly9n3rx5PSpzONVHGx8fHxITE5kzZw7r1q0jNTWV9evX96jM4Vgf9fX1LF68GE9PT9avX4+Tk1OPyxyO9XE6hlN9hIaGYjabqa6utrmurKyMkJCQHpU5VOpj69atlJWVERUVZf2szM3N5Xe/+x0xMTHW6xYuXEhmZiZlZWVUVFTwxhtvUFhYSGxsbI+e46j6GLFJUWVlJfn5+dZkKCYmhrCwMNLS0myuS09PJzo6ukdlzpw5ExcXF5577jmampqYPHkyAFOmTKG2tpYXXngBV1fXTqd6D6RT66Mjhw8fprW1tctrTjac6uOOO+7gwIED/PTTT9Z/AJ588kleffXVHpU5nOqjM5qm9bgLZbjVR11dHQsXLsTZ2ZmNGzfi6uraqzKHW32cruFUH5MnT8bJyYkvv/zSek1xcTGHDh3q8XiXoVIfV199dbvPyrCwMP7whz/w+eeft7s+MDAQX19fvvnmG8rKyrjooot69ByH1Uev2pUGsfr6em3fvn3avn37NED7+9//ru3bt0/Lzc3V6uvrtd/97nfa9u3btezsbG3z5s3ajBkztPDwcK2urs5axpNPPql5e3tr7733npaRkaHdc889mqurq81smu7MmTNH8/Ly0hYvXmxz/Nxzz9W8vLy0BQsW2O01d+V06+PYsWPan/70J2337t1adna29sknn2jJycnaxIkTNYvF0uM4hkt9dIRedp9p2vCpj8zMTO3hhx/W9uzZo+Xm5mrbt2/Xli1bpvn7+2ulpaU9jmO41EddXZ02bdo07cwzz9SOHTumFRcXW/8Zqe+X4uJibd++fdpLL72kAdp3332n7du3T6usrOxxHMOpPn75y19qERER2ldffaX9+OOP2oIFC7Tx48cPu9+PjnTUffbKK69oP/zwg3bs2DHtjTfe0Pz9/bXbbrutV3E4oj6GTVLU1m996j/XXHON1tjYqC1cuFALCgrSnJyctKioKO2aa67R8vLy2pXzyCOPaBEREZq7u7s2Y8YMbevWrb2K4/7779cA7a9//avN8YceekgDtIceeui0XmdPnW595OXlaXPmzNH8/f01Z2dnLT4+XvvNb37Tqw80TRs+9dGRviRFw6U+CgsLtfPPP18LDg7WnJyctIiICG3VqlVaampqr+IYLvXR2f2Alp2d3eM4hkt9nPxaTv3n1Vdf7XEcw6k+mpqatJtvvlnz9/fX3NzctAsvvLDbz5hTDYX66EhHSdHtt9+uhYSEaE5OTlpiYqL2xBNPaKqq9ioOR9SHTtM0rXdtS0IIIYQQw8+IHVMkhBBCCHEySYqEEEIIIZCkSAghhBACkKRICCGEEAKQpEgIIYQQApCkSAghhBACkKRICCGEEAIA40AHYG/Nzc2YzeaBDkMIIYQQDuLs7NzrrXR6YlglRc3NzURERFBZWTnQoQghhBDCQUJDQ8nOzrZ7YjSskiKz2UxlZSWffPIJHh4edimztbUVoFe7XQ9XUhe2pD5sSX3YkvqwJfVhS+rDVm/qo6GhgQsuuACz2SxJUU94eHjg6elpl7LauuKcnZ3tUt5QJnVhS+rDltSHLakPW1IftqQ+bA2W+pCB1kIIIYQQSFIkhBBCCAFIUiSEEEIIAUhSJIQQQggBSFIkhBBCCAFIUiSEEEIIAUhSJIQQQggBSFIkhBBCCAFIUiSEEEIIAUhSJIQQQggBSFIkhBBCCDtwLirC/+OPMdTXD3QofTYs9z4TQgghhGMZq6rwOHAAr7178d65E7esLACKbriB4htuGODo+kaSIiGEEGIE0JnNuGZn45qXh3NREU4VFRhra9E3NaFTFDQnJxR3d1q9vFB8fVE9PVGdndFpGrqWFox1dThVVOBcVIRbdjbOpaUAtISGUj91KkU33EDgxo34bN0qSZEQQgghBh/n4mJCX3mFgI8/Rt/aCoDi4YE5KAiLry+KmxsYDOgbGtAXF+NcXY1bYyOGhgb0FgsAqosLiqcnrYGBtIwaReXixZgSEmgYOxYlIgJ0OgB0Fgtx99yDU2kprSEhA/aa+0qSIiGEEGIYcktNJfSNN/D9+msUT0+Kr7+e+smTMUVEoAsIAKC8vJyKigo8PT1JTk4mKSkJvV7Pli1b8PT0BE07XtiJpKe+vp6amhoaGhrQNA1Xi4VYnQ5FUTAYDNTNmoVmMOC7ZQvll18+UC+9zyQpEkIIIYYRQ309kY8+SsCmTTRHRZH/q19RdfnlWFxcKC4upq6sDH+LhXHjxjF58uQOyygvLyc/Px8vLy/8/PwICQkhMjISd3d3m+vMZjPffPMN/v7+ACheXtRPmoTP999LUiSEEEKIAaJp+H79NZFPPom+sZHMO+9k37hxtCgKoS0tTBwzhrPOOqtHRa1YsaLTc/X19eTk5FBcXExNTQ1xcXHoTrQkAdTOmkX4c8+hb2pCdXM77ZfVnyQpEkIIIYYyiwW/zZsJXrsWzwMHqJk1i29WrGDhL37BCk9PuzxCURQ2b95MZWUlCQkJAAQEBODr62uTEAHUzp5N5FNP4bVrF7Vz59rl+f1FkiIhhBBiiNKbTMT/8Y9479pF/fjx7Przn7HMn8+lM2fapfy6ujq++OIL3N3dCQkJwdvb2+a8UVFwzs9HbzbjXFqK97Zt+G7dCoBrXh61domi/0hSJIQQQgxBTmVlJP761ziVlZH27LPs9vbm4osvPj5A+jRlZmbyww8/EB0dTXR0tLU1yKDX43HwIH6ff47PDz/gkp+PTlWt97WEh1M9fz61c+dSP2nSacfR3yQpEkIIIYYYl5wcEm++GTSNHx5/HP3YsayeNeu0ylRVlR07dpCTk0NiYiJJSUkYDAYADDU1+H/+OUHvv49bVhbmoCBq58yhdPVqmqOiUN3csHh7Yw4Pt85UG4okKRJCCCGGEPdDh0i85RZaAwL47JZbOG/VKry8vPpcXnNzM1988QWqqhIZGUlCQgJ6vR5dayveW7cS8PHH+Hz/PTpNo+bss8n/3e+onzIFTiRMw4kkRUIIIcQg51xcjOfevXjt3Yvfl1/SmJTEpptu4rIbb+xzmcXFxXz77beEhIQQHh6OeqIbzGix4P/RR4x69VVcCgtpSE6m4Le/pXrhQiwnpt4PV5IUCSGEEIPMyUmQ1969uBQVAdCYlETZ5ZeTtXo1M1JS+lT2Tz/9xKFDh0hISCA+Pt7aRabX6fD78ksi//Y3jFVV1M6ZQ+bjj9OUlGS31zXYSVIkhBBCDBSLhcANGwj64AMaR48GsCZBmk5HU2IiNXPnHl+JesIEFF9fAEpzc5kVEdGLx1j4+uuvqa2tJT4+nsTERIzG/6UAhpoaYu+/H59t26hesIDCm2+mJSrKri91KJCkSAghhBgAThUVpNx2G+7HjlEzezZee/ageHn9LwmaOBHFx8fmHkVRyMvL45JLLunRM6qrq/nqq6/w8vIiKCgIPz8/ANuEqK6OpDVrcCot5djf/kbtvHl2e41DjSRFQgghhMUCxv79kxj09ts4l5Vx9PXXaRwzptvrFUWhpqaG6dOnW7u8OpOens6uXbuIjY0lJibmf1PqT7nPUF9P4s0341xSQtoLL9B8YmHGkUqSIiGEECOOU0nJ8fE6e/bgtXcvxupqUl99tf+SAosFv2++oWLZsh4nRNXV1URGRhLRRbdZa2sr7733Xrsp9R3Rm0wk/PrXuBQUkP788yM+IQJJioQQQowATmVl1iTIc+9eXAsKAGhMSKB25kz8vvmGuDvvJPX11/tlv66QN9/EWFdH1aJF3V6rqio5OTnMnTuXkJCQTq8zmUxs2rSJpKSkdltvnErf0EDiLbfgmpNDxnPP0XRiPNNIJ0mREEKIYcdYUWFtBfLauxfXvDwAmuLiqJs5k8LJk6mfPNk6cLn8iitIvvpqIh9/nNz77nNobJ579xL6xhuUXH01TcnJ3V6flpbGFVdcgZOTU5fXbdiwgdGjR3ebEAFEPfIIbseOkf7ssz1qqRopJCkSQggx5BkrK60JkNeePbjm5gLQFBtL3dSpFN50E6ZJkzpdZ6c5Npb8P/6RmAcfpG7qVKoXL3ZInIaaGmLvuYeaM8+kdPVqnLu5PjU1ldWrV3db7s6dO0lOTu5RQuSzZQsBmzaR/eCDNI4d28PIRwZJioQQQgxJOrP5+HT2detwy8oCoDk6mvrJkym68UbqJ0/GEhDQ4/Iqly7Fa/duoh9+mMYzzqAlMtK+AWsaMQ88gK61lby77+5yRWhFUcjOzmblypU9KjorK8tmzaHOGOrriXrkEWpmz6bq/PN7Ff5IIEmREEKIIcfj4EHi7rgDp/Jyqs89l+Kf/xzT5Mm0BgX1vVCdjrw77sDj0CFi77yTtFdeQXPuri2n54Lfegvf778n46mnaA0M7Pb6sWPHdpvkAOTn5/coIQKI+PvfMTQ1kXfnnUN6jzJH0Q90AEIIIURvOJWXE//732MODubwu++S/fDDVC9e3GFC1LZ1haZpPSpb9fAg65FHcMvMJPzpp+0Ws/uRI4Q//TQlq1dTN3t2l9daLBbS09M544wzelT2999/36PrvH/4gcCPPiL/1ltp7WLA9kgmSZEQQoghQ9faStztt6MZDGT+7W+0xMR0eq2madbFDhVF6fEzmpKTKbjlFkLWrsVny5bTjllvMhF35500JSVRtGZNt9cbjUbCw8N7VLaiKPj5+XXbSqQ3mYj+85+pmzqVymXLelT2SCRJkRBCiCEj8m9/w/3oUTIfe6xH44Wqq6vR6XQ2Kzj3RPkVV1AzZw4xDz6IU0lJX8MFTSP6L3/BWFND1sMPo3Uzgwygvr6e2d20JrXZuHEjQT3oMgx/5hkMdXXk3nOPdJt1QZIiIYQQQ4Lfpk0Evf8+ebff3u2sKUVRSE9PZ86cOYSFhfX+YTodOffdh+rqSuw99xxf8boPAj78EP8vvyT37rsx93CvsvLy8k6n31dXV/PFF1/w0Ucf8dZbbxEZGdlt16Dnnj0Er1tH4a9/jbkvdTGCSFIkhBBi0HMuLibqr3+lcvFiKi++uNvrDQYDXl5eHDhwoEcDkDui+PqS9Ze/4HnwIGEvvdTr+10zM4l6/HHKL7mE6oULe3SPqqq0tLR0eC4/P5/du3cTEBBAWFgYiYmJAF1Ow9c3NRHz0EPUT5pE+YoVvX4NI40kRUIIIQY3RSHm/vtRPD3Jv/32Ht82efJk8vPzrYOt+6JhwgSKbriB0FdewWvXrh7fp2tuJu7OO2kJDyf/d7/r8X2dxaqqKjt37sT3xGKTAHq9vtt1icKeew6nigpy770X9PInvztSQ0IIIQa1kDfewHPfPnIefBDFy6vH9xUUFGA2m3s886wzJddeS/2UKcTeey/Gysoe3RP5xBO4FBaS9cgjaK6uPX6WTqfrsOvs008/JTY2tletXh779xP89tsU/upX9l9zaZiSpEgIIcSg5X7kCOHPP0/JNddgmjSpx/epqkp+fj56vf60kyIMBrIfegg0jTGrVhH09tvoOuniAvD74guC1q8n7w9/oDk+vpePMuDu7m5zzGQy4eLi0qvXoWtuJubBB2k44wzKrryyVzGMZJIUCSGEGJT0DQ3E3nUXjaNHU3zjjd1ef3LSoKoqTU1NjBo1qtczzzpiCQwk9dVXqZ0xg8i//52xl15K4Lp16Fpbba5zLigg+i9/oWrhwj5PfT+5iwyOzzDz9fXt0RYebcJeegnnoqLj+7j1cUzVSCRJkRBCiEEp6tFHcaqqIvsvf+lyKruiKOTn59skDUajEW9vb6ZMmdKrNYq6Yg4PJ/eBBzj87ruYJkwg6tFHOWP5cgI+/BAsluNrKN11FxZfX3LvuqvPU98TEhKs/52bm0tMTAz6XowHcj98mJA33qD4hhtojovrUwwjlSRFQgghBh3/Tz4h4NNPybvjjm7Hw+j1epKTkzl69CiANQkKDQ3Fzc2NgoICu8bWEhND9l/+wpG1a2lMSSHmoYc447LLiLvjDtzS08l65BFUT88+lV1bW8uoUaOsP2/durXXLV2RTzxBU2IiJVdf3acYRjJJioQQQgwqPt99d3z6/ZIlVC1Z0uW1besRJScns2rVKurr68nPz6esrIysrCyMRiNNTU1Y+rjOUFeaExLIevRRjrz5Js2xsfhu2ULhb35D45gxfSpPVVXKysqsP+/cuZOUlJReLymgUxSao6PBDt2GI43UmBBCiMFBURj10kuE/fvfVM+bR94dd3R7i8FgIObEVh96vZ558+a1u+bMM8+ksbERTdN6NS7nf2Ep6HS6TruwmkaPJvPvf8dYXY3Fz6/X5Z/s5PhycnJ6PeMMoH7KFAI+/hg0TVav7iVpKRJCCDHgDLW1JNx6K6NefpnCNWvIeuwx1FNmYZ1KURSys7OZPn16l9eNGzeO8vLyPiVEqqpiMBh6NKbndBMivV7PuHHjACgrK+tTQgTHkyKnykpccnNPK56RSJIiIYQQA8otPZ2Un/0Mj8OHyXj6aUquu67bhQZVVcVkMnHWWWf1KGFZunQpqampvZ6er9frqayspKqq6rQWgeyOqqoUFRUxevRoAPbv39/nlbhN48ejGQx47dljzxBHBEmKhBBCDBj/Tz8l+brrUDw9OfrGG9R30+rTRlVV3NzciI6O7vGzrrjiCo4dO2a9v6eamppwdnamtbUVRVGwWCx2T5DaEru2f5eXl/d5HJTq7k7DGWfgtXev3eIbKSQpEkII0f8sFiIff5zY++6j+txzSX355R5tVtqWjBQVFTFjxoxePdJoNHLxxRdTVFREdna2tTyLxdLuH0VRUFUVVVWpr69n7ty5eHp6kp2dTUZGBmlpaWRlZVFaWkpTU1OHcbaV1ZPWqdTUVBYvXmz92WAw9LmlCKB+8uTjSdHpLlw5wshAayGEEP3KWFFB3B134HnwIHm33358o9Juxvuoqoper6ekpARnZ2cuueSSPj3b1dWVpUuXApCZmcmPP/5oTVw6a/2ZNWsWcHxsUtuYn1M1NDRQUlJCeXk5NTU1mEwmzGazdUySm5sbXl5eeHl52SQ7mqZx7NgxrrzySmsrkaIohIWF9WkMVJv6yZMZ9eqruGZl9XpV7ZFMkiIhhBD9Jvi//yX82Wex+PiQ9uKLNIwf3+X1bTPG2qaqL1my5LRaUE4WHx9PvJ0SBg8Pjx6VpygKFRUV5OXlUV1dTWBgICtXrrS55uDBg+22+ugt04QJqEYjXnv2SFLUC5IUCSGE6Bc+W7YQ+dRTlK1YQfENN2Dx9+/02rZkqKKiArPZzJIlS+yyXcdAMxgMhISE4O3tDYCbm5vNeVVVOXToEElJSaeV/GmurjSMHYvX3r2UX3HFacU8kgz93zAhhBCDnq6lhfBnn6V63jzyb7+90+6ytvE3VVVVNDQ0cMEFF+Ds7NyfoQ6odevWkZKSYpeyTJMnE7RuHahqt7P5xHFSS0IIIRwu6L33MNbUUPDb33aaEKmqSm1tLbm5ucyZM4dLLrlkxCREqqry9ttv2607D46vV2SsrcUtM9NuZQ530lIkhBDCoYxVVYS88w4Vy5ZhjogAjo+taeseslgsVFRUWFuGPDw8BjJchztw4ADV1dVMnToVAJPJxIYNG+zWQtTGdOaZqE5OeO7dS1Niol3LHq4kKRJCCOFQo156CU2no3T1agwcT4gyMjJISEggPDycUaNG2W3w9GCXkZFBdXU1zs7OfPDBBxiNRvz8/KyLNtqT5upKw5ln4rVnD+WnDOYWHZOkSAghhMO45OQQ9MEHZK1Zg+Ljg17TMJlMLF68mICAgIEOr1+ZTCZSU1MJCQlBURSio6NxdXVF07QercrdF/WTJxP8zjsyrqiHpIaEEEI4TPizz2IOCqJk2TIAampq0Ol0Iy4hAti0aROhoaHWVjGDwdDlRrP2UD9lCsa6OtwyMhz2jOFEkiIhhBAO4fHTT/ht3kzRTTeRXVSExWJhzpw5zJ8/f6BD63cWiwVPT8/TWpCxLxrGjkV1cZF90HpIus+EEELYn6YR8Y9/0DB6NIfHj2f5eecBDKvZZDt37iQvLw8XFxecnJyIjY0lOTm5w2u//vprgoKC+jlC0FxcMJ0YV1R21VX9/vyhRlqKhBBC2J3v11/jefAgO5cv58KLLhrocOyuqqoKs9lMdHQ04eHhBAQEsH///k6vr6ioQFGUfozwf+qnTMFz3z4YoOcPJZIUCSGEsCtdayvhzzxD8cSJzPnTnwY6HIf46quvcHV1tY4P0ul0tLa2dnhta2srUVFRAzbDrn7KFIwmE+7p6QPy/KFEkiIhhBB2FbRuHS5FRRTdcsuw2JrjVKqq4ubmZjM+SKfT4enp2eH1paWluLq6drrhrKM1jhkj44p6SJIiIYQQdqNvaCD03/8md948Jl599UCH4xA7duxot4t9fX09Cxcu7PD6iIgI6uvraW5uHpAuNM3ZGdP48ZIU9YAkRUIIIewm+O23MTQ2knvddQ6daj5QVFWluLjYJrlRVZWSkpIud7ZfsGABwcHBlJaWDkhiVD9lCp4//QQWS78/eygZfr+xQgghBoShvp6Q//6X3EWLmH3llQMdjt01Njby1ltvERMTYzM+KC0tjRUrVnR7/+jRo5k7dy7Hjh1zZJgdqp88GUNDA+6pqf3+7KFEkiIhhBB2EfzWW+jNZtIuvXRYbtvx448/ttuf7OjRo6xatQonJ6celeHt7c3KlSvJzMxE07R+G2fUcMYZKG5u0oXWDUmKhBBCnDZDTQ0hb71F3gUXsGCYroczc+ZMiouLOXr0KMXFxXh5ebF69epedxPq9XqWL19ObW1t/40zMhoxTZiA148/Ov5ZQ9jwmxYghBCi34W8+SaoKgfOP5+YYbRA48n0ej0XXnih3cqbN28eubm5HDt2jODgYIe3rtVPnsyol18+Pq5oGM4KtAdpKRJCCHFajNXVBL/9NgWXXMIC2Y29V5KTkzn77LP7ZZxR/ZQpGJqa8DhyxOHPGqokKRJCCNF3FgsRf/876PXsmTu307V6ROd8fHy44oorSD+xuKKjxhk1JiejuLvjtXevQ8ofDiQpEkII0Sf6hgYSbrsN/y++IPt3v2POJZcMdEhDlsFg4Morr6Sqqoq6ujrHJEZt44pksHWnJCkSQgjRa06lpYz+xS/w3L+ftCefZGdS0oBseDrcnHfeeUybNo3MzEyamprsPgi7fsoUPPbvR9fJliQjnSRFQgghesUtNZXka67BYDKR+vLLNMycSWho6ECHNWx4enqycuVKkpKSSE9Px2Kx2C05qp8yBUNzM+6HD9ulvOFGkiIhhBA95vPdd4z+xS9oDQ4m9dVXaYyLIy8vj/nz5w90aMNOcHAwq1evJigoiNzcXLskRo2jR6N4eEgXWickKRJCCNE9TSN47Vrif/c76mbMIO3FF2kNCADA399/WG7pMVjExcUxZ84campqTj8xMhionzRJBlt3Qn6LhRBimNI3NdlnryuLhcjHHyfyiScoXb2arEcfxeLkhKqqlJWVMXfu3NN/xiAxEPuS9URISAgBAQGoqoqmaadVVv3kyXgeOIDObLZTdMOHrN4khBDDjFNZGaGvvkrghg2Yw8LIv+026mbN6nU5Lvn5uB8+TOBHH+G1Zw+5d95J6cUXY9DryT52jPDwcC644AIHvIL+t3fvXo4ePUpcXBylpaWEhoYyY8aMgQ7LxuTJk/nwww+JiIg4rXLqp0xB39KCx6FDmCZNslN0w4MkRUIIMUwYq6sJfeUVgt5/H9XNjfLLL8c9NZXEW26hdtYs8m+7jZbo6K4LsVjw3rmTkDfewPvEuBNzQADpf/87tdOnk56ezpgxY7jiiiv64RU5ltls5rPPPkNVVaKiokhKSsJgMBAeHo7BYODNN99kxowZxMXFDXSoVsuWLePtt98mNjYWnU7Xp1WwmxITsXh54bVnjyRFp+h191lhYSGrV68mICAAd3d3JkyYwN6T+iY/+OADFi1aRGBgIDqdjp9++qldGWlpacyaNYuIiAgefPBBm3MxMTHodDp27Nhhc/y3v/0t8+bN6224Qggx7OlaWwn+738Ze/HFBG7cSMl113Hwww8puPVW0v/1LzIffRTXrCzGXHEF4f/4B3qTybYATcPj4EEiH3uMceefT+Itt2CsqyPrkUf4at063vvHP9gXHExgYCCrV69m0jD4Q5qbm8vGjRuJiIiwtry0JRht/05MTKSwsJCKiooBi7MjK1euxNPTk7y8PIDed6cZDJgmTZLB1h3oVUtRdXU1s2bNYv78+Xz22WcEBweTmZmJr6+v9ZqGhgZmzZrFZZddxvXXX99hOWvWrOHqq6/mrLPO4pe//CXnnHMOs05q2nV1deX2229ny5YtfXtVQggxQnhv307kE0/gkp9P+YoVFN1wA8pJn8nodNSccw61s2YR8t//EvraawR88gmFa9bQcOaZ+H/+Of6bNuFSWIg5KIiK88/n8IQJGKdM4cxx4zj3xGDq4WTz5s3odDqioqIAOh0kbjAYcHNz4/vvv+fiiy/uxwi7d8YZZ5CcnMyHH35IUFAQLi4uvWo1qp8yhfCnn0bX0oLm4uLASIeWXiVFjz76KJGRkbz66qvWYzExMTbXXH311QDk5OR0Wk5NTQ0TJ05k3LhxhIWFUVtba3P+xhtv5Pnnn+fTTz9lyZIlvQlRCCFGBJf8fCL+/nd8t26lbsoUMh99lOaEhE6vtzg5UXjddVQuXUr4008T89BDx497elJzzjnk3HsvtePGUVRayvz58/Hx8emvl9JvLBYL7777LklJSWia1qMZc5qm0dzc3A/R9Z7BYODSSy+loKCALVu2kJycjKqqPXpd9ZMnozeb8Th4ENOUKf0Q7dDQq6Ro48aNLFq0iMsuu4wtW7YQHh7OTTfd1GmLUGcefPBBzjvvPJqamrjwwgtZtGiRzfmYmBh++ctfcuedd7J48WKZ6imEEG0sFkJfe41RL79Ma0AAmX/9KzXnnAM6XbtLNU2zdq1kZWWh0+nw9/en5cEHOTh/PlpJCXXTphEaE4PRaKQwL4+pU6cOy4SouLiY77777vi4oeZmgt98E//PP8fi50fJdddRN316h3Wo1+uJjY2lsbERd3f3AYi8exEREVx11VV88cUX6HQ6fHx8um01akpIwOLjc3xckSRFVr1KirKysnj++ee57bbbuOuuu9i1axe/+c1vcHFx4Wc/+1mPy1myZAnl5eXU1dV1uiz8Pffcw6uvvsqbb75pbX3qqdbWVsx2mmrYKkuhW0ld2JL6sCX1YcsR9eGam0vkI4/gnplJ7tVXU3r11ce7Pjp4lqIoNDQ0UFlZydSpU1m2bJntBWPHWv+zqamJgoICFi5ciF6vp6mpye6xO6LMntq1axdNTU2EjxqF18aNhL7yCsa6OirPOQeX3Fwi/vhHGkaPpvTqqztNjnbv3s3UqVPtFpMj6uPss8+mrq6OTZs2kZiYiKqqXSZH5VOnYjxwwG5/L09Hb94vjvys6VVSpKoqU6ZM4eGHHwZg4sSJHD58mOeff75XSRGAi4tLl/vkBAUF8fvf/5777rtvWMxyEEKIPtM0/D/7jIinn8YcHEz600/TlJzc4aVt3SeZmZksWLCAwMDAbot3c3MjMTHR3lEPOFVV+fDDD4mKisK/pYWYP/0Jr/37qV6wgOL/+z/MoaGgaXju3UvIG28Qd889NCYkULp6NbWzZsGJXgpFUSgoKLBrUuQo3t7eXH755ezdu5eysjJCQ0PRdZDkAZjGjyfi2WfRNzSgenj0c6SDU6+SolGjRjFmzBibYykpKbz//vt2DarNbbfdxnPPPcdzzz3Xq/ucnJxwdna2ayz2Lm8ok7qwJfVhS+rD1unWh665mai//pXAjz+m/OKLKfjd71Dd3Ois1NbWVkwmE9dcc81pPddR3Nzc+uU5FRUVfPHFF4yOjydwwwbCn38e1dmZ7CeftHYXtdWheeZM8mfMwHPvXka9/DJjbr+dpvh4iv/v/6g+5xxUo9E66NreHFUfs2fPxmw2s379emuXmq+vL0bj//7sN06diuuTTzLl4ospufZaSq65xpoIDpSevF8c2bLVq6Ro1qxZpKWl2RxLT08nurt1L/rI09OTe++9lwceeIClS5c65BlCCDFYOZWUkPC73+Gak0P2gw9S1YOJJ0VFRVx66aX9EN3gtXv3bqqqqphUXU30VVfhmpVF5YUXUnDLLbYz806m02GaMoWMKVPw+OknRr38MnF33UVzdDTFP/852rnnUlpaSkhISL++Fjie6G7bto26ujoCAgIIDw8nIiLCJsHpiLOzs01Pi8ViobCwkMLCQiorKzFZLFT87W+cuX07Yc89h+e+fWQ/+GDndTQC9CopuvXWW5k5cyYPP/wwl19+Obt27eLFF1/kxRdftF5TVVVFXl4eRUVFANYkKjQ0tE+7KN9www08+eSTrF27lmnTpvX6fiGEGIo8Dhwg/ve/R3VxIfXVV2lKSuryekVRSE9PZ9WqVf0U4eDT1NTEBx98wFgXFyb/+98Efv45pvHjSX39dRpTUnpcTsOECRx7+mncDx1i1MsvE3v//YT85z98+ac/sWz1age+AluqqrJ+/XoCAgLw8vLCy8sLgMrKSkpLS6mpqaG8vJyIiAhmz57dbZJkNBqJjo5u15Dx07x5pCUmMuPZZxl7ySUU3HorlUuXdji2arjrVTvZWWedxfr161m7di1jx47loYce4qmnnuKqq66yXrNx40YmTpxoXfp95cqVTJw4kX/96199CtDJyYmHHnpo0E6JFEIIe/P96iuSfvlLWiIjSX399R4lRKWlpSxbtmzEztbdvXs3337yCed98AHjVq7E+8cfybnnHtL+/e9eJUQnaxw7lswnn+Tof/6Da2EhZ3z4IdnZ2XaOvGNVVVWsXbuWmJgYazJ0MqPRSGBgIImJiXh5efHNN9/w6aefoqpqr581YcIEZvzpT3z82GNUn302MQ8+SOxdd2GsqrLHSxlSdNrp7iw3iNTV1eHj48O3336Lp6enXcps67uUcRJSF6eS+rAl9WGrr/UR9O67RD7+ONULF5Jz//1o3dyvKAqNjY0EBwe3G/M5mLTNtrL3GJq21qGzysuJeuIJnCoqKPrVryhfscKuixKOevFFQl99lT2vvUZ1QEC7pWR6q6v62LNnDxUVFfj7+/d4QcaTB9hPmTKlz1uT7N+/n9Y33mDCSy+BplG4Zg0Vl1wCfdhOpDd6834xmUzMmzeP2tpavL297RqHJEXdkA/6/5G6sCX1YUvqw1Zf6sMlJ4czLr+c8ssuI/93v+t20KuiKFRUVJCQkEBSN61JA80RSdGuXbuoP3iQSa+/jt9331E3dSp5t9/e/f5ufaBrbuaMyy6jOSqKY888Q3FJCRdeeGGfy+uoPlRV5f333ycqKqrrfc00DfejRwnYuBGfbduoWryYohtvBKPRuhSDm5sb06dP73Nsn/znP8z99FOCPvqI5shIyq64AtPkyTTFxXWYIOlaWvA4eBCPo0fRdDpaIiKonT0buunSazNYkiLZEFYIIQaJsBdewBwcTMEtt/QoISouLmb69OkDMvh3IDU2NrL+gw+Y/dNPTHnmGSw+Pl0uYmkPmqsreXfcQeItt+D/0Uc0L1zI0aNHSelj11wbVVU5fPgwqampaJpGfHx8p9caq6vx/+wzAjZuxP3YMczBwdRPnkzo66/jvXMn2X/+My1RUXh6eqKqKhs3buSiiy7qdUxubm6s+OUv2T5uHBkLF5Ly7rtEPvkkOkVB8fCg4YwzaDjzTACcS0pwzczE7dgx9BYLiqsrGAwYGhpoiosj/7bbqO9jcjYQpKWoG/Lt93+kLmxJfdiS+rDV2/pwycnhjMsuI+/226lYsaLLazVNo6mpidDQ0CGzvpC9Wop27dpFZV4e0557Dv/NmylduZKim25C7afVpmPuuw+frVs5+M471Lq5UVBQQEBAAOPHjycsLKzH5TQ1NfHNN9/g7OyMv7+/dSxQuzFhioL3Dz8QuHEjPt99B0Dt3LlUXHTR8YUmDQbcDx0i9t57caqoIP/3v6fyoovQAJ1OR0FBAQ0NDR3GoKoqQUFBnHvuuZ22SlVXV7N9+3ZCvLzwSkvD48ABPPfvx+PwYTSDgZZRoyj386NpzBgSrrkGl7POoqqmhtJPPyXwwQcJysig/IILyL/nHjQnp07rY7C0FElS1A35oP8fqQtbUh+2pD5s9bY+ov/0J7x/+IFDH37Yo7EwFRUVpz2upT+dblLUNnYoOTKSxFtvxePoUbIfeojaefPsGGX3DDU1nLFiBfXTppH9l79gsViss77Ky8upqKjA3d2dpKQkUlJSOkw2qqqq+Oijj0hKSsLJyanDxRVd8vMJ2LiRgE8+wbmsjMaEBCqXLaPy/PM7nDKvb2wk8m9/I3DjRqrPOYfcu+5C6Wa7FkVRMBgMHDt2jFmzZhEREdHhdfv376exsRGj0YimaRgMBioqKqiqqmLmzJmdL8ujaRT99a+E3HcfTWPGkPXoo7R2smizJEUOIEmRY0ld2JL6sCX1Yas39eFcXMzYiy+m4Ne/pqyDKd+qqqLT6dDpdLS2tpKVlTXkpt6fTlJUWVnJN998Q1xwMEm33YZ7aioZ//wnDRMm2DnKnglcv57ov/yFI2+91W5moKIo6PV6dDodDQ0NFBYWotPpiIyMZOLEiezevZuWlhbc3d0xGAztfj/0DQ3E3X47Pjt2YPH0pOr886m86CIak5N71DXo+9VXRD/8MIqHBzULFmAOCsLQ2IhTeTmqmxuKlxcWLy8ULy+aY2NpTE5G0TQaGxtpbGzk7LPP7nC2W1ZWFnv27MFsNhMZGcns2bN7PAhc2b6dlqVLcVIUcu+9t8NEVpIiB5CkyLGkLmxJfdiS+rDVm/qIfPRR/L/4goMff4x6StKgKAo1NTU0NDQQFxdHSkrKkKzjviZFBQUF/Pjjj4R5epLy61/jmpt7PCEaP94RYfaMxcLY5ctpSkgg84knurxUVVVr60pbq5KqqlgsFuCU3w9FIe6OO/DetYu822+nesECNFfXXofnXFBA+LPP4p6WhnNpKYqnJ62BgehaWjDW12Oor0d/4vezMTGRoptuonrmTPQGA4qiUFJSQl1dHV5eXiQlJR3fRPd0Z5+Vl1N4wQWE795Nyc9+RuHNN9uMmxssSZEMtBZCiAFkrKgg8MMPKf75z9slRAAGg4EzzzyTUaNGDUB0Ays1NZXc3FxGBQaSdNttuOTlkfbCC53u+9ZvjEaKrr+e2AcewP3IERq7WArh5DFCbd1sp44b0jc24v/ZZ4S89RYueXlkPv74aXULmiMiyH7kkS6v0TU343ngAKNefpmEW2/FNG4chWvWYJo8mfDwcEJCQjAajTQ2NrJt2zaKiopQVZXQ0FDGjRvXoz31bAQFMeqHH9j7s58x6Y03jk/3v+WWPr9GR5GkSAghBlDIm2+iOTlR3snG1/X19SMyIdq7dy/19fX4+foS+5e/4Ll3LxnPPDPwCdEJVeefT+hrrxF3552UrlpF7Zw5mHvx/0nX2ornvn2Efv01fl9/jb65mZq5c8n+059oHDvWgZEfp7m6Uj91KvVnnYXXzp2EP/sso2+8keLrrqPopptsVsf28PAgPj7e2uKVm5vLrl27qKqqws3Njbi4OMaOHYtTFwOpAfQGA6NfeIFDbm6c+fLLmENDO/29HyiSFAkhxAAx1NQQtG4dZStXonQwjkNRFMrLywcgsoG1ZcsWjEYj7u7uRPz73wR+9BFZf/6zdSPXQcFgIPsvfyHs+eeJ/PvfiXr8cVpCQ2lMSaE5NpaW8HBaAwKOt/7pdOgbG3GqrMQ1Lw/3o0fRp6djaGlBFxhI6dVXU7F0Ka192ArrtOl01E+fTuq0aYS8/joRTz+Nc3Exuffdh2Y0Hp9yn5UFBgOtfn7Hb1EUYgwGIlxdsQQGoqoqu3fvprCwELPZTGBgIGPHjiU8PLzd4zw9PXG9/XYK6uuJfOIJdBYLZYMoMZKkSAghBkjwO++AplHWxaDp2NjYfoxo4H366acEBASg1+kIXbuWsJdeonDNGqoXLx7o0NppGj2azKeewlBfj9eePXgcOIB7WhoBH3+Mc1lZh/eYQ0JoTEqi/Gc/o27aNNSkpMGxx5hOR+k112AOCyPm/vvx2rsXQ0MDhsbGLm/TdDqaEhMxjR/PqJQUGmJisBiNlJSUcPjwYcrKynB2diY2NpbJkyej1+tJTExk7dKlzAcinnqKgI8/JuMPf+iXFrLuSFIkhBADQG8yEfz221RccgmWE9/AT6ZpGllZWaxcuXIAohsY69atIyYmBp3FQtSjjxK0fj3F115LybXXDnRoXVK8vKiZP5+a+fOtx3StrRhratA3NoKmobq7Y/H1tW7bYh1YPBgSopNUn3ce5tBQAjZupCUigqb4eJrj40HTMFZXg16PptejU1X0jY24FBTg+dNPeO/aRdC6dehOzN1qGDOG6gULCFq0CEtICHq9nvXr1xMREcG0adOYefbZ5I8eTfXSpUT99a8k3XILlYsWUblmTYfvh/4is8+6ITNq/kfqwpbUhy2pD1vd1UfIa68R9sILHPrwQ1qDg23OKYpCTk4Oy5cvP/1ZP4NEV7PPVFXl7bffZvTo0Rjq64m7/XY8f/yRvLvvPr5b+zA0HN8v+oYGXPLzccvKwvfbb/HZts3aPVZ4881YDAZUVaW5uZl58+axdu1a4uPjMeh0eG3YwKh//xu35mYKb7qpy/3WZPaZEEIMI7rmZkLeeovKCy9slxABNDc3M2PGjGGTEHXFYrHw9ttvH19qoLCQhN/+FqfKSjKeeWZwjSES3VI9PGhKTqYpOZmqJUuOt4a+9x6jXnwRrz17yHr4YZpO7OuWmZlJUFCQ9Xe88sILqZ09m9h//Yvov/4Vn++/J+vRR+26qW9PdL25jhBCCLsL3LABY20tJddc0+6cxWIhLy+PyMjIAYisfzU2NvLuu++SnJyM+9GjJP/85+jNZlJfeUUSomFA9fSk5LrrSH3tNfQtLaSsXk3QRx/h5upKXl4eiqJQV1dnvd7i60vuffeR8c9/4vv998Tcf3+/xyxJkRBC9CNdayuhb7xB1cKFmDvYVsFoNBLcQevRcFNVVcUnn3xCYmIiPjt2kHTDDbSMGkXqa6/REhMz0OEJO2oaPZqj//0v1YsWEfPQQyTcey8+QGBgIN7e3iiKYnN93bRpWLy9u90U2REkKRJCiH4U8NFHOJeWUnLddZ1ec9ZZZ/VjRP2vsLCQrVu3Eh0dTeDnn5Pw299SP2UK6f/614AOshWOo7q5kXvvvWQ9/DA+27dzxurVeBw8CNCum9jvm28w1tVRevXV/R6nJEVCCNFPXLOziXjqKSqXLKE5Lq7T61pbW/sxqv6Vnp7OwYMHGRUaStibbxJ7771ULllC5uOP92lLCzG0VC9cyJG33qI1IICk66/H/dAhm/POBQVEPvYYtTNn0piS0u/xSVIkhBD9QN/QQNwf/oA5NJS8O+7o8toDBw70U1T9a//+/RQUFBAMjL7tNiL++U+Kr7uO3PvuA6PM+xkpzOHhpL30Ek2jRxN7333ompsBMFZVkXjzzSheXmQ/+OCAxCZJkRBCOJqmEf3wwziXlZH52GOo7u6dXqooCmWdLPw3lG3fvp2mpiZCcnI4c/Vq3I8eJeMf/6BozZrBsXih6F9GI9l/+hPOpaVE/POf6FpaiL3nHvTNzWQ88wyKr++AhCVJkRBCOFjg+vX4f/45uffc0+0gYoPBwOjRozl0SrfCUPbZZ5/h7OyMR309SX/4Ay3h4RxZu5a6WbMGOjQxgFpiYii8+WaC332X5GuvxTUnh2NPPYU5LGzAYpKkSAghHMj12DEin3iC8ksvpXrhwh7doygKP/30k2MD6yfffPMNgYGBGDWN2IceQjMayfzb37D0dpd1MSyVXXYZLaGhuJSVkXvPPQO+4a904gohhIPoWlqIu+sumiMjyb/tth7fZzAYSEpK4tixYyQkJDgwQseqr6/HYrEAEPbii3gcPUrW009j8fcf4MjEoGE0kvbKK5CXR8O4cQz0+t7SUiSEEA4S9sILuBQWkv3ww32aWbVjxw4HRNU/qqur+fjjj/F3cyP85ZcJ/uADCn/1KxrGjRvo0MQg0xocPGh+L6SlSAgh7EzX2krIq68S9OGHFNxyS5fT7ztjMBhITEykoKCAiA4WeRxMWltbKSwspLi4mKqqKkwmEx4eHsTHx5P8i1/gceQIOddeS8Ullwx4S4AQXZGkSAgh7MgtLY2YP/0JCgspvuYaqi+7rM9l6XQ6vv32W1avXm3HCHuvvr6eo0ePUllZSX19PWazGZ1Oh5ubG97e3vj4+KDX63F2diY0NNS6QrFbWRmeBw+S9ec/U7pgwYC+BiF6QpIiIYSwB4uFUa+8wqiXX6YpLo7055+nKSEB59OYbm4wGIiLi6O8vJygoCA7BttzW7ZsobW1FT8/P4KDgwkMDERVVfR6PfpOtmFoW6HYe8cONL1eZpmJIUPGFAkhxGlyS08n5Wc/Y9TLL1N83XWkvv46TXYaIG00Gvnyyy/tUlZvbd68GXd3d3x8fKzH9Ho9RqOx04ToZN4//EDD2LEoXl6ODFMIu5GWIiGE6CXn4mI0vR7V1ZWg994j7KWXaIqN5eh//vO/KcVmc4/K0jQNXRetSQaDgYiICGpra22SE0czm800NDTg6enZowSoHYsFr927KbvySvsHJ4SDSFIkhBC9EPKf/xDx9NPWnzWDgZJrrqH4F79Ac+79MOK2hKir5MjNzY1NmzZxxRVX9C3oPvjwww+JjY3tMmHriseRIxjr66mbPt3OkQnhOJIUCSFED7lmZRH2r39Rvnw5NXPnom9spDk2lub4+NMqNy0tjfj4+E7H6ej1eoKCgmhqasLNze20ntURRVFobm6mqamJ5uZmtmzZQnJyMpqm9blM7x07sHh50TBmjB0jFcKxJCkSQoieUFWi//xnzKNGkX/rrXbZ0b1twHJsbCyNjY24uLjg5OTUYWLk4+PD4cOHmTJlymk/t82GDRsIDQ3FycnJ5nhSUhJAn1uJ4HhSVH/WWbLRqxhSZKC1EEL0QOAHH+B54AC59957WgmRpmlomoaiKGRlZZGXl8eUKVOYP38+zs7ONDQ0WKe0n3pfQUHB6bwEG3V1dfj6+rZLiIC+jSE6iaG+Ho9Dh6ibMeO0yhGiv0kKL4QQPRD83ntUnXsupokT+1yGoiiYTCaqqqqYN28eU6dOtTk/ZcoUUlNTyc3Nxc/Pzzq1va1Fqbm5+bRew8k+/fRT4k+z268zXrt2oVNVGU8khhxJioQQohuux47hlplJ4Zo1fS5DVVUaGxtJTEwkMjKy0+uSk5Px8fFh8+bNBAQEEBgYSEFBAU5OTixfvrzPzz+Vh4fHabcIdcZ7xw6ao6MxjxrlkPKFcBRJioQQohv+n3+Oxdv7tLqD9Ho9Fouly4SozahRo1i1ahWqqlJQUMDEiRPtnsA0NDR0uxxAn2ga3jt2UDtnjn3LFaIfyJgiIYToiqbh//nnVJ9zDloH4296QlVVjh49yrnnntur+/R6PVFRUQ5p0bFYLB2OXTpdLnl5uBQXUyvjicQQJEmREEJ0wePgQVyKiqhatKhP92uaRlpaWr+uMdQT4eHhGB0wM8x7xw5UoxHTpEl2L1sIR5OkSAghuuC/aRPm4OA+D7BOTU3lyiuv7HCW10CaPXs2JpPJ7uV679hBw/jxqO7udi9bCEeTpEgIITpjseD31VdUn3cenJgJ1hOqqgKQnp7OqlWrrLPIBhMnJyfy8/OxWCx2K1PX2orXnj3SdSaGLBloLYQQnfDaswenqiqqFi/u0fWKomAwGCgpKcFisbBixQqHzfCyh7i4OLt2oXns34+hqUmm4osha/C+W4UQYoD5b9pEc1QUjW2bvHajbQf5pUuXsnjx4kGdEAFMnz6d/Px8a8vW6fLeuZNWPz+aTqyILcRQM7jfsUIIMUB0zc34bd58fIB1D6atK4pCRkYG48eP74fo7KMtabNX8ub9ww/UTZsGgzwZFKIz8psrhBAd8Nm2DUNDQ49nnRkMBvz9/R0clf0tWrSI0tLS024tMlZX45GaKl1nYkiTpEgIITrgv2kTDSkptMTE9Oj6mpoaFixY4NigHMDNzQ1XV9fTbi3y2rkTQJIiMaRJUiSEEKfQm0z4bNvW41YiRVEoLS0ddNPue2rBggWkp6ef1mKO3jt20JiYiCUw0I6RCdG/JCkSQohT+G3ejK619fhU/B7Q6XTMmjXLwVE5lrOzc9+3/DixtYe0EomhTpIiIYQ4hf+mTZgmTaI1JKTba9sGWEdHR/dDZI4TFxfX5y4018xMnCsqJCkSQ54kRUIIcRJjRQVeu3f3aoB1SA+Sp8Fu7NixtLS09Olenx9+QHVxwTRhgn2DEqKfSVIkhBAn8fvqKzS9nuoeDJpWFIXc3FzmzZvn+MAczMnJicLCQjRN6/W93jt2UD95MpqLiwMiE6L/SFIkhBAn8f/8c+pmzEDx9e3yOk3TKC4uZvLkyYNyG4++MJvNvR5srWtuxnPfvuPrEwkxxElSJIQQJzgXFOB58GCXXWeapmE2m8nOzmbRokVDfizRyQIDA3u97YfXvn3ozWbqZL8zMQxIUiSEECf4f/EFiqsrtXPndnqNTqejurqayy67DFdX136MzvEmTZrU65Yi7x9+wBwcTHNsrIOiEqL/SFIkhBAAmob/pk3Uzp2L6ubWwenjY23S0tJYsmRJf0fXL4KCgsjKyurV6tbWqfh9nc4vxCAiSZEQQgBux47hlpVF1eLF7c4pioLZbCY3N5eVK1cOQHT9x9XVtcfrFTmVluKWlSVT8cWwIUmREEIAfp9/jsXHp90feE3TyM/PJzAwkEsvvdRum6cOVhdeeCF5eXk96kbz3rkTTaejburUfohMCMfr3Yg6IYQYjlQV/88/p3rBArSTtupQVZXMzExWrFjR6wHIQ5XRaGTMmDFUV1d3O6vO+4cfaExJ6XamnhBDxfD+yiOEED3gceAALsXF7brOsrOzWbly5YhJiNokJydTUFDQ9UWKgveuXTLrTAwrkhQJIUY8/y+/xBwUhGniROD4GKK0tDRWrFgxwJENnAsuuACLxdLpefe0NIy1tTKeSAwrkhQJIUY8rz17qJ09G/R6FEWhurqahQsXDvvxQ11xd3ensLCw0/NOFRUANEdG9ldIQjjcyH3HCyHECYbaWlqDg4HjA6v9/PwIDAwc4KgGXld7oVm8vQEw1tb2VzhCOJwkRUKIkU3TMNbVYfHyAiAvL4+pMpsKOD7QvLM1i5yqqo5f08GaTkIMVSNr9KAQQpxC19KC3mym1cuLtLQ0h6xDpKoqGzZsoKmpCYPBgMViIS4ujpkzZ9r9WfakaVqnG8T6bN1KU1wc5rCwfo5KCMeRpEgIMaIZ6+oAqNHpWLRokUPGEW3YsIHo6Gg0TUOn02GxWDAajaxdu5YLL7wQrxOtVEOGouDz/fdUXnTRQEcihF1J95kQYkQznEiKDIGBBAQE2L38qqoq/P39rQkRYJ3iHx8fz6ZNm7qc5TXQOlrd2uPQIZyqq6k5++wBiEgIx5GkSAgxoulragCYsGCBQ8r/7LPP8PDw6DC5MBgMxMXF8e233zrk2afLYDB02HLms3Urrb6+NJx55gBEJYTjSFIkhBjRnEym4//h52f3si0WC/Hx8Z12ybWN1ykpKbH7s+3B1dW1w+O+3313fAmDbla8FmKokaRICDGi6Ssq0HQ68Pe3e9lGo5HKyspOz+t0Or7//nvOHqTdUP4d1IlzQQFuWVnUDtKYhTgdMtBaCDGiteTkoAsJAQdt5VFTU0NQUFCH+4jV1dVx8803d7vH2ECorq7G09Oz3XHfrVtRnZxkJWsxLElLkRBixNI0DWN5OThwWnlgYGCHSY/FYqGwsHBQJkQAOTk5HR732bqV+ilTUD08+jcgIfqBJEVCiBFL0zQ8S0ogOtphzzCZTB2u9WM0Ggf1qtkdjXPSm0x47d0rXWdi2JKkSAgxYul1OgJyc2HSJIc9o7m5ud2q0KqqUldXx9y5cx323NNVW1uLoig2x3y2b0enKNTMmTNAUQnhWDKmSAgxYjkXFuJsMmEZN84hH4aVlZUkJCRYu8g0TbMmSHq9HrdBvEWGxWJp18Lls3UrjUlJtIaGDlBUQjiWtBQJIUYs99RUAL6tr3dI+YcPH7Yu1KgoCqWlpWRlZeHt7T2oW4kAnJycrLEDYLHgs22bdJ2JYU1aioQQI5Z7airm4GAsAQE0Nzd3ui5PX5WXl1tXsy4tLWX27Nn4OWA9JEc4NU7P/fsx1tVJ15kY1qSlSAgxYnkcPUpjcjKBgYFs2LCBvLw8u5VdV1eHu7s7er0eg8FAZGTkkEmIgHbT8X22bqU1IIDGlJQBikgIx5OkSAgxMmka7qmpNKakoNPpiIuLo6CggP/+97+knuhW6yuTycTmzZsJDg5G0zSys7OZMGGCfeLuJ8ZT1m3y/e6743udOWDDXCEGC/ntFkKMSM7FxRhra2k40fJhMBhwcXEhKSkJk8nEW2+9RVVVVZ/K3rBhAxERERgMBnQ6XafbfAxWiqLYrJ/kkpODa14etdJ1Joa5ofVOFUIIO3E/ehSAxuRkm+Nticzo0aP71GKkqipRUVE2ScVQ6jYDaGxstPnZd+tWVBcX6qZOHaCIhOgfkhQJIUYk99RUzIGBWE5ZQLFtGnp2djbjx4/vdbmaprWbau/u7t73QAfAoUOHbH722bqVuqlT0ew8EF2IwUZmnwkhRqS28UQnUxQFs9lMaWkpl1xySZ+24DAYDDQ3N9tMxc/IyGDatGl2idtRvvrqK8rKyvDw8CAwMNDahWaoqcHzp5/Iu+OOgQ5RCIeTliIhxIjjmpmJ148/YjrREtS2oGJGRgbR0dEsX768z3uSWSwWmzFEBoOBlJQU0tLSTj9wB1BVlf/+97/4+fmRmJhIREQErq6u1tfvs307OlWV9YnEiCAtRUKIEUXX3EzcnXfSEhFB2cqVqKpKTU0NmqZx1VVX9alMk8nE4cOHKSgooKmpiZSUFMxms7Ur7ujRo1x++eX2fBl288UXX5ByosWsowHhPlu30jBmDK1BQf0dmhD9TpIiIcSIEvnEE7gUFnL4tddQnJ1JS0vjoosuwtvbu0/lffXVV/j5+WE0GomOjra2OimKQnNzM7W1taxevdqeL8Fu2vY2U1W1w4RI19qKz/btlA7S+IWwN0mKhBAjhu9XXxG0fj3Zd91FgY8PwXr9aScsra2t1v/W6XTWbqfc3FymT59OfHz8aZXvSCUlJQR10QLkXFyMoaEB0xBbY0mIvpIxRUKIEcG5sJDoP/+ZqvPOo+qSS/Dy8mLy5MmnXe6iRYtIS0uzthCZTCays7O5+OKLCQsLO+3yHam0tLTL84a6OgBah9iSAkL0lbQUCSGGP4uF2LvvRvHxIfuOOziammq3Li29Xs+qVavIy8ujtraW2bNnYzAYaGpqskv5jtTa2tpu5eqTGWtrAVD62LUoxFAjSZEQYtgLf/55PI4eJfXll2lxdWXBggV2f0ZUVJTdy3Q0Jycn62DwDs+fWNHbIkmRGCGk+0wIMax57dhB6H/+Q+GaNTSOHUthYeGg79bqL87Ozl2e99m6lcaEBFm0UYwYkhQJIYYtY0UFsffdR+2MGZSuXo2iKLS0tAx0WINGV0mRz5Yt+H3zDWUrV/ZjREIMLOk+E0L0maqq6HQ6dDodra2tKIpineYNx7tnjEZjuw1G+yk4Yu+/H3Q6cv70J9Dr0SwWdDpd/8YxiLm6ulJfX9/uuLGiguiHHqLm7LOpXLZsACITYmBIUiSE6BNVVamsrKSpqQmz2UxLSws6nQ5XV1dmzZpFWFgYTU1N/PDDD7S2thJ4yh5jjhby+ut47dpFxjPPYPH3B8BoNPZ7HIOZi4tL+4OaRsxDD4FeT+6994IkkWIEke4zIUSvaZpGWloaTU1NREREEBMTQ3x8PHFxccTExFBYWMhbb72FpmksWLCA8vJyLBZLv8XncfAg4c8/T8m111J/Ys8xVVXJzs5m/vz5/RbHYNfY2NjuWNC6dfhs20bOffdZk0khRgpJioQQvZaamkpYWBjh4eHo9XqMRiN6vd7mn8TERD744ANUVcXJyanfuq2cysuJvftuGs44g6Ibb8RisdDa2kpGRgbnn39+t4OLR5KCggKbn12zs4l46inKLruMutmzBygqIQaOdJ8JIXrFbDbj7++Pp6dnl+OE9Ho9KSkpbNiwAU3Tupz6bQ/OxcWEvP46gR9+iOLuTsYDD4DRSFZ6OpMnT2b69OkOff5QVFlZiZub2/FxYa2txN5zDy2jRlFwyy0DHZoQA0KSIiFErxgMBgIDA3s0cFrTNOtYI0e1FLnk5hL62msEfPopiqcnxf/3f2QvWUJOTQ1xLS1ceeWVDnnucNDQ0ICiKBiNRsL+9S9cMzNJfe01mYIvRixJioQQvdKbWWQ6nQ6j0YiHh4f1vpNnop3OrDS39HRCX30Vv6++ojUwkPxf/5qyiy8mt6KCixYtYraTU5/KHUk0TUOv1+O5dy8hr79O4Zo1NCUnD3RYQgwYSYqEEA7Tti7Q6NGjsTQ24rVtG/rNm/FNTcWo12Nwd6cpLo7G0aMxTZhAc3x8t7OdPA4eJPSVV/DdupWWsDDy7riDyqVLsRgMmEwmli9f3k+vbuhzd3fHqaGB2PvuwzRxIqVXXz3QIQkxoCQpEkI4TNs4osTEROquuoqQ9etRIiMpjI/H1c8PfWMjHocOEbhxIzpFoSkmhurzzqNmwQJUJyecy8txKitDMxhArydwwwa8d+2iKSaG7AceoGrxYjixd1dedjYrVqwYyJc7pJjNZoKCgoh8+GH0DQ1kP/gg9PdaUkIMMpIUCSEcRq/X4+TkhFtDAy6ffILpN7+h5ve/p7ysDFVV0euPT4DVtbTgtXs3fl99RfDatYS99FKH5TWOHk3mX/9KzYIFcOJeVVVJS0tj1apV/fa6hoMtW7YQv2sXAZs2kfXnP9MaGjrQIQkx4CQpEkI4jF6vJyEhgf0338w4nQ7Pe+/FMzCQAwcPYjabiYyMRFEUNIOButmzqZs9mzyzGcP27VSbTNR4emIJDsYIBDo74xwTg+GkXd0VRSE3N5fLL7/cmmCJnmk4coSov/6VysWLqV68eKDDEWJQkKRICOFYFgspmzeTOWMGEZ6euAJLlixBVVW2bt1Kfn4+Op0OT09PQkNDiU9MJHDGjHbF5ObmcvToUfz9/TEYDCiKQnV1NXPmzJG1h3qpqrKSeWvXonp4kH/77QMdjhCDhiRFQgiH8jx4EOeyMsyPPca6detYtWqVdYHHuXPn9ric6Oho9Ho933//PUlJSWRnZ3PmmWcSEhLiwOiHp9Qnn2Tmzp0c+9vfULy8BjocIQYNSYqEEA7lmp2NptfTnJREirMzb7/9dp/H/0RGRnLFFVdgMpmYPHmynSMdGVobGhj36qvUTZ5MbS+SUiFGAumEF0I4lGt2Ni0REWgnurhGjx7NO++8w4cffkhtbW2vy9Pr9Xh7e9s7zBHj6PXX41FaSv4f/iCbvQpxCmkpEkI4lGtuLs3R0TbH4uLi0Ov1HDlyhKysLEJCQmRsUD/I/+47zvjgA8pWrqQ5IWGgwxFi0JGWIiGEQ7lmZ9McG2tzrG2mmLOzM4mJifj5+bF9+3befvvtgQhxZNA0jGvWYPH1pejGGwc6GiEGJUmKhBAOo2tuxqW4mOaYmE6vadvmw8vLi8TERD766KMuy1QUhdLSUhRFsWeow97eX/2KUYcOkXf33aju7gMdjhCDkiRFQgiHcc3JAWjXUtQZTdMICAhg//79HZ7Py8vj448/pqCggK+//pqtW7faK9RhbffbbzPh9depWLaMupkzBzocIQYtSYqEEA5jTYq6aCk6WdsGsg0NDXzxxRds27aNd955x3r+u+++Y9SoUQD4+fnh6urKzp077R32sHIsNZXRDz1Eq78/+bfdNtDhCDGoSVIkhHAY15wcWgMCerUWjsFgwMXFhYCAAFxdXUlISODdd989Xp6rq7W7Ta/Xo2kapaWlmM1mh8Q/1NXW1qLddx9eaWnkPPQQqofHQIckxKAmSZEQwmFcc3J63ErUGU3T8PX1BaC5udlmLJHBYCA8PJwvv/zytJ4xHCmKwt5HHiFh3TqKfvlLGsaNG+iQhBj0JCkSQjiMa04OTT0cT9QZnU5HdXU1AKNGjbK2FLVRFAWTyXRazxiOPnz2Wc5+4QXqpk+n5JprBjocIYYESYqEEI6hKLjm5Z12S5GiKKiqCsDcuXMpKSmx/gzHW4u8ZKsKG59u2MDCl19Gc3Eh58EHQTbLFaJH5J0ihHAI5+Ji9GbzaSdFer0eX19fCgoKMBqNKIpiXeeoTWBgoEzRP2Hv3r1MfOst3I8cIeuvf8Xi5zfQIQkxZEhSJIRwCLfsbKDnM886o9PpCAgIICcnh82bN3P++edTUlLSbmzRya1HI1VhYSHO77/PqPfeo+C222g488yBDkmIIUWSIiGEQ7jm5KC4udFqh13s22akubm5sW3bNvz8/Nq1Fo10jY2NHNqwgTFPPUXl+edTftllAx2SGMIURaGpqQmLxTKiWmHlU0UI4RCu2dnHW4nstOmoXq/HYDDg6upKa2srqampI+rDuiuqqrJ+3TpmvvQSFn9/8u68UzZ7FX2mKApZWVmMGzeO2NjYEbWCvCRFQgiHsMd0/FO1JUbOzs6EhIRQXl4OQFFR0YhuOXrvvfeYs28fngcOkHP//bKNhzgtBoOBqKgovL29CQ4OJiQkpN2sz+Fq5H6KCCEcR9MckhTB8cTIaDTi4eGBp6cnKSkpLF26dMR8aJ/q66+/ZgwQ/txzlK1ahWnSpIEOSQxxqqoyceJE688TJkwYMQukSlIkhLA7Y3U1xrq6Hu951lt6vR4nJyc0TaOlpcUhzxgKjhw5govBQNyf/kRLWBiFv/rVQIckhoHq6mrc3NysPzs7O1NUVDSAEfUfSYqEEHbnaqeZZ13R6/V4eHiwadMmhz1jMKuoqCAnJ4eYt9/GPS2NnAceQHN1HeiwxDDQtljqyZqamkbEDE/jQAcghBh+XHNy0AwGWiIjHfocTdNGzADQk7W2tvL1119zRmsrYS+/TMk119A4duxAhyWGAVVVaW1t7fTccB+7J0mREMLuXHNyaAkPR3NycuhzNE1zaPmD1TvvvENyXBxx115Lc2wsxddfP9AhiWGis9YgJycndCNgRqMkRUIIu3PNyXHYeKKTGY1GgoODHf6cwWT9+vWkpKQQ9txzuGZnk/r662jOzgMdlhjm3Nzc7DKZQVVVVFVFp9MNyskRkhQJIezONTub6kWLHP6choYG5syZ4/DnDBbbt28nLCwM16wsQv/zH4quv56mpKSBDksMI3q9vsMustPdX7Ct6y0zMxNFUdA0jaQTv7uDKTmSpEgIYVf6piZcSkpocnBLkcViIS8vb8QkRdnZ2ZjNZjw8PAj/5z8xh4ZS+rOfDXRYYpjR6/WEhoaiKIpNshIQENDpWKPuKIpCTU0NLi4urFy5Ejix4Oj69UQ6eNxhbw3vEVNCiH7nkpsLOHbmGRz/dpk0glpJduzYgbu7O9779+P7/fcUrlkj3WbCIXx8fNi5c6fNsZA+btejKAqVlZWMHz+euXPnWo9//vnnxMTEDKpWIuhDUlRYWMjq1asJCAjA3d2dCRMmsHfvXut5TdN44IEHCAsLw83NjXnz5nH48GGbMtLS0pg1axYRERE8+OCDNudiYmLQ6XTs2LHD5vhvf/tb5s2b19twhRD9zDUnB3B8UpSWlsbUqVMd+ozB4ttvvyUpKQmDwUDY88/TOHo01eeeO9BhiWHKYrGQlZVlcywwMLDXMz1VVaWpqYnY2FibpCo1NRVPT89BOVGiV0lRdXU1s2bNwsnJic8++4wjR47wxBNP4Ovra73mscce4+9//zvPPPMMu3fvJjQ0lPPOO4/6+nrrNWvWrOHqq6/mww8/5KOPPmLbtm02z3F1deX2228/vVcmhBgQbtnZmAMDUT09HfaM1NRUrrzySoeVP9hUVFSgKApuGRl4/fgjxT//OQzzqdFi4BiNRkJCQmy6ywwGA3V1ddZEprsEqW25DCcnJ5KTk63H6+rqyMjIwMXFZVDOZuvVu+rRRx8lMjKSV199lalTpxITE8M555xDfHw8cLwSnnrqKe6++24uvfRSxo4dy3/+8x8aGxt56623rOXU1NQwceJExo0bR1hYGLW1tTbPufHGG9mxYweffvqpHV6iEKI/9cfMs7425Q9FdXV1REVFYTAYCNi4kVZ/f2pO6oYQwhH8/f1Zv369zTGTyUR6ejolJSU2DR0d0el0VFZWMnPmTOsxVVX56KOPBvVear1KijZu3MiUKVO47LLLCA4OZuLEibz00kvW89nZ2ZSUlLBw4ULrMRcXF+bOncv27dutxx588EHOO+883N3d0ev1LDpllkpMTAy//OUvufPOO0fECppCDCeu2dkO6zpTVZXm5mY8PT2H/SJybfbu3YvBYEDX2krAp59SuWQJGGWOjHC86OhofvzxR+vPF198MatWrSIlJQWTydTp32dN00hLS+OCCy6wOb5u3TqSk5MHbUIEvZx9lpWVxfPPP89tt93GXXfdxa5du/jNb36Di4sLP/vZzygpKQHaf4sLCQkh98TgS4AlS5ZQXl5OXV0dQUFBHT7rnnvu4dVXX+XNN9/k6quv7tWLam1ttdvmdX0dbT8cSV3Ykvqw1draChYLank5tTExdt9AUlVVFEVBURSmT59OU1OTXcu3N3vFV1JSgrOzM37ff0+r2UzxkiVDcnNOeb/YGgr1oSgKJSUlREZG4nmiO/zDDz8kIiKCgIAALBZLh/eZzWbOP/98m/fAkSNHCAsL6/R3tzf14ci669VXLVVVmTRpEg8//DATJ07kxhtv5Prrr+f555+3ue7UfkJN09odc3Fx6TQhAggKCuL3v/89991335D8ABBiJHIuK0NvsdAcFWXXctvGJ7S0tDB9+nS7lj3Ymc1mVFUl4LPPMCUnO3wAuxAn8/f3p7Cw0Pqzj48PBoOhy9ae0tJSXE/Zh+/IkSMOi9GeetVSNGrUKMaMGWNzLCUlhffffx+A0NBQ4Pg3m1GjRlmvKSsr69MYgNtuu43nnnuO5557rlf3OTk54Wznqar2Lm8ok7qwJfXxP15FRbg1NaHFx9u9XkpLS7nkkkvsWmZ/OHm38b7w9PTEx2QieOtW8u68c8j/vg31+O1tMNaHoii0traSm5vLzJkziT1pjKBOp+sy5rYvMKf+3vv4+PTovdCT+nBkQ0mvWopmzZpFWlqazbH09HSio6MBiI2NJTQ0lC+//NJ63mw2s2XLFpvBVj3l6enJvffey1/+8hfq6up6fb8Qon+55uaieHjQ2kUrcG9pmkZeXh7Lli2zW5lDRU5ODjExMQR8/DGakxNV55030CGJYU7TNJqbmwkICOCqq66ySYjg+EzItq06OtLWzX0qk8nU4fHBNm64V0nRrbfeyo4dO3j44Yc5duwYb731Fi+++CJr1qwBjmeQv/3tb3n44YdZv349hw4d4tprr8Xd3Z1Vq1b1KcAbbrgBHx8f1q5d26f7hRD9xyUvj+boaLDjVFtN07BYLCNmYPXJdu7ciaooBGzcSPW55zp0mQMh4Pj7raioyGYa/ckuv/xyMjMzO30/GgyGDvcjTElJselyUxQFs9ncrqGlbdxgZWWlNZ7+1KtPmbPOOov169ezdu1axo4dy0MPPcRTTz3FVVddZb3mj3/8I7/97W+56aabmDJlCoWFhXzxxRd93jfFycmJhx56iObm5j7dL4ToPy55eXYf86LX6/vU0jwcuLi44PXTT7gWFFBx0UUDHY4YpFRVtVvyoNfriepiTKCzszNLlizp9LzJZLKZgd5m/PjxpKenU1paSlFREenp6URGRjJlyhTrwOmamhqOHTtGaGgo55xzDtnZ2f2+lpFOG4xLSvZRXV0dPj4+fPvtt9aR8qerre9yMPb79jepC1tSH7bMLS2Mvfhi6i6/nJLrrrNbueXl5SxevNhu5fWXtpk3fR1TdPToURobG4n4+9/x+/prDn78sV1b4PqbvF9s2bs+8vPziYiIsEsS4e3tTWJiYqfny8vLycvL6/BcdXU15/ZytfXGxkbKy8vx9/e3aUBRVZW3336bhIQEm1Ymk8nEvHnzqK2txdvbu1fP6s7Ia48WQjiEsboao8lk15YiVVWtzegjzb59+1AUBc+ffqJ+0qQhnRAJx1EUhYyMDC6++GKys7PtUmZH3V8nM3ayTpaiKJSXl/f6ee7u7gQHB7crV6/XM3fuXJqamvqtG02SIiGEXbic+ObYZMfVrDVNG9QLvTmKqqr4+vri1NyMe2oqpkmTBjokMUjp9XqcnJwAuPTSS8nKyur1HmUna2pq6na4i7e3Ny0tLe2OGwwG6w4X9hIeHk59fX2/daNJUiSEsAvXvDw0vZ6WiAi7lWkwGGyW9xgp9u3bR0hICK65uehUlaa4uIEOSQxSmqZZZ3AZDAbGjRvX40kJbclT2/2KopCTk9Pt/QaDgaKionZlHTt2zCGbNF944YXtNqh1FEmKhBB24ZKXR3N4uF23oLBYLIwdO9Zu5Q0VR48exWKx0Bwbi2Yw4JaRMdAhiUFK0zSbrqXRo0eTlZXV7VR3RVEoKyujoaGBY8eOUVJSQkZGBkuXLu3Rc5ubm21WtDYYDHh4ePTtRfRA2/Zibm5udhsz3BHZQEcIYRdueXm02HEla4vFQkZGBtOmTbNbmUOBoiiEhoZiNBpRjUYaxozB68cfqVixYqBDE4PQyS1FbbrbgV7TNFpbW0lISOh06n13XFxcbFqUFEWhpqamT2X1VGRkJIBD1y2UliIhhF1Y1yiyg7YP+SlTptilvKHkhx9+wM/Pz/qzaeJEPH/8EYbPRGFhZ6cOQp43b16Xqz7rdDqqqqr6nBDB8STo5GTMYDBYk5ahTJIiIcRp0zc24lxeTstpfii2jXFo+8Z5Oh/aQ1VOTo5Nt0T9pEk4V1TgUlAwgFGJwezUpMjHx4eCLn5f0tLSetxN1plTW6cURSE/P/+0yhwMpPtMCHHaXHNzAfq0EayiKBgMBlpaWsjOziYgIIA5c+bg7u5u7zAHPbPZTGRkpM3U5Ibx49F0Ojx//PG0k04xPHU0Xd1sNmOxWGx+lxRFobi4mMsvv9zuzzQYDMQNgwkBkhQJIU6b64n1UVoiI3v1oaKqKnl5ebi5uTFnzpwRu3J1m++++86m6wxA8fKiKSkJz337qByB+7+J7nWUFDk7O7cbV9S2vEVn6wz19ZltayWdvLvFUCVJkRCiT1RVPb5Gyt69eK1dS7OfH+qJ2SeKoqDT6dDr9daWoDYWiwWdTodOpyM9PZ3LL7/cus7KSFdSUoKXl1e7P1r1kybh+913AxSVGMz0en2Hq6Z7eHh0uMaXvcbp6fV6dDodqqrS0tLCrFmz7FLuQJMxRUIIK2NFBdEPPkjAhg0YTplJoigKFosFTdNwKivD6V//Im7VKsbdeCOBZjOuTz1FZGQkdXV1ZGZmcuzYMaqrq0lPT8fNzQ1N0ygoKCAjI4Njx47h4eHBVVddJQnRCSaTibi4uA6/xZsmTsSlsBCnkpIBiEwMZnq9nogO1gZrbGxsN+6noKCA8PBwuzw3KioKg8GAXq/HbDYTY+c9DweKtBQJIawi/v53Ar74goCPPiL6kUeonziRounTqXZxQVdVhavJRFhqKkGHDqEzGuG88+CJJ2DJEmhpIQA6/IBuMxJnk/XUli1bCA0N7fCcaeJEADx/+onqIbgPnHAcRVE6XMurpaXFpovLYrFgMpns9txp06bx3nvvERkZyTnnnGO3cgeaJEVCCADcd+0i4Isv2PfrX9NyzjnEHTpE4Lffkvyvf4HFcnzvLX9/OPNM+Pe/4dJLwdd3oMMeNmprawkKCuqwy8Pi50dTbCxeP/4oSZGw0jSNoqKiDleR9vf3t/ldMhqNdm3NcXJyYtWqVXYrb7CQpEgIAa2tRD7+OObJk5n41FOg18OyZXD33VBfD62txxOgHm4fIHqnoaGB+Pj4Lvd5M02ciOe+ff0YlRgMFEWx7gGoaZrNgomqqtLc3NzunvLyckJCQmyONTY2Mn36dIfHO9TJJ5wQguD33sMjJwfnF19sn/h4eR1vIZKEyGH279/f7Yyg+kmTcMvOxlhV1U9RicHAYDBQUFBAU1MTFoul3YKJZ511Vrt79u/fb/Ozoijk5eXJ+L0ekE85IUY4fVkZoc8/DzfcACd2Y2/7AO5KRUUFu3bt4tChQ+Tl5dHY2Ngf4Q5L+fn53e5VZZowATg+rkiMHKqqMmrUKDw8PGhpabFOeFBVldzc3A53pS8tLW33/o2Nje2vkIc06T4TYoSLevZZcHam8e67+WzdOlRVJSoqirq6OlpbWzn//PPR6/XU1taya9cuSktL8fT0JDw83LroYnl5OceOHcPT09Mhu2QPd90loACtoaG0hIfjuW8fNQsW9ENUYjDQ6/UYjUZKS0uZPXs2hYWF7NmzBy8vLxISEjq8JyAgwKblMScnxy4LNo4EkhQJMUIZKyqIeOopAjZtYsfPf05jRgYxMTHWcQt+fn7o9Xo++OADzGYzUVFR+Pv74+3t3WFXj7OzM6mpqZIU9VJzczPR0dE2Y0U6Uz9xIl4//tgPUdmZxULw22/j/+mneBcXoz9pHIym06HTNCze3mQ99ph1pp34H4PBQEBAAB9++CGrV6/ucvubgoICgoKCbI5F22lPwpFAkiIhRhqLheD33iPsX/9CdXIi65570F1wAT4nxhu0rYLb9kc66sTWHd2thtv2wS165+OPP+5x14Zp4kQCPvkEvcmE6unp4Mjsw+Onn4h67DEoKKBq4UJMF16I6upqPa9TVTS9nlEvv0zAxo2SFHXCYDCQkpLC119/3eUU+OzsbJstctpWm542bVp/hDnkSVIkxAji8dNPRP31r7hlZlK+fDlFv/oVio9Plx8EXc2IOpW/v3+7FaxF5woLCztdm6gjpkmT0Gkanj/9RN3s2Q6M7PTpWloIe+EFQt54g8aUFDKefZam0aNxdnbu8PqAzz5D1824qpGubdxZWVkZwcHBHV4zceJEvvrqK8LCwjAYDNY9yYqLixk1alR/hjskyUBrIUYAY2Ul0Q88QPIvfoHm4kLq66+Tf8cdKD4+Ax3aiLZ58+ZOk4SOtEREYA4MxGuQT813y8hgzKpVBK9dS+GaNaS+9hpNo0d3fZOqokky3SW9Xo+XlxdfffVVpwPzPT09mTZtGpWVlSiKAhxv3d22bVuH0/eFLUmKhBjOLBaC3nmHM5Yvx3frVnLvvpvUV1+lMSXFIY+rrKyUVqIeSk1NJSUlpXf1pdMN+vWK/L78ktHXXYfq4sLRt96i9Npr0U7ZmPRUbqmpuB07Rqu/fz9FOXAURaGpqQnoeCPX7hgMBkaPHs3atWs7vWbUqFFUVlba3BMdHc2GDRt6/byRRpIiIYYpjwMHSPnZz4j829+oPu88Dr3/PhWXXOKw9YZUVaXmlP3SROcOHTrU7TT8jpgmTcLj8GF0g+1bv6Iw6p//JO7OOymcPJntjz9Oa0ICzc3NpKamdnqbS04OSWvW0BwXR8m11/ZfvAPEYDDg5+dHSUkJ1dXVfUqMAJKTk/nss886Pe/s7GwzeF+v1xMbG8s777zDhx9+yHvvvden37/hTsYUCTGMGOrr0ZnNhD/7LIEbN9KQnHy8ZaiDvZHsTa/Xc+aZZzr8OcOFTqezDmrvjfqJE9EpCp4HD1LfwcJ9A8JiIfbuu/HbvJmsm24i7plniDrptc2YMYM33niDxMREm9sMNTUk3nILrQEBZDzzzJAZPH66AgICWLx4MU1NTXz11VcEBQXh7e0N0OMxeRaLxaY16FQ+Pj7k5+djNBrx8vLC3d0do9FoncZfXV1tnxczzEhSJMQw4X74MKNvuAGd2Uyruzs5f/wjlcuXQz91Z7W2thIXF9cvzxoOgoKC+pQUNcfFYfHxwfPHHwdHUnQiIfLdsoWjDz3EmLvuandJVlYWgYGBNi0TOrOZ+N//Hn1TE+nPP4/i5dWfUQ+ozZs3M3v2bAIDA7n88stRVZXMzEwyMjJoaWmxrgHWFb1e3+Xvz6JFi6z//f3339uUZ7FYKCkp6dEyECONJEVCDANOJSUk3HYbrYGBlF96KUULF1JksRAG9NcIn/Ly8m63qhD/ExsbS1lZWe9v1OsxTZgwKMYVGWpribv9djx/+ondf/wj0zpIiDIyMsjOzsbHx+d/f5g1jeiHHsLjyBHSX3gBc1hYP0c+sOLj4zlw4ADe3t6cffbZ6PV6EhMTSUxMJC0tjerq6h4lRSdPve+Mqqrk5OSQlJRkLVOn08l7tROSJgoxxOkbGki49VZUZ2dSX3mF0muuwTshgcTExH4bM2CxWDCZTP3yrOEiPDy8z7OB6idOxPPgQXStrXaOqudccnNJvvZa3DMy+PqOO5j2l7+0uyYjI4OcnBx8fX1t/siPeuklAj77jJwHHqBhBHa5GgwGfE7M/Hz33Xdt3qejR48mOzu7R+9dX1/fbq9555132g3o1zStz2OZhjtJioQYyhSF2LvvxqWoiGNPPonlxOKJFouFM844g/z8/H4Jw2g0yhoovaTX66moqOjTvaZJk9C3tOB+5Iido+oZl7Q0kn/+c8yqyu5nnuGcP/2p3TXp6enk5OTYthABvps3E/biixTedBPVCxf2Z9iDisFgwGg0Eh8fz8cff2xz7uKLL6a8vLzbxMjb29s6k60jn332GUlJSe2O63Q69Hq9DLTugCRFQgxhEU89hc/27WQ98gjNJ+2DVFhYCMCll17KsWPHrOuVOEpjY6OsmNsHLS0tffrG3piUhOLuPiBdaM55eSSsWUNjUBCe+/czY/XqdmNT0tPTyc3NbZcQGauqiP7zn6meN4+S667r79AHJVVVMZvNNsfc3Nzw9PTs0ZifgoKCTs/V1tbaPKftc8BgMJCQkMDnn3/ex6iHL0mKhBiiAtetI2TtWvJ//3vqZs60HrdYLJSXlwPHP/xmz55NVlYWgEOSI0VRyM3N7dUihOK4Sy65hKKiot7/fzEaMY0f36/7oGmahktODrE33IBLSAje27ej72Bbl4aGBtLS0tolRGgakX/7G5rBQN7dd0MfBpkPR3q9nujoaIqKimyOz5kzh6NHj3abNJeUlHR67oILLgCOrx+Wm5tLcXGx9XdNVdUebUQ80khSJMQQ5LVjB1GPP07ZFVdQfsru10aj0WYLgPDwcFauXInZbHbIwooGgwH/EbDoniM4OTkRFBTUp/8vpkmT8Ny/HxzcCgigmM0E/uc/pKxahWdwMLovv4RTNh1ts379ekJDQ9u9poBPP8Vn505y770Xi5+fw2MeSnQ6Hd988w2HDh2i9aRxYldeeSVpaWm0tLR02tXV1dR6Ly8vJk+ezMKFC1mxYgVnn322daVrvV5PWFgYaWlpdn89Q5kkRUIMMa5ZWcTffjt106aRf+utHV7T0QdoXl6eQ8YQmM1mZg/yfbgGsxkzZnD06NFetxbVT5yIoaEBt4wMB0V2nKGoiKRf/ILoZ5/FcNNNsGsXREZ2eO3OnTtJSUlp1+3jkp9P2HPPUXHBBdSefbZD4x2KdDodKSkptLS0WJMjOP6F46qrriIxMZFjx461e/9aLBYaGhp6/Bx/f39CQkJsftf8JEG1IUmREEOIsbqahFtvxRwaStbDD0MH02pVVW337fHgwYMkJCTYfV0SRVHIzMy0Ljwn+mbRokWYTKZeJUaNY8agurg4tAvN84cfSFm9Gs+aGnRbt8KTT4KHR6fXdzh+zWIh7vbbafX3p+hXv3JYrP3NUeP0AgMDycvLszkWFBRkbTU6tcurt3FMmjSJlpYWysrKSE1N7XRj2ZFKFioQYoiwLnbX3Ez6v/7V6eq/mqa1W9Rt//79NuuU2IOiKDLA2k6CgoIICwsjPz+//VicTmjOzjSMHYvnvn2UrVpl13h0ra2MeuEFQv/zH9RzzsGwdi0EBnZ5T1NTE7Gxse1iD9ywAbeMDNJfeQXVzc2ucQ6UtsUWO5rZdbpqampYsGBBj65tm8HWW/Pmzev1PSOFtBQJMRRoGlEPPoh7airHnngCcxfT3w0GAzExMdafa2trO/xj1Vdt30yzs7OtC86J05ecnExCQgIVFRU9/vZfP2nS8ZYiO605Y6yqIui//yXlyisJeeMNtIcfxvD5590mRAC7du3CxcXF5pihvp7w55+n8oILaBo92i4xDjRFUcjLy2P69OndXtfb9YAURaGsrAxXV9cOz7dt1dFGp9PJekN2JkmREIOcajYT+eijBG7aRM4DD3S7j5nZbGbChAnWn7/88ku7zAw7ORlqaGjgsssuIzw8/LTLFf8TGxvLhAkTKCkp6dH4L9PEiRhra3HNzu77QzUN723biP/d7zjz/POJePZZ6qOi0O/ahf6OO3q8gXB+fn67rp3Ql19G19JC0Zo1fY9vkGlpaWHSpEns37+/y4TEYDCQmppKXV1dj5NcVVWZP39+p+dP7aZWVVXWGrIzSYqEGMT0TU0k/PGPBK1fT84991B93nldXq9pGvn5+dZvmqqq4uLi0uEeSYqi9HhKrqqq1lV2r7jiCubMmSP7JjlIWFgYc+fOte6D1dUf1IYzz0QzGPDsy7giTcNr505G/+IXJN5yC04lJRz5xS84tmULwVu2wKRJPS6qqamJUaNG2bRiuOTnE/z225Rcey2tncxUG2oURSE/P5/Y2FhUVe0yKVJV1bozfWlpabeJkcVi4dixY4SGhnZ6zakLOsrK1PYnn2pCDFLGykqSbrwR7x9/5NiTT1J+0UXd3nNqorNt2zbCwsI6TIoaGxs5duxYjz5ULRYL8+fP56zBsAHpCODj48OqVauIiooiPT2d5ubmDv8Iq25uNIwZg1dvFnG0WPD/7DOSr7mGpDVr0JnNpP/jH3x0//2EPfwwSTNm9CpWVVX54IMPrNtWtAn/5z+xBARQunp1r8ob7ObMmcOBAweIjo7u8ouBTqcjISGBzMxMJk6cSH19fZfvNaPRyNhuWoEvueQSm7WGDAZDp11tom8kKRJiEHLJySH5uutwKisj7cUXORod3aOpt0aj0TqeSFGUTr+hWiwWCgoKWLhwYbdJkaqqZGVlySyVARAREcHq1atJSUkhKyuLqqoqwHbJBdPEicdXtu5Bcuu1ezdjrrqK2HvvxeLpSdo//sGmBx/kp9BQVlx2Wa/Xm9q3bx/vv/8+ycnJNom35549+G3eTOHNN6MNkz/aiqKQkZFBREQEBw4c6LaVVafTWbfT8PDwoLKystP3mqIoZGVl2XR7d8TV1ZXIyEgsFov1dyAsLEy60OxIkiIhBhnPfftI/vnPUV1dSX3tNZqSk2loaKCwsLDLJnhN06itrWXq1KkoisLatWuJiYnpcIC1TqfD2dkZPz8/65YgHZUHkJWVxeWnLBAp+pe/vz9XXHEF8+fPp6SkxLqnnaIo1E+ahHNZGc6d/H801NXhs2ULcb//PUm/+hWKhwdHXn+dT265hYBVq1i+YgWXX355r2cxbdiwAYvFQnR0tO0JRSHyySdpOOMMqhYt6tPrHYwMBgPx8fHs3r2b5OTkHtWXXq/H29ubzZs3M3Xq1A5bllRVpaWlhTN7uDHuxIkTMZvNNDY2AsfH+ElXtv3IlHwhBhG/L74g5v77aRg3jsy//Q3FywtFUVAUhVmzZnW5gahOp6O5uRmj0ciOHTtISUnp9Nq2D/iPPvqIpqYmFEWxJk9t4xQaGxupqKhg+fLlfZr2K+zPycnJunXDjh07yMzMJOXMM9F0OgI++YTS1avRNzfjuW8fXvv24blvH24ZGeg0jeaoKLIfeoiqxYspLilh1YUX9jmOnTt3EtnJAo4BH3+Me1oaqa+80uNB2oOdqqoUFhZy4YUX8sknnzBq1Kgez+bU6XS4ubkRExPD3r17iY6OtmlV0zQNi8VCcnJyj+OZN28era2tpKenc8UVV/T69YjOySedEIOBphHyxhtE/POfVCxaRO5998GJ6c3p6elcdNFFeHt788MPP5CQkGDzgdy2LtHRo0dZfWL8hq+vr3UGk9FoxM3NrcNvk0ajkblz53L48GECTuxjlZuba50FE9iDqdhiYEyfPp3p06eTmZlJ3pQpRL/0EqNeeQXdidbE5ogITBMnUnblldRPnIg5PBwNSEtL46qrrurzcy0WC8XFxYSFhbVLDPQNDYQ/9xxVCxfSMG7c6by8QUWv16PT6SgrKyMiIqLX90dFRQH/+8JxclKUm5vLZZdd1usynZycOOOMM3p9n+iaJEVCDAJB69YR8c9/UnjddWw97zyciosJDAwkKirKmugA1vFCJ3+4trS0UF5ezqqTFvBLTk62fvM0mUx8/PHHRERE4OzsjMFgQFEUCgoKWLJkCa6urowaNYqKigosFguTJ0/u19cuTk98fDzs3Ent3r1kvPgizoGBMGcOLQEB7RJhc0sLy5YtO63nHT58uNNWotD//AeDyUThr399Ws8YbOrr6znvvPNwd3fn0KFD1i8QPdHQ0MD48eMBWLhwIfv378fd3d06jmj1MBuIPtRJUiTEADNWVxP6yitULl5MyZo1xKsqDQ0NmEwmdu/ezbZt29Dr9SxYsICZM2fy1VdfUVVVhdlsxt3dnfnz53e5f5GnpycrV66ktLSUr776CicnJ8xmM+eee6515oper5eB1EOZTofPlClMmTKF1tZWvvzyS5ry8oiJibHpGrXHujYeHh7U1ta2O+5UUkLIm29SumpVl4uLDjWKolBYWIi7uztwfNZmT5Oitin8bd3P3t7eVFZW4u7ujsFgIDExUcYDDTKSFAkxkE7sC6VTFOu3a71ej5eXF15eXgDWqdgHDhygtLSUc889t0+PCgkJOa1uEzE0ODk5sWTJEuD42J9jx46RlJSEXq/Hzc2NLVu2MGPGjD53jcbFxfHOO+8QHx9v030W8fTTKJ6elFx7rT1exqDStuHx9u3be9V91tFss4svvpiPPvqIqqoqVqxYYbcYhX1IiirEAIp88kk89+8n87HHaA0J6fAavV6PwWDA19eXhoYGPvvss36OUgxV06ZN46qrriIgIICjR48Cx6dw5+bm8uabb/ZpU1O9Xs+MGTNobW21HvM4eBD/zz+n8KabULvYMHaoaZuGH31iSYyamhq7TH9funQpl19+ubQSDULyf0SIARKwcSPB77xD3h/+QEM365PA8Rljzs7OBAcH8+677zo+QDFsxMXFsXr1auLi4qzJUXJyMj/99FOfyouJiSE/P/94S4imEfHEEzQmJVF5GjPaBqOT9xH88ssvCQ4O7tUegm1faMTQId1nQgwA90OHiHrkEcovuYSKXjSht81akcXaRF/4+fmxevVqLBYL77zzDm5ubj0aWP/1119TUVGBn58f1dXVtLa24uTkhE6nw/err/A8dIi0f/0LBnEC0LbthqZpqKrabbKiKAolJSVceCLRM5lMPbrvZG3bfOzbt4+JEyeeVvyif0hSJEQ/M1ZUEP+HP9CYkkL+H/7QpzI8hlEXheh/RqOxx+PLjhw5gq+vL15eXhgMBvz9/VEUxZqgO1VVoRkMNMfFOTLk06IoCo2NjVRWVtLU1NTlGl7wv7WDwsPDbbq4Otou5+RnAO2XKdDrSU9Pl6RoiJDuMyH6kc5sJv6PfwQg87HH0Pqwe72qqvIBK/rNoUOHbFpIdDodRqPR+nPVokVoBgMBGzcOZJidUhSF8vJywsLCrAuRdtfS2rZ46amtaF1t01FZWUl9fX27cVp6vR5fX9/Teg2i/0hSJER/0TQiH3sM96NHyXz8cSx9mP2jaRp5eXl9WkBOiL4wm81dJhGKjw/V551H0AcfQB8GbjuSqqrk5OQwbdo0kpKS2LlzJwkJCV0OcFZVlfT09HazPF1cXDptKTIYDDg5OeHq6tpuYdXU1FQWDaPtToY7SYqE6CeB779P0IYN5N15J43d7IbdmbZmfSH6U1fdRgDlK1bgUlSE944d/RRRz6SlpXHxxRcTGBiI2WymrKys21aipqamdgtc/vTTT8TFxXWZTDk5OTFr1ixSU1OtW/OkpaXJNhxDjIwpEqIfeO7bR9Tjj1N2xRVUXnRRn8pQFAWz2cy0adPsHJ0Y6crKytiyZQstLS3odDr8/f1JTk7Gzc2N0NDQbgcXN4wdS2NSEkHr1lE3a1Y/Rd2xtgHVGRkZrFq1yprIfPDBB8THx3eZ2FgsFvLy8pgzZw5wvJVs48aNBAcHt2sFOpmmadTU1ABw1VVXUVxcjLOzM1OnTrXvixMOJ0mREA7mVFJC3O23Yxo/nvxbb7VZYbgn2j7kc3NzmTRpknWKsBCnq7i4mG+++YaYmBhiYmKsrShGo5GqqioAfHx8ui9Ip6N8+XKiHn0Up5ISWkNDHRl2p1RVpby8HDc3N1auXGk9npqaSkxMTLfrAhmNRuv7q66uji1btlh/7qq1TFVV6uvrrT+PGkYreo800n0mhANpFgvxf/wjFqORzTfdRFlVFYqitBuwqapqu26x5uZmCgoKSE9PJzc3l0svvfT4PldCnCZVVXnrrbfIzs4mMTERV1dX9Ho9RqPRuiVFm54uMFh1/vmobm4ErV/viJB7JC0tjQULFjB//nyb43v27OnR66iqqmLGjBkAfPzxx4SGhqLT6brtPjQYDAQHB8tSGcOAtBQJ4UDe27bhceQIR/71L8InTKC6upri4mKio6OB44lP26wVOD7VPjg4mJiYGEJDQ2XFW+EQ7777LqNHj7Zrmaq7O5VLlhC4YQNF118Pxv7986IoCikpKXzwwQc2myNbLBaioqJ6tC5RWVmZ9TovL69evf8CAgLYsWMHM2fO7NsLEIOCJEVCOFDI++/TMGYMTVOmAMcXz/Pz8yMrK4vJkyf3qElfCHv68ssvSUxMdEjZ5cuXE/zee/h++y01fdyjr6/akpnRo0fzzjvvWAc4Z2dn92hdL4PBwBlnnGH9ubtNX0/dXNdoNJKVlSVJ0RAnn8ZCOIhLXh4+27dTftll7c7FxMSwY5DN1BEjQ2lpaZ/2POuJ5oQETOPHE/T++w4pv6cSEhLYsmULALGxsZhMpi6vVxSF3Nxcxo0bZz3W0tLS6fUWiwWTyURmZibHjh0jIyODo0ePynpEw4C0FAnhIEHr1mHx8aHqvPPandPr9YwePZr33ntPpuyKfhUYGOjQ/bjKV6wg9t57ccnJoWWAJgWoqkpLSwu1tbX4+PiQn59PUlJSp6/bYDC0664uLCzE29u704kRRUVFPV4VXAwd0lIkhAPom5oI+OgjKpYtQ3N17fS6uLg46zdaIRytvLycoKAghz6j+pxzaPX1HdDWorZVpD/55BMAQkJCOk2ILBYLaWlp7bq92gZrdzTIWjZ6Hb4kKRLCAfw3bcJgMlG+fHm312qaRm5ubj9EJUa6rrqE7EVzdqZy6VICPv4YXXOzw5/XGYPBwKhRo2hubua8884jMzOzw+t0Oh2TJk2y/lxfX8+bb75Jenq6dTmMU+n1ekJDQ2W22TAkSZEQ9qZpBL33HrWzZ2MOD+/yUr1ej7u7Oz/88EM/BSdGsoiICDIzMx3+x7x8+XKM9fX4f/mlQ5/THW9vb+t76/LLLycjI8PmvKIopKenk5ycbD320UcfkZycjLe3d7uE6OTB1V5eXjZrE4nhQcYUCWFnHvv3456eTuGvf92j6w0GA4mJiezYsYPp06c7ODox1KmqypEjRzh8+DCKouDs7Iy7uzteXl74+fkRGBhIYGBgu/WG2gQFBVn/sDtq5qM5IoLaGTMIWreOyqVLHfKMnmpqarL+98qVK3n//fetCzIaDAamnJgZ2mb+/Pnk5ORgNBpt6kdRFOrr66msrMTLy4uwsLCeLWwphhRJioSws+B336U5MpK6XmzHoSgKmZmZkhSJLu3du9c6LiguLs7avdP2x7ulpYXCwkLy8/NpaGigoaGBxsZGzGYzmqbh4uLC0qVLOXDgADU1Nfj4+DhsbEz58uUk/P73uKWm0nRSS0x/O3WhVG9vb+t/q6pKXFyczfkdO3YQFRVlc0xRFCorK0lOTuacc85xXLBiwEn3mRB2ZKyowPebb45Pw+/Ft/C2XbaF6ExraysFBQX4+/sDWFeg7mzMi5eXF6GhocTFxZGUlERiYiIxMTF89NFHREdHM27cOLKzs9slDfZSO3s25pCQARtwrSgKRUVFzJ49u905TdNQVZWioiKcnZ1t7vHy8rK5VlVVSktLOfPMM4mNjXV43GJgSVIkhB0FbtiAZjT2qctAZrOIrmzcuJHw8PA+/Z6cnEBFR0ezZ88e3NzcWL58OXl5eY4ZY2Q0UnHxxfh/9hn6btYJsieLxYKqqqSnpzN+/Ph2XVwNDQ3odDqbFrY2BoOB6OhoCgoKAGhsbCQ9PR2LxcKWLVt4f4DXXxKOJ0mREPZisRD0/vtUnX8+yinfNntCZrKIzqiqatOicToMBgNBQUFs3Lixy9Yme6hYtgx9aysBn37qkPJPZbFYqKurw8XFhdWrV7frBgNYunQpWVlZlJeXc8EFF7Q7n5iYyJIlS7BYLBQUFODl5UVUVBTJycnSmjsCyJgiIezE99tvcS4v73AF664oikJWVhaX9fI+MXxZLBZqa2upra0lNzeXwsJCUlJS7Fa+wWAgJSWFt956i+DgYLuVe6rW4GBq5swhaN06Cpctg242Vj1dRqMRPz8/cnJyCAgIILyD2Z8Gg6HD91pjYyNfffUVdXV1RERE4OXlRXx8vDVhbBtoLYY3SYqEsJPg996jfsIEmpKSenWfwWBg/Pjx0n02wlVUVLBp0yaio6Nxd3e3Hvf29u7R3l190bbKc2erNttD+YoVJK1Zg8ehQzSceaZDnnEynU5HaGgomzdvZvXq1T2+b/369SQnJxMaGmqti5PrxGAwEBERYfd4xeAi3WdC2IHrsWN47d3bq1aitu6y/Px8u+9YLoYOi8XCBx98wOHDh0lKSrJJiNo4KmHp6I+/vdWfdRbNkZEEbNzosGecSqfT4drFSvKn2rx5s3WtolPr4uR94hyVnIrBQ5IiIewgaN06WgMCqFmwoEfXV1dXk5WVRVlZGRdccIHDxnSIwS0jI4OPP/6Y6OhoPDw8hmdroV5P+fLl+H73HcaaGoc+qu2LRlpaGhdffHGP7yssLLQmP6eO7Tv5/8nJ0/nF8CSfxEKcJr3JRMCnn1J+6aVoTk5omsbRo0eJiorC398fRVGoqKigqqoKV1dXUlJSOPfcc7niiis4//zzZfDmCLV//37y8/MJCwsDOt5ja7iovPBC0Onw/+wzu5TX2aSEkpISSktLWb16daeLV55KURSbWX1tU/mrqqpobW0lNTUVgNTUVJJ62TUuhh4ZUyTEaQr45BP0LS1UXHIJcHzA5kUXXYS3tzdBQUH9urZJW+vTyUJDQ60r+IrBITs7m7q6Ojw9PYdn69ApFF9faubOJeCTT6i5+upereHVYXknvmi4u7vj6uqKm5sbLi4uLFmypNf1uWfPHpsWoPz8fJuB2GPGjGHHjh0sW7bstGIWQ4O0FAlxOk7sc1Y9fz6twcEoikJBQUG/N7ObzWb++9//UlVVhZOTk80/JSUlHDjw/+zdd5wU9334/9fM7PXee+80CSFEkRBFVIkmQHTZThzbiuUktn52XGI7liyl2XFsx5aT2N/YcmhCVEkgIVQAiSpAIEDXe29c7zszvz+WXd1yhWt7u7f3eT4e9wB2Z2ffu3fcvPdT3u9PxzUeYXBXr17F3d19UiREZnVr1+JWWYnvhQujOo+maRQXF7Nq1SqmTp1KXl4eNTU1NDc389prr3H9+vVhnS8/Px9d11FVlZKSEp688+HGzNfXl+XLl+Pt7T2quIWJQSRFgjAK3p98gkdREVUbNgBQUlIyrLUMY6Gjo4MDBw6QlpbW7xSMLMsUFhbSaceO5YK1jo4Om1WSdlTtU6bQnpREyIEDozqP+X1ramri0qVLpKSkEBAQgCzLJCYm0tXVxcWLF4d8Pk3TkCSJ+vp6pk+fPuRpN8E5iaRIEEbIaDQSfPQoLXFxXPX2RlVVNmzY0O/uIVv58MMPOXnyJCkpKQMu1lYUhcjISA4dOjRucQmDCwsLm1SjRABIEvWrV+P30Ue4VFWN+DSKovDAAw9w/PhxgoKC+mybBygqKhry+Xbu3ElaWhpLly4lOTl5xHEJzkEkRYIwRObWAbm5uRQVFVF/9ix+Z8/i9Z3vsPPpp3nooYfGdRfZuXPncHV1JSIi4p7PK8syycnJXL58eZyiEwazbNkyMjMzJ10V84alS9Hc3Qk+cmREj9c0jYKCAlJSUvDz8+t3VEdRFJKTk4c1WuTt7S02PAiASIoEoV/mi5X5T6PRSG5uLuvXr2fr1q1sXLeO5a+/TnNYGCftUNCtoaGBjo6Ofvs3DSYvL8+GUQnDsXHjRrKzs4G+ndydlebpSf3jj5uSIqNxeI/VNFRVJTQ0lM8++4ywsLBBj29ubh5FpMJkJZIiQeiHLMvouk52djZRUVFMmzaN7du34+HhYTrg5z+H69ep+uEPCY6O5o033uDQoUOUlJSMS3zHjh3Dx8dnWAmRoih9mmMK9uPh4cHOnTuprKykq6vLqkigM6vbuBHXujr8T58e1uPKysro6elhwYIFXL16dcD3S9M0qqqqWLx48ViEK0wyYkWZIAxAkiQyMjJ47733WLly5efVbD/7DP0f/5Hyp56iPT0dN7DUmikrK+u3CeVYMhqNREdHD3tNiqZpdHd32ygqYagqKir48MMPMRqN6LqOh4cHFRUVREdHW7q3O7OOlBRaZ8wg5OBBGh97bNBjdV1H0zQqKip48sknaWho4NVXXx20D5wsy2iaJhZMCyMifmoE4R5SU1P57LPPKC0tJSQggAf+9m9xCQ6m9stfRpIkVFVF13Vyc3PZunWrzeOpqanBx8dn2I+TZZnAwEAbRCQM1WuvvUZcXByJiYmAKVEd7hSoM6jdtImEH/8Yt+JiuuLi+j1G0zR6enpob29n/fr1aJrG8ePHSUlJGfC8uq5TU1PDqlWrbBW64OQm1/9EQRgBWZbx9PQkJSWFjLfeIrCggIqXXkJyd0dVVXJycggNDR1WFd3RCAkJGfYCXU3TyMzMZMGCBTaKShiMpmns3buXxMREFEWxJEIGg2HSJUQADY89htHPj5ABdkSqqkp7ezuKorB06VIAXn/9ddLT0wcdIZUkiZ6eHjFKJIzY5PvfKAgj5FlcTOR//zfV27fTNn06ubm5+Pj4sHPnznGtWu3i4kJJScmQ1qAYjUaMRiM5OTlsuFNLSRh/+/btEy0ietHd3Khbu5agN95Auqt+lqqqtLS0EBYWxpw5cwBTi43Q0NBBF6Truk5tbS2PP/64TWMXnJtIigRhKFSVuOefpys8nOIvf5na2lqeeuopu13oHn74YXJycvpcJFRVtYwiVVdXk5ubi7e3Nzt27BjX+knC595//33S0tLsHYbDqduwAUNzMwHvvguYEngw7awMDg62dK0HU584Nze3QfvDSZJEZ2en2FovjIoYYxSEIQjbswevW7e48stfonh7s3LRIjo6OuwWT3h4ONu2beOtt97C29sbHx8f2tvbKS0txc3Njfvvv59Zs2bZLT7BxDxSZ147JHyuKyaG5jlzCDlwgJKpU/F4801SPv2UmU89hfz971sdO3fuXCorKwdMeFRVHbc1fYJzk3QnKpDR3NyMn58fp06dGrM+NebdOq6urmNyvolssr4XbkVFTNmxg8KVK1F++UtLc1VzUmTZpm8n3d3dZGdnk56ebtdPyY7yfjiKjo4OPvzwQ4KCguwdyqjpuo4kSaNK7vr7/eH/wQckfec7aLKMLEkQHQ2trVBRAXf9ntm1a5ellY15xMgcT2FhIatWrfp8h+gEIP6/WBvO+2G+1jc1NY15n0nx0UUQBqOqxL/wAq0BAQT/7ncO2W3e1dWV6dOni2kDB1RdXW2ZFpqoVFWlsLAQTdPIy8ujs7NzzGoqNS5YQNX27Vz/8pdNidAbb0B9PZw40efYDRs2kJ+fT3l5OQAtLS0UFxdTUVHB+vXrJ1RCJDguMX0mCIPw/egjvD/9FON772GIiLB3OMIE4wwD8YqiEBcXR0FBAT4+PpSVlWE0GklLS0NV1dHt9DIYKH/uOTRNo6i9nfjp02HGDNi1C9assTrU09PTMj3W1tYmkiDBJsRIkSAMQFVVvP78Z/QHH8SwZIm9wxEmIGdIiswSExOJiIggOTmZoKAgKioqyM3NpbKy0nJM71IRuq5z+/btIZ1b13XOnTtn+seOHfD66zBImw6REAm2IpIiQRiAS0kJkdevIz37rL1DESYoHx8fp6iZY66tZBYYGIi7uztPPPEEq1evJjIykoqKCmpray2JYFZWFosXLyY7O/ue022KohAeHk5nZyds2wZdXTBADSNBsCWRFAlCP4xGI65//CMEBMCWLfYOR5igHnnkEbq6uuwdxphTFAV/f39OnjxJbW0tERERrFmzhsWLF1NcXExNTQ3bt2/HYDDwwAMPAPceNfPz8+Pdd9+FmBh49FHYu3c8XoogWBFJkSD0w0VVSfnwQ/iLvwCxO0QYIR8fH2pqauwdhk0oikJ8fDxXrlzh+vXrgGnn0MaNG1m1apVlZCk9PZ2amhp0XR90xMhoNNLU1GT6x/bt8O67UF1t89chCL2JpEgQ+hFw8iSuLS3wzDP2DkWY4NavX09paalpaggsjWCdgaIoBAYG0tbWxrFjxwZsP7N69Wry8vLueS7LWqFNm0BR4NVXxzpkQRiUSIoE4W66TtiePbQvWACDNJ8UhKFav3498fHxVFZWkpeXR3l5+Zhtax8Jc/Kiadqw++jdTVEUXF1dCQ8P5+jRo3z88cd9jqmqqiIhIWHAvmWapiFJErGxsaYbAgNhxQoxhSaMO5EUCcJdfC5exDMnB/3b37Z3KIITiYqKYvXq1ezYsYP58+dbihmON3OPsPr6eqZNm0Z2dvaoR67MxRSjo6Pp6emhoqLC6v7CwsJ+62iZE8PS0lLq6+st648A04LrCxegsHBUsQnCcIikSBDuErZrF22pqXg88YS9QxGcUGVlJSdOnBj3XWnmzvMFBQUsWbKE5cuX4+HhwdatW8nKyqKzs3PUyZEsy7i5uXH16lWr29vb2/uN5/bt27S3t7N+/XqWL19ufcDatab1fGIKTRhHIikShF48cnPxu3CB8m3bcI5VH4KjKSgoICMjY9wqkJunyHJyckhNTWXz5s24u7tb7jcYDOzcuZP77ruP/Px8uru7Rz21d/dre/DBB2ltbbX8W9d18vPzmT17NgsWLOi/dYi3t6mAo0iKhHEkkiJB6CXs//6P7rAwWlat4uDBg7z55pv2DklwMvPmzaOoqGhc1hTpuo4sy+Tn5/PEE08QFhY24LHe3t5s2bKF4OBgCu9MWY1k5EhVVaZPn251m5+fH7W1tZb1S5IkERIScu++cFu2wLVrkJ097DgEYSREUiQId7hUVxN44gTV27eDwUBiYiKNjY32DktwMrIsExoaiiRJfRIjTdPGNFkyr/VJSUmhoKCA/fv33/MxKSkpPPXUU5SXl1NcXEx3dzfNzc2Ul5eTm5tr6YPWX5yqqpKTk0NkZGSf+1auXElpaanlcUP6v7VqlWnE6LXX7n2sIIyBiV9qVRDGSOi+fageHtStXw+YLih+fn72DUpwSgsWLOD8+fOUl5eTkJAAQE9PD8XFxYCpto+rq2u/a3FGY6iLu2VZZu3atQPeX1BQwLlz58jIyABMyZDRaKSwsJB169b1+xgPDw/mzZtHZmYmISEhlhIFg/LwMK0t2r8ffvjDIcUuCKMhkiJBAOTWVoIPHaJ2wwa63dyQVJXGxkYeeughe4cmOKl58+YB0NTURHd3N97e3sydO9dy/4kTJwgODh7y+XqP3EiS1GedjtFo5NFHHx1l1CaJiYnEx8dz4MABZFmmq6uLJUuWMH/+/EEfFxoaSltbG3V1dUN/ss2bYc8eyMyEO0mYINiKSIoEAQg+cgS5q4urjzxCc0EBkiSxbNmye695EIRRGmg0sr6+Hn9//yHvUsvPz0eSJDRNQ1EUoqOjLQuqVVUlPz+fOXPmjFncsiyzefPmYT9uypQpZGZmEhERMbQHrFhhmkI7eFCMFgk2J5IiQTAaCdu7l9srV9IRGMi2TZvsHZEgIMty/7uyBuHm5kZbWxvbt2/HaDRy8+ZNurq6mDZtmkONemYMZ8TH3d20C+3AAZEUCTYnkiJh0gs8eRLX6moqt20bsOKuIIy35cuXc+vWLTw9Pe95rKqqpKamouu6pYeYn58f999/v+0DHQ8bN5qqW+flQXKyvaMRnJjYfSZMbrpO2P/9H41z59IYE0NSUpK9IxImoba2Nt555x127drFzZs3AQgMDKSsrGxIbTjMI0qSJKEoCiUlJTaNd9ytXGladH34sL0jEZycSIqESc3n0iU8c3K4vGgRvr6+zJgxw94hCZOEpmmcO3eOvXv3cv36dYKCgkhLS6O8vJzqO93hV6xYQVtbG/D5Di/z3801hLq6uigsLCQzM5OamhrCwsL61Ama8Ly8TInRoUP2jkRwcmL6TJjUwnbtoj01lUd+/GPcPTzsHY4wiezbt4+0tDSSkpIs07ayLBMQEMCZM2dYt24dgYGBJCcnc/PmTZqamujp6cFgMGA0GvHw8CAxMZHZs2ffc9eXU3jySfjCF6CiAvqpgyQIY0EkRcKkpOs6btnZ+J0/z6ff/S4zREIkjKPW1lZSUlIA+qxjUxSFxMREsrKymDFjBtHR0URHR9sjTMfyxBOgKPD66/DMM/aORnBSIikSJiW5s5P4f/93esLDmfHTn9o7HGGSqa6u7rOzTFVVJElCkiRqa2v7NkgdoZ6eHi5evEhHRweKolim6Xr3P5sQAgNh4UI4ckQkRYLNiKRImHx0ncTvfhePzz6j5cABzp44QXNzM+7u7gQFBbFw4UJ7Ryg4uaSkJG7cuEFnZycGg4Hm5mYqKyvRNI2QkBC6u7v7jCCVlJTw2WefkZycTPIwdmC9+uqrZGRk4HFnNNRoNHLr1i1aW1sn3s/6unXw7W9DczP4+to7GsEJiaRImHS8rl/H/9w58n7+c5oiIogASy8qTdOorq4etHGmIIyF4SyGrq6uJjs7m5CQEJqamnjjjTdYs2bNPR/X09MzYAI13BpIDmHNGvi7v4N33gFRT0ywgQn4v0IQRifwxAm6wsNp6tXyQFEUZFnGYDBw7do1+wUnCP344IMP8Pf3B0zr4YKCgti1axfHjh0bdMu+i4sLVVVV9PT0WLUBUVV1Ym7bT0iA6dNN64oEwQZEUiRMOqq3N0pHBwxwMREFHAVHExAQYFWLyNXVlZSUFMLDwy3b9weyfv16PDw8qK+vt0qMzFv6J5zVq+H4cej1WgRhrIikSJh0GhcuxNDUhPeNG1a3a5pGd3c39913n50iE4T+zZo1q0/DV/PW/JCQkHs+/r777mP27Nnk5+djNBpRVXVM+6CNqyeegPp6+Phje0ciOCGRFAmTTvuUKfQEBeF35ozV7bIsU1RUNKSLjCCMp+DgYAoLC61u03WdgoKCITeMDQ4OZtu2bcycOZPU1FRLSYAJZ+5c0060Y8fsHYnghERSJEw+skzTI4/gf1dSBAy5HkxVVRWNjY1jHJggDGzLli10dHRgNBrRdR0XFxe2bds27PO4uroSFBRkgwjHiaLAihXw1lv2jkRwQmL3mTApNS5YQPDRo7gVF9MVFweYFp9WVlYO+JjKykrOnTuHpmnEx8fT1dVFWVkZuq6TmprK/fffL9YjCTb1yCOP2DsEx7BqlalBbE0NhIbaOxrBiYikSJiUWubMQXN1xe/DD6mJi0PTNCorK1m6dGmfYzs7Ozl48CApKSnExsYCpqk2RVGIjY21TF9c++//ho8+omHxYqauXk1ERITVeerr63n77bfx9fWlp6eH7u5uSy8rcyPP2NjYydGyQRBGw1zY8sQJePpp+8YiOBWRFAmTkubhQfNDD+F/5gw1O3eiaRotLS0EBgb2OfbAgQOkpaX1W9dFkiQMPT1E/uY3hO3ejaRpsHcvzXPmcGXRIsoffBDFwwODwYC3tzcpKSlWo0maplm2VJsTo127drFmzRr8/Pxs9wYIwkQWFgYzZ5rqFYmkSBhDYk2RMGk1LViA9/XrKE1NAx5z7NgxMjIyBix053nzJlO2byd03z7Kv/51Pjl1iqJ//Efkjg5m/eu/svLZZ0kpKiI4OBh3d/c+02vm2kgGg8FyX2pqKu+8846lO7ogCP1YvhxOnoSJWlpAcEgiKRImraYFC5BUFb9z55Akqc/9LS0tuLm59VvPRersJPJ3vyPl7/4O1ceHzN27qf7Sl9C8valfs4bs//1fbu3bR2dCAqnf+AbR//EfSN3dQ4pLURTi4uI4fPjwqF+jIDitZcuguhruKq0hCKMhkiJh0uoJDaUtIwO/M2cs63l6enos9x89ehQ/P78+CZPXtWtM2b6d4KNHqfzqV8n6f/+PzsTEPufvTE4m9z//k9JvfYuQ/ftJ/+IXcS8oGFJsiqKQkZHBhx9+OLoXKQjO6uGHwd0d3nvP3pEITkQkRcKk1rRggWmkqKcHLy8vTp48CcDJkyf7TJtJnZ1E/+IXpH3lKxj9/Mj+n/+hZssWGKxOjCxTs2MHWa+8gqSqZDz9NCGvvTakIX9N07h9+/agbRwEYdJydzclRu+/b+9IBCcyrKToJz/5CZIkWX2Fh4db7q+uruZLX/oSkZGReHp6snLlSnJzc63OkZ2dzcMPP0x0dDQvvPCC1X3x8fFIksSFCxesbv/mN7/JokWLhvnSBOHeGh99FKWtDe9PPkHTNIKDg9m/fz8BAQFWyYjXtWtM2baNkIMHKfu7vyP7D3+g685OtKHoSE0l889/pm7dOmL/9V9J/M53kDo7B32MLMtER0dzpp96SoIgAEuWwOnTcGcXpyCM1rBHiqZOnUplZaXl68ad+Vxd11m/fj0FBQUcPXqUTz75hLi4OJYuXWq1YPTZZ5/l6aef5ujRo7zxxhucPXvW6vzu7u5897vfHeXLEoSh6UhLozssjPjnnyd83z48qqosybksy6bRoX//d9PoUEAAn+3eTc3OnaYCcsOku7tT+vd/T96//zt+58+T/NxzyB0dgz5GVdV79rYShElr8WJoaYGrV+0dieAkhp0UGQwGwsPDLV/mlgi5ublcuHCB3/3ud8yePZu0tDRefvllWltb2bt3r+XxjY2NzJw5kxkzZhAZGUnTXTt/vva1r3HhwgWOHz8+ypcmCEMgSRT+9Ke0p6QQ9Z//yfR165i+dStRv/oVwQcOMGXrVkIOHTKNDv3+93TFx4/6KZsWLiT317/G68YNkv/2b5EH2WWmKArJycns27ePznuMLAnCpPPgg+DpaRotEoQxMOykKDc3l8jISBISEti6dSsFdxaOdnV1AaaRHjNFUXB1deWjjz6y3PbCCy+wbNkyPD09kWWZFStWWJ0/Pj6eZ555hu9///tiLYUwLlofeID8X/6S6+++S/6//Rtt06YRdPw4cf/yLxiDgvhsz54Rjw4N+JyzZpH7m9/gmZND2le+gufNmwMeq+s6ycnJnD59miNHjlgKPpo1Nzezb98+3n777TGLTxAmBBcX07qiU6fsHYngJIZVvHHOnDn8+c9/JjU1lerqal588UXmz5/PrVu3SE9PJy4uju9///v893//N15eXvziF7+gqqrKqnXC448/Tm1tLc3NzQM23vzhD3/IH//4R3bv3s3TIyjMZa4WPBZ670aa7Jz+vXBxofORR6h55BHQdVzq6ugJCgJZhn5+nkb7fnRnZHDjt78l9etfJ+CVV2h86aVBj/fx8cHX15c9e/awevVqPDw86O7u5ujRo5bmnvv27WPdunWjimukOu4xFTjZiPfDms3ejwUL4De/gdbWMf3gYmvi58PacN4PW753wxopWrVqFRs3bmT69OksXbqUY3e6FL/yyiu4uLhw8OBBcnJyCAwMxNPTk1OnTrFq1ao+Bevc3NwG7UQeEhLCt7/9bX784x+PWXIjCMMiSfSEhJgSIhvqSE2l5cEH0Yfwy9xcGiApKYmPP/6Yo0ePcu7cOZKSkizHxMXFsX//fvLy8mwWsyA4lHnzTOuKsrLsHYngBEbV5sPLy4vp06dbdpjNmjWLa9eu0dTURHd3NyEhIcyZM4cHH3xw2Od+7rnnePnll3n55ZeH/VgXFxdcXV2H/bjBjPX5JjLxXlgb7fvh0dmJ0dV1WOdxd3cnODi43/syMjLo6Ojg4MGDbN68edy/Xx4eHuP6fI5OvB/Wxvz9mD/ftPvs4kXTGqMJRvx8WBvK+2HLWYtRfQzu6uoiMzOzT+NLPz8/QkJCyM3N5fLlyyMazvf29uZHP/oRL730Es3NzaMJUxAcmmQ0og9W62iYFEVBURTS0tLYv3//mJ3XWRUWFnL69GlycnLsHYowEp6e8MADcO6cvSMRnMCwkqJvf/vbnD59msLCQi5evMimTZtobm7mi1/8IgCvvfYap06dsmzLX7ZsGevXr2e5uaPxMH31q1/Fz8/PaveaIDibsU6KzGRZJiMjg08++WTMz+1MLl++jLe3N01NTezatYuamhp7hyQM17x5cP68vaMQnMCwfhOXlZWxbds26urqCAkJYe7cuVy4cIG4uDgAKisree6556iuriYiIoIvfOEL/OhHPxpxcC4uLvz0pz9l+/btIz6HIDg6WyVFYKpzlJuby8yZM21yfmfQ3d2NpmnIskxqaiqZmZm88847VjtpezMYDDzxxBO4uLiMc6TCgObNg1/+0tQLLSzM3tEIE5ik99ftcoJqbm7Gz8+PU6dO4e3tPSbnNC/0FutoxHtxt7F6PzK2b6d1xgxKv/e9sQirXx0dHTzyyCM2O7/5OWDirZHYvXs3ycnJGHolpkaj0arFi1nv22bNmtXn/ry8PD799FNUVWXhwoX4+PhMuPfDVmz681FSAnFxcOQI2Gn35XBN1P8vtjKc98N8rW9qasLX13dM4xC9zwTBzmw5UgSfV8UWdb/6d3fDXzCNBsmy3OcLTO9nTExMn8ccO3aMyspK4uLiSExM5MKFC85fxsJRxMSYRog+/tjekQgTnO1+EwuCMCS2TooURSE+Pp6jR4/S1dWF0Whk2bJlhIlpBsDUeLe/xMhM13XKy8uJjIxElmVyc3N56KGH+hzX2Nho6QWp6zq+vr59Cm0KNiJJ8NBDcOmSvSMRJjgxUiQIdiap6rgUnYuNjSUlJYWMjAxOi7YIaJrG9evXSUhI6FNLrbf8/HzWrVtHZGQkHh4e7Nixo88x7e3tliRT0zRqamqQJElMjYyn2bNNI0XOsyJEsAMxUiQIdmbrkaL+eHl5jevzOZqGhgYuX75MYGBgvwumzaNH+fn5bNq0CYCoqCiioqL6Pd/JkyeJjo5G13WKi4tZuXLloImWYAOzZkFjIxQWQmKivaMRJigxUiQIdmaPpCggIGBcn8/RNDc3ExgYCJimF1VVxbznpLm5mZycHJqbm1m7du2QkpvW1lbAtD7Jx8dnzDZ6CMNgXvh+5Yp94xAmNDFSJAh2Nt5JkaqqFBUVMX/+/HF7TkcTExPDrVu3uH37Nj4+PrS0tODp6UlGRgYzZ87sd+fZYB544AEyMzPp6Ohg48aNNopaGFRYGERFmZKip56ydzTCBCWSIkGws/FOihRFwcfHZ9yezxHJsszjjz8+ZufLyMggIyNjzM4njNADD8C1a/aOQpjAxPSZINiZPabPIiMj2bVrF2+//fa4Pq8g2NT994ukSBgVMVIkCHZmj6QITKMbonaR4FTuv99U1bqyEu7qySkIQyFGigTBnnQdSVXHNSkyGo2W+jnFxcXcunWLurq6cXt+QbCZGTNMf964Yd84hAlLJEWCYE+qCjAuSZF5d5XBYLC0tIiLi6Ozs5Pi4mIuXLhg8xgEwaYSE8HTEz791N6RCBOUSIoEwY6kOyM245EUmas2G41Gy7RZ711W5l5ugjBhyTJMny6SImHERFIkCHY0nkkRYOkG37uthaZpdHR0cN99941LDIJgU9Omwa1b9o5CmKBEUiQIdmRJisah+rGqqjQ2NpKTk0N9fT1gSoh6enqQZRk/Pz+bxyAINjdtGnz2mWVqWhCGQ+w+EwQ7Gs+RIk3TmD59OuHh4RiNRt5//31qa2uJi4vjkUcesfnzC8K4mDoVOjtN7T6Sk+0djTDBiKRIEOxovJIiVVXJy8tj7ty5gGmx9fLly236nIJgF1Onmv68dUskRcKwiekzQbCj8UqKFEUhPDzcps8hCA4hIgJ8fSEz096RCBOQSIoEwY7Gc/psypQpNn8OQbA7SYKMDJEUCSMikiJBsKPxSooaGxuJjIy06XMIgsOYMkUkRcKIiKRIEOxoPJIiTdOoqamx2fkFweGkpUF2NtwpWCoIQyWSIkGwo/FKinRxcRAmk7Q0aG6Gqip7RyJMMCIpEgQ7Go+kyGAwEBwcbLPzC4LDSU83/ZmVZd84hAlHJEWCYEfjtaZoqnmbsiBMBomJppYfubn2jkSYYERSJAh2JNm4Iayu6xQVFREVFWWT8wuCQ3J1hYQEyMmxdyTCBCOSIkGwI1u3+dB1HeOd5xCESSUlRSRFwrCJpEgQ7MjW02eqqjJ//nybnFsQHFpKCuTl2TsKYYIRSZEg2JEtkyJza4+YmJgxP7cgOLzkZMjPF41hhWERSZEg2JGtkiJd1+nq6mLJkiVjel5BmDBSUqC7G8rK7B2JMIGIpEgQ7MhWSZEkSTQ0NIgq1sLklZRk+rOgwL5xCBOKSIoEwY7GOinSNA1VVSkqKmLt2rVjck5BmJDi403b8vPz7R2JMIGIpEgQ7EgyGtElCcZg95mqqrS0tGA0Gtm4ceMYRCcIE5irK8TEiKRIGBbbt+YWBGFAktE4JqNEmqZRVlbGrFmziIuLG4PIBMEJJCWJpEgYFpEUCYIdjVVSlJ2dzYYNG/D09ByDqATBSSQkwPXr9o5CmEDE9Jkg2NFIkiK11xbjnp4eCgsL2b59u0iIBOFuiYliobUwLGKkSBDsSFLVYSVFuq5TX1+Pi4sL0dHRREdHM3fuXBtGKAgTWEIC3L4NTU3g52fvaIQJQIwUCYIdSUbjsFp8aJpGY2MjS5cuJT09HW9vbxtGJwgTXEKC6c+iIruGIUwcIikSBDsa7vSZoiii9pAgDJU5KSostG8cwoQhkiJBsKORrClKT0+3UTSC4GRCQ8HDQyRFwpCJpEgQ7Gg4SZGmaVRVVREWFmbjqATBSUgSxMVBcbG9IxEmCJEUCYIdDScpkmUZX19fG0ckCE4mPl4kRcKQid1ngmBHQ0mKdF1HkiSysrLYsWPHOEXmnKqqqvjggw9QVRVJknjqqadwdXW1d1iCLcXFwcWL9o5CmCBEUiQIdnSvpEhVVYxGI3V1dSIhGoGGhgbef/99enp60DSN+Ph4kpKSkCQJgEOHDrFx40ZcXFzsHKlgM3FxsH+/vaMQJgiRFAmCHfWXFOm6DkBraysVFRUsWrSI+fPn2yO8Ce3TTz+lvLyc2NhYy2ibLFuvGEhJSeGzzz7jvvvus1OUgs3FxUFDA7S0gI+PvaMRHJxIigTBRjRN63MRNhqNyLKMLMtomobe02OVFHV2dlJTU4Ou66xYsQIvL6/xDtspVFZWUl1dTVBQUJ/vwd1ErScnZ+4FWFwM06bZNxbB4YmkSBBsQFVVCgsLiYyMJC4ujtv5+bRcuoRLbi4+FRX4V1biXVqKd309lbNn093dTVxcHOHh4fe8iAuD6+zs5MMPPyQ+Ph5lCIUxa2pqSEpKGofIBLsQSZEwDCIpEgQbMBdZXPD667B7N7GVlaY7JMnUuXvKFFi5EqZMIeKxx4gQBRlHraenh3fffZfOzk4SEhKGlFyqqkpBQQHz5s0bhwgFu4iIAIMBSkvtHYkwAYikSBBsJLy1FX7+c/jSl2D5clMilJpqKiYnjBlN0zh06BC+vr6EhoaiquqQR9sURcFDfD+cm6JAdDSUlNg7EmECEEmRINhIzx/+AL6+8NvfguhgbxNGo5F9+/aRkZFhWaA+lCkz+LwY5po1a2wZouAIYmJErSJhSMTiBUGwAc1oJO70adiyRSRENvTWW2+RkZEBYNlmP1TmYphiO/4kEBsrps+EIRFJkSDYgN+VK3jV18Nf/IW9Q3FqTU1NqKo67Mfpuk5BQQELFy60QVSCw4mNFdNnwpCIpEgQbMD38GH0tDSYO9feoTitpqYmoqOjhzxd1puqqnR1ddkgKsEhxcRAeTmMIIEWJhexpkgQxlpTE8GnTyO98IJpt5kwJjRNIz8/n88++4yWlhaCg4MJDAwc0bkMBgNxcXHU19cTFBQ0xpEKDicmBoxGqKqCqCh7RyM4MJEUCcIYC37/fRRVhaeftncoTuPEiRMEBwcDEB0djdFoxDDERrr90TQNg8FAQ0ODSIomg9hY05+lpSIpEgYlps8EYYwFHD2K9thj4pfvGPLz87P692gSIl3XUVWVzs5OkpOTRxuaMBHExJj+FIuthXsQSZEgjCG3oiJ8b95E+fKX7R2KU5k7dy7BwcFomjaq85gTora2NhYvXjxG0QkOz98fvLxEUiTck0iKBGEMmC/WQW++SZenJ6xbZ+eInE9YWBhGo3HEjzcnRC0tLTz22GNjGJng8CTJNFokdqAJ9yCSIkEYA7Isg6oSdOwYTY8/zu32dnuH5HSamppwdXUd0WPNCVFTUxNLly4d48iECSEmRowUCfckkiJBGCO+ly7hWltLzvz5+Pv72zscpxMSEkJubu6w6xLpuo6maTQ2NrJ8+XIbRSc4PJEUCUMgkiJBGCNBr79Oe0ICypw5otO9DciyzIIFCyi5MwUy1PVFmqZRX1/PihUrbBme4OhiYqCszN5RCA5O/OYWhCG4e3RC13Wr9S1eV67gf/o0hY8+yrz588c7vEkjKiqKDRs2UFVVRUNDwz0TI3Nto1WrVo1ThILDio421Snq7rZ3JIIDE3WKBOEeVFWloaEBb29vvL29ASgsLKSpqQkPd3dS332X1D/+kcZp05j661/bOVrndfz4cRobG9F1nQULFhAUFMTrr79OXFwcBoOhT2VrVVWpqanhySeftFPEgkOJiQFdh4oKiI+3dzSCgxJJkSAMQtd1enp6iI6OZurUqZbb77vvPjoaG+E738HjD3+Av/s7An/2MxDNRW3i/fffJyQkhNDQUDRNIy8vD09PT7Zt20ZJSQlnzpwhIyMDVVVRFAVN05AkicDAQNzd3e0dvuAIoqNNf5aViaRIGJBIigRhEJIk4ebmxu3bt63vqKiALVvgxg3405/gi1+0S3yTRW1tLT4+PkiShKIoeHt7c+LECQICAmhoaADgs88+w93dnfDwcLq6ujAYDCxatMi+gQuOw1zAUawrEgYhkiJBuAdN0yyLewE4fx42bABPTzh2DB5+2H7BTQI9PT3ExsZaLV5XFIWkpCRcXFwsbTrMCROYtu+vXr3aLvEKDsrX1/QldqAJgxBJkSDcg6IoxMTEmPpt5eXBokXw0EOwaxeEhto7PKfS3d3Na6+9houLC6qqsnr1aiorK/utT2Ru9dFfy4/RVr4WnFR0tBgpEgYlkiJBGAIvLy+uXLnCnKtXQdPgnXfsHZJTOnnyJOnp6ei6jq7rHDt2DA8PD6LN60F6kSSp33MYjUaam5ttHaowEYmkSLgHsSVfEIZAVVXy8/Ph6lWYNg08POwdklNqaGjAaDQiSRKyLJOSkkJ0dPSwCjYaDAZSUlJsGKUwYUVHi+kzYVAiKRKEIZBlGX9/f/SrV+GBB+wdjlMqKSkhJSXFajrMPA1293b7gei6TmVlJbNnzx7289++fZsbN26Mqr+a4OCioqC83N5RCA5MJEWCMASSJBEeGIj+6aciKbKRM2fO9JkSG25lcE3TaGlpGdLj6uvr2bdvH9nZ2RQXF3P16lW6u7s5fPgwlZWVw3peYYIwF3AUia8wALGmSBCGyDU3F9loFEnRKGRlZXH58mXLvyVJQpIkQkJCyMjIGPX5FUXBxcWFXbt2ERISwrJly/pNkIxGI2fPniUlJYWmpiYqKyvx9fUFIC4ujps3b6JpGlFRUaOOSXAgUVGmNYFVVZ/XLRKEXkRSJAhD5J2Tgy7LfNTURP2RI0RFRTFt2jR7hzVhvP/++/j4+JCamgqYprrANBo0lr3i4uPj0TQNRVHYu3cvO3bs6HNMW1ubJeFRFAUfHx/LfYqiEBgYKKbRnJE5ya2oEEmR0C8xfSYIQ+SZnU1nfDyeISFERkZSV1dHXV2dvcOaMMLCwtB1HUVRUBQFg8GAwWAY8+a5vesVpaen88knn/Q5xs/Pj9ra2kHPk5+fP+B9nZ2d7N69m8OHD9PW1ja6gIXxExlp+rOiwr5xCA5LJEWCMESeWVm0p6UBn48uvP/++3aOauKYOnUqOTk541ZDSNM0bt++TfwIWjrouo6fnx+l/exUqqur4/jx46SmphIbG8vJkyfHIFphXAQHm1rxiMXWwgBEUiQIQ2E04pmTQ3t6uuUmRVEsUzXC0GzYsIHc3Fy6urqGtc1+JGRZRlVVAgIC+tzX0dFhqYTdH0mSyMvLI8bcGuIOVVV5//33iY6ORpZlNE0jODiYq1evjnn8gg3IMoSHg1hILwxAJEWCMATuxcXIXV2WpMicCFVUVIz59I8z8/T0ZPv27cTGxpKTk4OqqjZNjtLT07lx4wb79u3j4MGDlnVCWVlZ9/y+JScn97ntyJEjJCUlWabnZFnG1dWVmpoaWltbx/4FCGMvIkIkRcKAxG9zQRgCz6wsANrT0tA0jdraWpqbm1mzZo2dI5uYoqOj2blzJ97e3uTl5QG2ac1hNBr57LPPSElJIS4ujv3796NpGtnZ2YMmY6qqkpeXR3d3t+W2oqIiwsPD+xwryzIhISEUFBSMefyCDYikSBiESIoE4Q5d19E0rd8vj88+ozMmhk5XV/Ly8li8eDGPPvrokIsKCv2bMmUK27dvt4yyjGVipGkamZmZlhEfSZJIS0vjrbfeuucCb0VRSExM5MCBA5SWlqJpGhcuXMDFxaXf4/Py8pgxY8aYxS7YUHi4aUu+IPRDbMkXhDskSSI7O9uyVby32GvXqIuNJTY2lnnz5gGmdSnC6O3atYukpCRkWe73vR8pWZaJNO82usNoNNLS0jKkNiCyLJOcnEx5eTmffvrpgI9RVZWlS5f2uf3mzZvk5OSwbNkyQkXjYMcRFgY1NfaOQnBQIikShDu6urp48skn8fT0tL5D0+Cv/xr+4i8+r3MiDFl3dzfnzp1DURTuv/9+q5pAYEpGXV1dLX+3JUmShlV/yFw+oL9pMzCNRhUWFjJnzpw+92VnZ5OUlMT169dJT0/vs2hbsBNzUqTrYOOfN2HiEUmRMOnpuo4kSZSVlTF//vy+B+TlQWurqGQ9Anl5eRQVFVl2gF29epWysjIkScLf35/HH3+cVatWceXKFfz8/Gw+HakoCpIkWb7noyVJEh79NAdub28nLi4OMNVEunjxIlFRUWJRviMIDYWeHmhogMBAe0cjOBjxP1SYlMyLbDs7OykrK6O0tJRNmzb1f7B5u/XMmeMUnfO4dOmSpX0GgLe3NykpKaSlpREWFsarr75KYGAgCQkJNDU1jUtM6enpYzYipaoqjzzySJ/br1+/bmlsqygKCQkJ5ObmjslzCqMUEmL6UxReFfohkiJhUjEnQ8XFxTQ1NTFv3jzWr1/P+vXrOX36NLt27eKDDz6wftCNG6Zps+BgO0Q8sfW3Rqj3aFBCQgJZWVkkJydTXV09LjWfxmrdknnqLCgoqE/cBQUFfXa31Yh1LI7BnBTdo6K5MDmJ6TNh0tA0jaKiIqKjo3nqqaes7nv77bcJCQnB19eXtrY22tra8PLyMt1ZUAD91KwR7m3evHn3bIXS1tbGrl27ANP3yNZTTGM1SiRJEm5ubuzZs4fIyEgqKyvZtm0bDQ0NxMbG9pkK7D1iJtiRSIqEQYikSJgUNE0jJyeHzZs397utuqOjw3JB9vDw4OjRo2zfvt10Z0EBTJ06zhFPDAUFBZw7dw53d3eMRiNdXV2EhoaydOlSXFxcSExM5OOPPyY5ObnfhMecOCQlJVFUVGTzhdZjSVVVNE0j7U7rFx8fHz788EPKy8tJSkqyWtDd0tLCggUL7BWq0Ju5wvnt2/aNQ3BIIikSJgVZlomOjsbFxYUbN25w/fp1goOD6enpQVVVYmNjrY5NSkri1q1bTJ06FfLzQRRp7OP06dPIskxqaiqKotDd3Y3RaMTT05PTp0/T3t7O2rVr2bJlCydOnKC2tpbw8HACAgIsU1jmJMjV1dXSLHYiME+dGY1GVFVFURRUVaW4uJj4+Hir5E9VVcrKyibMa3N6BgP4+YmkSOiXSIoEp2beZVRYWMiqVasAyMzMtFzIByJJEpmZmaRHRKDU10NS0niFPCF8+OGHuLq69imCaF5cHBAQQEBAAPv27WPt2rWsWLHCcsxnn33GlStXiI+Px93d3fJ488jLRNihZU7qwsPDrVp+ZGRk9FlLpCgK6b165gkOIDAQ6uvtHYXggERSJDgt8yf4kpISnnzyScvFq7u7+57TNOYdQ6f/9CeWACQm2j7gCcJcc+heVaEBUlJSuHTpEuXl5SiKgizLxMXFMWXKlD7HyrJMUVERCQkJDj+NpigK0dHRlvpK8Pmo193Jtqqq1NTUTJiEb1Lw94fGRntHITggkRQJTst8AXriiSe4fPkyRUVFGI1Gq+mbwWiahltZmekfYqQIMG2x1zQNNze3IV/gfXx8LNWgZVnuN+FRVRVd1+nq6kJVVcuIk6MyGo1ERETQOIQLq6Io+Pn52T4oYej8/GCcSkAIE4v42CI4LfPF9/DhwxgMBhISEkhOTiY0NLTPp3lN0zAajZat1UajkezsbKZ7e4OPDwQFjXv8jqi4uHhYCZGZuTL0QCNAiqKQnJyMu7u7w48SAZSXl1NcXDykY3Vdp6KiYtD3rLOzk3feeYe33npr3Oo1TWoiKRIG4NgfxwRhDJgbgva3hshoNGIwGCgoKKCnpwdXV1d8fHxIT083tW74q78yTZ1NgAv1eBjKlNlIybJMQkKCTc49loxGI+3t7XR1deHt7X3PBdSqqvZZZ9T7vkOHDhESEkLQncT7o48+Yvny5QM2nxXGgJ+faQOFINxFjBQJTmugC5GZpmkYDAY0TcPd3R2AuXPnsmrVKtPF2WiEN9+ERYvGIdqJYc2aNVRUVNikyKKiKONSvPFeKisrKS8vp7y8vN+fod4jWUMZ1TIYDJY2J3d7/fXXiY+Pt+oHFx4ezltvvTWCyIUh8/aGtjZ7RyE4IDFSJDite32CN494mLfrq6pKZmYmPT09JCUlwalTUF0NO3aMQ7QTg8FgwMvLy6ajRfagaRrZ2dmWcgxz5szhjTfe6PdnSFEUQkND8fX1HVK8qqoOOCXW1dXVbyyCjXl5iaRI6JcYKRKEOxRFISAggGvXrplu2LPHVMn6wQftGpejWbJkCdnZ2QDD6jjvyGRZZubMmWzfvt3S8X6wbfRBQUFDnt4aaHF5R0cHcXFxfRIrWZZxc3MbRvTCsHl7m5o8C8JdRFIkCL0oimLqet7ZCQcPwvbtYj1RP7Zu3Up7ezu5ubl0dnbec6rS0TU3N5ORkWF1W0JCAt3d3f0eP5zRHEmS+j3+8uXLVlv6e5/7Xq1RhFHy8ICODntHITggMX0mCHfRdR2OH4fmZti2zd7h2EVbWxuvv/66ZXv8lClTmDZtmtWU44IFC1iwYAHFxcVcu3aNoKCgCVu1ua6urs+IjcFgoLa2lqioqD7HD3WaT9d1MjMzP28Z00tJSQnJycl9yg9MpMreE5a7u+mDjyDcRSRFgtCLruv09PSYps4eeAAmaSXio0ePkpKSgqZpSJJET0+PZbv4lClTmDFjhiUxiIuLQ1EUioqK7Bv0CGmaRmJiIocOHWLhwoWWXWBgGkHqXbV6OOfUdZ38/Hy2bdvWbxLl6ek54JqliIiI4b8QYejMo8G6LkaCBSti+kwQepEkCY/ubtOus34+3U8GBQUFJCYmIssyBoPBcuEODw8nOTkZVVU5ceIEu3fv5urVq2iaRnR0NIWFhcD4LxQe7fOZE5bo6Gjefvttq/tGMmKjaRrt7e20trayadOmfgtR1tfXEx0dPWAhyxkzZgz7eYVhME9bOsmaOGHsiKRImJCGUpG6P+a1L/1dSFVVJTc3l2X5+dDTA1u2jCrGier8+fMDTg+Zk4TQ0FBSUlLQdZ133nmHPXv2sH79epqammhpaRm3NUa6rlNfXz/ixMjcbw1Mry0kJMTq/sjIyGEnRub3bsGCBQMec/PmzX7fY03TKCoqGnALvzBGzIlqT4994xAcjkiKhAlpJFWPNU2ju7ubkpISmpubrW7XNI2CggIeDQ1Ffv55eO45iI4ey5AnhDNnzpCenj6kRMB8TEhICGlpabz99tvU1NRQVVVlmUobafI6VC0tLdTV1Y04KWpubrZqSHv3AueFCxeSlZU1rCSvqKiIhQsXDnpMbW1tv++NJEliPdF4MCdFYqRIuItYUyRMaJmZmaSnpw8pSZJlGQ8PDyRJ4qGHHuLGjRvU1NTQ09PDgw8+yOwHHoAFCyA2Fl54YRyidzwNDQ14eHgMu16QeQoNwNXVlY6ODgoKCoiMjMTFxcUmF3pd16murgZGliQDVkUTc3JyWLNmTZ9jVq5cyZUrV/D397/n6zAajXQMYVdTTExMn5h1XaehoYHHH398iNELI2b+PoqkSLiLSIqECc1gMAzrgqjrOpGRkZw5c4YnnnjC+s5f/hIuXIAzZ0wLMSeh8PDwERVQ7D3aAuDu7k5iYiI1NTV4enri7e09pnGan8toNCLL8oiLPprX+9TX17Nz585+jwkKCiI9PZ0zZ86QkZGBqqoDJkcGgwF/f/97Pu+DDz7IO++8Y9mxZ57G03XdVBJCsC2xuFoYgJg+EyYso9E47OKBkiQhyzKhoaEcPXr08zvy8uAHP4BvfAMeeWSMI504Rrto2ZwsmBPVoKAgmyREZmNVAfte03yxsbHs3LkTTdMoKSkB+r5XqqpSVlbG4sWL7/l8iqJw//33k5OTQ35+Pjk5OXh4eLB8+fKRvwhBEEZNJEXChGUwGJhx6RJpX/gCHrm5Ax539wXPnBhFR0dz8OBB0DRT49fwcPjnf7Z12A4tPz9/TBdJ23J9jCRJGAyGUa9bUlUVb29vTpw4cc9jZ8+ezYYNG/rtep+Xl8fixYvx8vIa0vNGRESwc+dONm/ezM6dO7nvvvtGFL8wCjZe8yZMPGL6TJiwvK9cIfXllzF6eJD+pS9R/td/TU9IyOdD45KELkloqoqsKKbb77pvhqbR8OyzBJw+De+9Z+qJNEmoqkpxcTGKohAXFwfAihUruHnzJj4+PiNepzNeFEXBzc3NVFdqlOeRZRlXV1fef/99lixZMujxsiyzZs0aDh06RGxsLJIkkZ2dzZYtW8Qi6YnCnPj3Uy5BmNzET4QwIblUVZH4ve/RMnMmH//gB9z3+98T88tfjvyEf/d3cI+LoTP54IMPaG1tJTIyEoAPP/yQdevWERISQmtrK76+vnaOcGg8PT1pbW1F1/VRJXGSJKHrOi4uLmRlZQ3a98zMxcWFjo4OWltb+61YLTgwcyItkiLhLuInQphwpM5Okr7zHTR3d/JfeonKmhr0557D/3vfw/I5/c6wuGo0UlhQwFObNnHgwAGSk5Kshsw1o5GCwkI2PfPM+L8QOzlw4ADx8fFWa31SU1M5evQoO3fu5IknnuC1114jISHB4Uc+YmJiqKmpGfB+XdctrUruRZZlPD09aW5upqKiwpIwDmTNmjUYjcYhnVtwMOa1iOJ7J9xFrCkSJhZdJ+6ll/AoKCD/Zz+j288PMC2ErWhsxOjhgeblhebtjebtje7ri0tICJqfH5u+8hVy6uro8fWl28eHHl9f6iSJxU89ZecXNb46OzvRdd1qTYyiKGRkZHD27FlkWeb+++8f98rUw9XW1kZKSsqA92uaRnNzM7m5ubS0tAy69kjXddrb2wHTe2H++72IhGiCMjf6dXGxbxyCwxFJkeCQBrqAhe7dS9Bbb1H0ox/RkZ6OLMtIkkRqaipLly4lOzvb6rGyLBMTE8PFixcB2Lx5M6GhoRQUFFBcXIy3t7dVrytn19TUhJ+fX7/vr6ZpNDU10dbWRlpaGnl5eeNWmXq4jEYjJSUlKIoy4M9KXl4ec+bMYefOncydO5fc3Fw6OzsxGo1UVlZa1iKZ6wM9+OCDACQkJJCcnDxur0Wwg44OcHODMdq9KDgP8TFHcEjm9SGdnZ2UlpaSkpKCz8cfE/2rX1G1cycNK1cCn095gGl9ybZt29i3bx8pKSmWqR/zguJ58+YBpgam5oXFk4mqqhw/fpykpKR+p8VkWSYkJITDhw9bEonbt2/bIdJ7MxgMg/YHy83NZdu2bZZ/u7u7s23bNkv1coPBwK5du8jIyECSJBobG/Hw8GDWrFnjEb5gb52dk7YWmTA4kSYLDktVVaqrq3niiSeou3yZhO99j5YHHqD8G9+wOqatrc3yb0VRSEtLs7roS5I07HpGzujuZLE/siyTkZFhWn+VnEx+fj63b9+2mkrr7u6mvr7ebu+pqqrk5ORYJUXm+DRNIzMzk82bN/f7WHOTW8AyMtTW1saqVatsHLXgUDo6wN3d3lEIDkgkRYLDUhTF1Ln80CGW/e539Hh4kPvii2h3DXm73LUu4IEHHrAa4XD0tTHj4fXXXx9yOxSA+Ph4du3ahSzL1NfXW6aaNE2jrq6O5cuXj3lNo6FSFMVqEbSPjw+KoqBpGrW1tWzcuHFIRR3T09Px9PQkJibGpgUmBQfU0gITZIelML7E9Jng0BRZZsmePWiZmbidP09rSwuG7m5cXV1N9991gQTTaEB1dTV+fn6WGjSTuXXCxYsXCQ0NHda2dfM6LfPx5iRDkiQCAwOpqqrCzc3NLrvTuru7efjhhy3/nj9/PgUFBRgMBtzd3Yf1vc7IyLBFiIKja24WSZHQLzFSJDi0sF27CHrnHUqef57Xi4tZuHAh7u7uFBYWkpOTQ3Z2NnPmzOnzuIULF1JbW2v5d0JCwniG7TCKiopoa2tDUZR+E6LBRtHMCWXvURdJknBxceHdd9+lo6PDLlNojY2NVru+QkJCyM3NJSsr656FFwUBMCVFvZoBC4KZGCkSHJbPhQtE/ed/UvXFL1K3ZAnG4mIAZs2adc8FsTExMbi6uvLhhx+Smpo66KJcZ9XS0sL169eJiIgYcDpJlmU0TaOgoGDIdYkURSElJYX8/Pwx3ZI+lJEsVVWpr6/vc/tAzVwFoV+NjXCnnIcg9CZGigS7Mm+n7ujosPq3a1kZiT/4Ac1z5lD+9a+jKAoxMTHDWh8UFhbGpk2bJmVCBHD27FmioqLumejouk5PTw8tLS1DPreiKERFRVFQUDBm64oGSoh0Xbd83+vr64fUcFUQBnX7NkyiUhzC0ImkSLAbVVXp6uqipqaGefPmkZmZiaZpyO3tJH372xh9fSl86SW4c1GvqakZs67ok4F5bc29EknzyE9lZeWQExxJkvD29rbUiRpLvePVdR1d18nNzaW7u5vHHnuMqKioMX0+YRKqrxdJkdAvcYUR7EbTNDw8PFi1ahWKouDv748iy8Q//zxu5eXk//znqHcWQ6qqSnNzs50jnlgWLlxIU1MTnZ2dAyY7vdtgDHcxutFopKOjg7y8vLEI17LVPjs723KbpmlUV1ezfft25s2bZ1lgLwijUl8PgYH2jkJwQCIpEuymvLycBx54wPJvWZYJe+UVAt57j6Lnn6ezV1VhRVEIDQ21R5gT2mOPPUZISAh5eXnU1tZakqOOjg7Ky8vJyckhJyeHgoICpk6dOqwq1gaDgejoaBYsWEBmZuagbTSGwpygbd++HV3XLSODq1evHtV5BcFKV5dpTVFYmL0jERzQsFZJ/uQnP+H555+3ui0sLIyqqioAWltb+d73vseRI0eor68nPj6ev/3bv+Wv//qvLcdnZ2fzl3/5lxQXF/PVr36VH//4x5b74uPjKS4u5vz588ydO9dy+ze/+U2uXbvGqVOnRvIaBQfU2dnJ2rVrrW7LKCoi6re/pfLLX6bxrl1EDQ0NYi3JCKWnp1u6vnd2dtLW1jZga5PKysphbbP39PSkvLwcT09PioqKiImJQVGUEW3V773bzVxYURDGXHW16c/wcPvGITikYY8UTZ06lcrKSsvXjRs3LPd961vf4u2332bXrl1kZmbyrW99i7/5m7/h6NGjlmOeffZZnn76aY4ePcobb7zB2bNnrc7v7u7Od7/73VG8JMFWVFUd0kJncyuFwdTX11sXXczNJf4HP6D8vvso/au/ArDa7t3U1NSnSKMwfO7u7oP2env00UfJzMy0/Lvb3DhzAIqiYDAYiIuLIyYmBoPBQFdX14hGjczrlATBpu58iBdJkdCfYSdFBoOB8PBwy1dISIjlvvPnz/PFL36RRYsWER8fz1e/+lXuu+8+Ll++bDmmsbGRmTNnMmPGDCIjI2lqarI6/9e+9jUuXLjA8ePHR/GyBFsoKCigpKSErq4u4uLiSExM7PMVHBxMSUkJLS0tA07D9Fkf1NIC69cjhYcTfeoUcQkJ1NbWkpubS1FREUVFRWzcuHGcXuXkpigK27dvx83NjYiICGbPnk1+fj49PT33nFYzb893c3MDTN/n4e5Mm8xFNoVxUlFh+lMkRUI/hl1kJDc3l8jISNzc3JgzZw7/9E//RGJiIgCPPPIIr7/+On/5l39JZGQkp06dIicnh1/96leWx7/wwgssW7aMjo4OVq9ezYoVK6zOHx8fzzPPPMP3v/99Vq5cKXYbOQBVVSksLOSpp54C7rpwXboETz0F3/kOfOMbBAQEEBcXR1lZGRcuXCAuLs7qe6hpGrquM23aNPMN8IUvQGmp6Vx+foT5+bHyTsNXwXaqqqp477330HWdqVOnMnPmTMC0tsvy/QE2b95MZmYmmZmZxMXFoarqoNNj/d13r8eYj6k2T20Igq2UloKrK4g1ikI/hpUUzZkzhz//+c+kpqZSXV3Niy++yPz587l16xZBQUH8+te/5itf+QrR0dEYDAZkWeYPf/gDjzzyiOUcjz/+OLW1tTQ3N1uNMvX2wx/+kD/+8Y/s3r2bp59+etgvqqen557D/sM5lwDR0dEUFBQQERHx+Y3Z2bB+Pbi5wd//vWlY+gc/AEkiKCiIZYsXc3z/fpLDwlDa25Hb29Hq6nDt6CAtKoqOkyfhxg04cQJ274a4OFOjxgmiYwLF2p8TJ06QlJSEruu0tLTwyiuvkJyczP3339/nw0h8fDxRUVG89957tLe3ExcXB1gnQAP9XzEajXR2dmIwGHBxcRk0QfL09Jzw76uZs7yOseIw70dpKSQmmhZc25HDvB8OYjjvhy3fu2ElRb07SU+fPp158+aRlJTEK6+8wnPPPcevf/1rLly4wOuvv05cXBxnzpzh61//OhERESxdutTyWDc3twETIjCV7f/2t7/Nj3/8Y7Zs2TKClyWMNV3XLdMigOkXy8aNEBEBb74Ju3bBP/4j7N8PPT3Q0oJrezvrBzupj4/p66WXQIwMjbuAgACr5CQxMRFZljlw4ACrV6/G09PT6ngXFxfLCF5hYSGffPIJiYmJA1aiNk+dybKMu7s7kiSRk5NjWYMkSZLlS1VVOjs771mpXBBGrbwcoqPtHYXgoEZVo9/Ly4vp06eTm5tLR0cHP/jBDzh8+DBPPPEEADNmzODatWv8/Oc/t0qKhuK5557j5Zdf5uWXXx52XC4uLmNez2Qy10fRNI2SkhLLBcujpQXWrAFdNyVEERGm6bPUVDhzxlQ+39fX9NX7772/vLzASaZGJ+o6mPb2dsuILnz+Mz5lyhROnTrFvHnz+jTbNZsyZQrp6ekcO3YMHx8fqwTKxcUFSZIoLCykp6eH4OBgAgMDKSsrY/Xq1QQFBVFZWclHH32EwWAgNjaWrKwsFi1aRFRUFOXl5fT09BAfH2/z92A8TNSfD1ux+/uRnw/p6WDvOO6w+/vhYIbyfthyBmdUSVFXVxeZmZksWLCAnp4eenp6+gy7K4oyrNYMZt7e3vzoRz/iJz/5CWvWrBlNmMIYsIwotLTAqlWmhooffWRKiMzWrTN9CeOuvr6eDz74gPnz5w+YyNwtPDy83xEeWZaJiYnh5s2b1NbWct999/X7eFmWWbNmDTU1NZw8eRI/Pz+CgoKoqalB0zQ2bNiALMt0dnaSk5PD0qVL8fLyAiAiIoLFixdbFtNLksQHH3yAr6+vpWJ1UVERixYtGtkbIggDyc+HOx/cBeFuw0qKvv3tb7NmzRpiY2OpqanhxRdfpLm5mS9+8Yv4+vqycOFCvvOd7+Dh4UFcXBynT5/mz3/+M7/4xS9GFNxXv/pV/uM//oO9e/f22wldGB+appne/85O2LHD9EvlzBlISrJ3aAKmtUGurq4kJCSQk5PDxx9/zIoVK3B3dx/0cYsWLeLVV18luVeRTDNzhfHW1lYOHz7MsmXLBtwuHxoayo4dO2hra6Otra1PkU13d3er/nM9PT0cPHiQhIQEXF1diY+Px2g0WmoUmd29M3U0PvzwQyIiIvp9rcIk0twMdXXid5cwoGElRWVlZWzbto26ujpCQkKYO3euZYcRwL59+/j+97/Pjh07uH37NnFxcbz00ks888wzIwrOxcWFn/70p2zfvn1EjxdGT9d1CgsLmTN7Nh2bN8OVK6Yps0naZNXRXL9+3dQe5c5Inre3Nz4+Ppw7d466ujo2bNgwaCf7p556ij179pCWltbvKK8kScTGxnL9+nUKCwtJS0tj9uzZ/Z5LlmV8fHzuGfPhw4dJSkqyer7eMeq6TnV1NQ8//PA9zzWQ9957j8rKSkJDQ7l9+zYpKSmUlpbi5+c36HpGwcnl55v+FEmRMABJH21tfgfS3NyMn58fp06dGrMicOZdbJNlTZG5YKIkSSiKQnZ2Nps3b8bw0Ud0PP44/PGPeIjF78DnOyDstSags7OTEydOEBER0e9uLl3XKSkpIS0tjalTpw56nsOHDxMWFoavry+6rvdbCkNVVWRZJicnx/QzcVey1dHRgaZpNDU1ER4ePmA5jQMHDhAfHz9gI1lzD7SdO3cO9vIHpGkaFy9etPyf7b3bzWAwDDgdONbs/fPhaBzi/di3D7Ztg9u3ISDAfnHgIO+HAxnO+2G+1jc1NeF7pz/mWHGOla7CmDEYDOTl5VFQUICXlxfbt283XfxeeQXi400LrAWH8NZbbxEVFTXg9nZJkoiOjqa1tZV9+/YNWKbC3d2dbdu2MXfuXEpKSuju7u53HaB55Cg1NZVDhw5x9uxZqwWP5gr1lZWVnDp1il27dnH06FFKSkqszjPYyJU57tGQZZny8nLLa+j9/rS1tY3q3MIEl5Vl6nlm54RIcFyjWmgtOB9VVfH09GTNmjWfX7xaW+G110y1iEZ5wRLGhqZpyLI84HZ4M3NCkJyczPHjx4mPj+f+++/v91hPT082bNjAxYsXMRqNA46OSpJEfHw8iqJw7tw5SktLLQVZo+9sdfbz88Pb2xtFUaitreXGjRs0NDQQEhJCT08PkiQNGLskSZYF2fd6/QPd5+Xl1afViKqqFBQUMH/+/EHPLTixrCzTzjNBGIAYKRKsKIpCTEwMhw4d+vzGgwehrQ22brVfYIKVyspKoqOjh1zxXZIkIiMj6e7uZs+ePYMWP5szZw6lpaWD9i/rvYYpNTWVrKwsy/PcfQyYdrqlpKQQHBxMXFwcOTk53L59u08bEHMLmEcffXTA5969ezfnzp3j8OHDXL9+vc/9ly5dIjQ0tM8ImiRJeHp6UlNTM+C5BSf32WciKRIGJZIioQ/ztEu+eVHiK6/A4sUQE2PfwASLiIgIcnJyhtVbzNy9PiUlhRMnTlBlbozZjyeffJLS0tIhnV9RFLy8vEhNTR30OPPIo6IoJCcnW9rHwOeFHtva2ggODh6waW12djbp6el4eHgQFRVFW1sbZ86csTomLy9vwLjj4uIoLS3l/PnzXLx4kYMHD3Ls2LERlQ0RJpjubtNIkdgkIgxCJEVCvwwGA5cuXYKiIvjgA/jSl+wdktCLLMssWrSI1tbWYTddlWWZyMhIrly50me9j5mLi4ulp+FQDHcdkCzLBAUF4e/vT3NzMwUFBZSXlzN79myr7ft3u3LliuX1KoqCi4sLuq7T0NDAlStXeO211yybBPp7TjNXV1dL4cjw8HD2798/rPiFCSg721Rtf/p0e0ciODCRFAn9UhSF1NRU2n73O/D2NrX0EBxKREQE4eHh/U5D3YuiKISEhJCZmUlubm6/x9x3333k5ubabBRFURQCAwOpra1l69atrF279p67Ru+ORZZlvLy8ePfddwFTj7aUlBTL/fd6X2RZRtO0US/uFiaATz81/SmSImEQYqG1MDBdR/q//4NNm0xtOUQDwzHX0dHBmTNnqKurQ5IkHnvsMcLCwob8+ClTphAYGMjZs2eJjY0d8hojMCUlAQEBFBUV4efnx5kzZ3B3d0fTNJqbm1mzZg1PPvkkJ06cGNb6paHqvVh6sIXTvc2bN4+6ujqr23Rdt/Rg630OTdMoLS3F398ff3//ARvRmnuzCU7uk09MTaf9/e0dieDAxEiRMCCfixfxrKwUU2c2cvz4cS5fvkxwcDApKSmkpKRw7tw5bty4wZ49e9i7dy+tra33PE94eDirVq0iJydn2DEoioKfnx8nT56kq6uLiIgIoqKiSE1N5eOPPyYzM5OVK1eSnZ09kpfYL/MC7oqKChoaGti0adOQE66kpKQ+a4bMj717tMfcrsQ8mmZ+3N2jR3l5eawT7Wmc35UrIBoOC/cgkiKhX4biYmJ/8APUefNgwQJ7h+N0jhw5QkhIiKVQmaIoyLJMVFQU3d3dliTp+PHjA9YX6s3T05Nt27ZZkpfh1GRVFIX09HTc3NysbvP19aW5uZmysjJ27txJbm7usM7bH1VV6erqsjSHXbp06aAJUXV1NW+99Ra7du2yvA8hISED1mbqz/Xr13nsscfYvn07ERERFBQUWO7LzMxkiyhG6vw0Da5eFUmRcE8iKZpkjEbjoOssdF1Hqq8n6W/+BkNICMrrrztNN3t70jSN999/n+PHj7N7925iYmKQZbnP6Ib5Ym++LykpiY8++mhIzyHLMtu3b6esrAxVVYe1FkjTNBRFITMz02ohs5eXF7m5uVRVVbFx40bKyspGtcZIURTc3d1paWkZUmJz8uRJgoODSUtL4+TJkxw/fpyI3k2Ih/B8aWlploXUMTExPPXUU1RXV1NUVMRGsVZucsjPN/U9e/BBe0ciODhxtZtEVFWlra2NnJwc8vLyqK6upqury+qYmqIiYp99Fo/ubgzvvAPBwXaK1rns2bMHPz8/wsLCSEtLG/LjVFUddOt8f9atW0d3dzcdHR1DXoAtyzKxsbEEBARQX19vlRgFBwdz7tw52tvbcXNzG/Haot6jTC4uLvc8vr29ncTEREuj2NDQUMLCwsjLyxv2c6ekpHDgwAHA9Joef/xxNm7cKFosTBYXL5r+FCNFwj2IhdaTiHn9SEtLi2UNhaZp1NfXU1ZWhoerK4/v3g0VFXD6NAxjS7YwsMOHD5ORkWH593B2OsmyjKen57Cfc8GCBWRlZVFYWEhQUJBlVGawCtiaptHd3W11PJh+bqKjozlz5gwpKSm0tLSMatF1VlYWy5cvR1VVjhw5gr+/PwsWLOhTQfvChQv4+flZ/m1+ztjY2AEXTQ8mIiKCtra2e1bLFpzQ+fOQlgYD1L8SBDMxUjTJ6LpOQECApWeVLMuEhIQw8/77Sf/d7+CNN0wtPcQw85g4e/YskZGRI368JEnExMRw5MgR2tvbh/XY9PR0Zs2aRU5ODpWVlRQXF5OTk0NdXV2/U2Dm0aKOjo4+PcIURSEsLIzq6mpkWR52CQDzaykuLmbbtm0EBQWxd+9e4uPj8ff35/z58+zevdsqroqKCkuD4t50XR92QgSmHm+WgqTC5HL+PMybZ+8ohAlAjBRNMua+UsXFxSQnJ39+x89+Br/9LfzP/8Djj9svQCeSn59PT0/PgD3EhkrTNGJiYrh8+TLl5eWsX79+wGmfq1evkpmZia7rREVFsXDhwj7d5j/88MMBR3pUVeX27dt4e3v3GVFRFMUyaqUoyrBHazo6Oli7di2yLLN//36r0TNvb2/S09M5ePAgTz31FKqqEhIS0m/z2JHWFFJVlSlTpgBQVlbGqVOnmDdvHklJSSM6nzBBtLWZahQ984y9IxEmADFS5KQGWmirqiolJSWmasW6DidOmFp4fPe78MMfwle+YodonU9bWxu3bt3C09Nz1PV9zI/38vIiOTmZEydO9DuC8uqrr6LrumXnmq+vL3v37qWpqclyTH19/aBJmqIoJCYm9llrdncs5mOHOmKkaRplZWUYDAY0TSMwMLDf42JiYsjLy+Odd94heAzXs6mqSl5eHh4eHvT09HD+/HkyMjI4f/78mD2H4KDOnwdVhYcftnckwgQgkiInpGkaRUVF5OTkWDX+7O7uJicnhzmzZiG/+io88ACsXGn6JHXgALzwgh2jdi5Hjx4lIiJiRNM8gzHX3rly5Uq/94EpWTGPsKSkpHD27FlL41RfX19LvzHov+KzeWHzULbfD/X1aZpmSeRycnIICAjo9zhZlvn0009RFGVMK2krioKrqytGo5FXX32VhIQEANLS0njjjTf6TTIFJ3H6tGnDyJ1RQkEYjEiKnJCu6xiNRnbs2MGsWbMsBQBnTZnCzuZmIhctgu3bITQU3nvPtDNj40YQrQ7GRF5enmXXlC2oqtrv2pj+ppXMu8c6Ojo4fPgwiqKwdetWfHx8KCoqsqwt681cXfpeSYmmacNaW2SO79atWwOe27yo29/ff0zfP03TCAsL48033yQtLc0SiyRJREZGWnamCU7ozBl49FHx+00YEpEUOSHzhaWpqQkPDw8W3ncfs95+G9eUFPibv4E5c0yFzE6cgCVLxC+LMXbp0iWbJUTAgKM4nZ2d/SYp5sapsbGx7Nmzh9LSUlJTU9m4cSNFRUWA9XSrwWBAVdV7jhTJsjyskTBzItLZ2TnouRVFsckIm4eHh6U+1N0xpaenj+nzCQ6is9P0oe/RR+0diTBBiKTISXl5efH2229Dfb1p18WLL5p6mOXkwN69MHOmvUN0StevXyctLW3ML+q9SZLUb52f+++//57JWGpqKhUVFezatYurV6+ydetW2tvbyc/Pp6CgwLKWaKA1RaOJ2Tyl5+vra9P3Z7AY7qaqKpmZmdx///3jHo8wDj76CLq6TB/+BGEIxO4zJxbq7Y22ejVyfT1cvw6pqfYOyenl5eUNuzHrSPRuyWE2bdo0du3aRWpq6oBJh/n21NRUdF3n8OHDdHd3ExoaSkZGBqGhoXR3d5Ofnz+mr0FRFOLi4gAcqvmq0Whk0aJF9g5DsJV334WwMJg2zd6RCBOESIociHmLc2dnJy4uLiP6NG0uwFeUl8ejv/41UlYWnDolEqJx0tHRMer+YEMxUMKydu1aXn/9dTIyMiyLhxVFGbCdSFxcnKXuT1VVFZmZmZaK1kPtXD8UnZ2dzJ49G8AhqkirqorRaKS2tpb58+fbOxzBVk6ehKVLxRIBYcjE9JmDUFWVyspKPD09iY6OprKyckQF8mRZxsVgYMHevURfv4504ADcuRgJtufn52eXqSEzX19ftm/fTlVVFbm5uRQXFw9a1+fudUEBAQEkJSUNqxXJvWiaRmlpqWX3lz2TIvP/qZycHKKjoy2V3QUnVFsLn3xiSooEYYjESJGDUBSFwMBAMpKTYc8elHnzyKuowMvLa9if1qP/93+JPHGCi888w5xVq2wUsXC31tZWwsPDx+W5+huN+uSTT7h16xaBgYG0tLSwZMkSurq6LFWoh5qs9d6ZNdaxNjQ0jMk5h8s86lVSUkJcXFyfgpaCEzpxwlSLbcUKe0ciTCBipMhB1NXV8fDDD8PBg/ClLxH95S/DnaJ7wxkxCj58mMj/+R/Kv/51DH/1V3zyySe2Clm4i67rNl9LZHZ3AcYPP/yQjo4OUlNTCQsLIzExkczMTMtUbEtLy7Dr/oxVUqQoCvHx8QB2qQekaRoNDQ1UVVWxYcMGyzSe4OSOHzfVYouIsHckwgQiRoocgHltgyzLcOQIxMfDzZssev55rv7zP1PS0UFMTAyq0YhrRweG27dxuX0bw+3bGBoacKmvt/zpf/o0NU89RdVf/IVlZ81MsdNsXPj4+NDY2Ii/v7/Nn6v3Quvr169jMBgwGAxWBRx9fHy4cuUKO3fu5PTp00iSNGhDWDPzqMpYJXi6rlNZWQlAUFAQpaWl4zrFmJOTw5NPPjmixrrCBKWq8Pbb8I1v2DsSYYIRSZEDMBgMhISEmLaOHj9uarmxZg0sX84Df/VXzAwLo6esDKW+HuWuT9q6otATEIAxMJCewECqvvhFKp55BiQJWZYdaqfPZHD79u1xSYp6f19v3rxJSkpKnyRGURSSk5Oprq5m4cKFvPnmmyiKQlBQ0KBJyVgusAZTUuTt7U1paSkxMTHU1dURFhY2ZucfTHZ2Njt27BiX5xIcyPnz0NAg+jgKwyaSIgeRkZEB778PLS2wfj1MnWqqsfHTnyK5u+P6+OMQGkpZdzdZjY1EzJhBl58fur8/DHABM1e2FsZPV1cXRqOx30amY8nV1ZXOzk7KyspITU0dMIlRFIWzZ8+yYcMGVq9eTUtLC2+++SaJiYkDxjhW02Zmsizj5+fHxYsXiYmJoampaVySoszMTLZv327z5xEc0JEjpq34Dz1k70iECUYkRQ6go6OD6OhoeOklSE7+vEdPcjK88orVsdF3vt5++20CfH1RJIn+LmHmLdVz5861dfhCLy4uLmOeVAykoaEBNzc36uvrCQoKGjAx6t3Kw8fHBy8vr0GTNluUFFAUhYSEBK5evYqHh8eQpvFGytz8dfv27eO2xktwILpuSorWrRvwA6MgDET8xDiAlpYW0zfi6FHTKNEQLhYrV66ktrbWsk4ETGuTNE1D0zQKCwuRJMmywFUYHwEBAeO2XqakpITw8HAWLFhATk4ORqOxz6J8WZZJSkoiMzPTcpu3t/eQzj/WyZG5dUhUVJRNE6KGhgZWrFhBZmYmH3zwwZg2lhUmgFu3ID/f9LtUEIZJJEUOwM3NDfXcOaiuHtZ/5NWrV1NeXk5raysNDQ2WujQhISFs2bKFOXPm2C5ooV+zZ8+mubl5XAo45ufn8/HHH3Ps2DG2bduGp6cnjY2NfRIjTdO4evWqJTmoqKgYdFrVPIo01q/BnCzacvRG13UCAgL48MMPaW9vx9fXlzfffNNmzyc4oEOHwMdHtPYQRkRMnzkAPz8/qn/1KyJDQ2GY011r1661UVTCSAQEBNDY2Iivr69Nn8c8Kujm5kZSUhJ79uxh48aNSJJEY2OjVYFERVFIT09n3759aJo26Hqi3iba1JOmaRQUFACftzEB0/dEmET274e1a6GfVjiCcC8T67eek1KNRnzefZfO5cvBjtWQhbGxZs0a8vPzbTpadHcxxrS0NI4dO4a7uztFRUX9jgQlJyeTkpLSb9+0gYzHiNdY0HWd5uZmJEki9U5LG/MUnUiKJpFbt0xfW7bYOxJhghJJkQPwKinBp7KSTxMTLZ90hYnLYDCwYcMGCgsLrbrNm/ttjUWiYd7R1draavl3bGws9fX1Ay6kVhRl2LvixmvR+Ghpmoa3tzcpKSl97mtubrZDRIJd7N8Pfn6wfLm9IxEmKDF95gD8T51C9fREWrqUwsJCgoODbT79ItiWwWDgqaeeor6+nry8PGpra2ltbbVs1/fx8SEwMNBSmXoktYHCwsKorq62LJw2jxxFRUWN7YuZABRFGTDZ7OjoAExTjq+99hqSJLF169bxDE8YD7oO+/aZ1mWKqTNhhERS5AD8T52iaf58ZE9P/D09qa2tFUmRkwgKCiIoKKjf+zRNo6qqio8//pjOzk4SExOB4a3lMdei6j0CZM+GtPY00KhWYGAgRUVFZGdnk5qaKmp3OauPP4acHPjNb+wdiTCBiaTIzlyqq/H67DOq7xSZ0zSN0NBQO0c1ORw9ehSDwUBAQACFhYXMnj3bsh5lPMiyTGRkpKVTe3l5OadOnSI9PX1IjzcajUiSZPNCkRNZV1cXvr6+ZGdnExwcDCD+fzmrP/8ZIiPFrjNhVMSaIjvzP3MGXVFonDcPXdcpLCzEx8fH3mE5vcOHDxMdHU14eDhubm6kpKRQV1fHkSNH7FbXJioqih07dpCfnz+k4w0GAy4uLqIOzyAKCgooLy+3LLbOyckhISHBzlEJY6672zR1tmOH2KwijIr4iGlnfh98QMuDD1Lc1ISX0cjmzZvtHZLTu3z5MpGRkVa3KYqCLMvExMRw6NAhNE3rdzpGlmVmzJjR74Le/nR3d3P48GH8/f1xcXFBlmW6u7upra3FxcWFuLg47rvvPqteZps3b+bAgQNDungHBgbS3NwsplvvomkaXV1dhIWF4efnZ5lSfPDBB+0cmWATx49DfT08/bS9IxEmOJEU2YF5DUhDQQE+V65Q84Mf8OSTT9o7LKdz7do1bt68iYeHBx0dHfj6+mI0GgkKCrKq42NmToLi4uIGXLQrSRLNzc28+uqrBAcHM3/+/AGfPysri9zcXJKSkvokWP7+/kh3mvZeu3aN8vJyOjo6CAoKYvr06WzatIlDhw4RGxs76A4wTdMsr0tMo1lzcXHB3d3d8v6VlpayXlQ5dk5/+APMng3Tp9s7EmGCE79Fx0F9fb2l/5SmaTQ1NZGcnMySzk5kVSX8q1+1c4TO6ebNm6ZGu3yeiOq6jq7rgy5mHspC58TERNrb26moqCApKanfY/Ly8vqMSJn1XgxtHjFSVRWDwUB1dTWfffYZ3d3dlJWVWc7R3wJq8wVfJETWZFm2+j4ajUZL+QLByZSXw1tvwe9+Z+9IBCcgfpPamKZpdHR0kJKSwhRzo1ezf/9306eb6Gj7BOfkXF1dLY1HzUmDJEljUnvHXDzxo48+GjApWrJkCZcuXRrSGrG7F0ybd61lZmai6zpVVVVERET0SYwmSh0he1MUBU9PT6vbbt68ybVr1zAYDJYdabIsYzAYcHNzw9PTE29vb/z8/AgICCAoKMhSQkFwIH/6E7i7gyizIIwBkRTZmCzLRERE0NjYSGZmpmXkgsJC06eb73/fvgE6qfPnzxMXF2fTpEFRFJKTk6muriYsLKzP/Z6enlRUVJCcnDzibfJpaWkUFRWxfPlyLl68SEBAQL8jWbbsOu8MJEnC398fTdM4e/YsZWVlpKamkpqaiqIolma15mN7f786Ojro6OigoqKCzs5Ompqa8PT0ZNGiRXZ6NYKFqpqmzjZvBrGuThgDYvfZOFAUBTc3N3Jzc0031NSYKq5GRMDXvmbf4JyMqqrs27fPsnDa1mRZ5sqVKwPev3r1asrKyvo0aR2Orq4u/Pz8aGtrGzDxEQnRvVVWVnL06FE8PT0to3vm5Mdc7dtgMAyawLq7uxMSEmIpCCnY2VtvQVERfP3r9o5EcBIiKRpH0dHR0NICTzwBra3wzjtwp3aKMHqaprF3715SUlLGLSkyGo3cvn17wPt9fX155JFHqKmpGVFiJMsyQUFBtLW18eijj4rkZ4RUVSU9Pd30f5DRFbjUdZ2GhoaxCk0Yjd/+1rQEYfZse0ciOAmRFI2TtrY27p8yBTZuhOxs0yccUS9lzGiaxp49ez6fnhwn5uKPgwkNDWX69Ok0NjaOKDEKDQ0lKyuLCxcujDTMSc+cBI02UVZVlZKSEtasWTMWYQmjkZcHb78Nzz5r70gEJyKSonHi5eFBx5YtcPo0HD0K999v75Ccyr59+8Y9ITILDw+nrKxs0GPi4uKIjY2lvb192ImRuThjeHj4hOla74xUVaWqqorFixeLAquO4De/gaAg2LLF3pEITkQkReNB14n+j//A8403YPduWLzY3hE5lSNHjpCWlmbXGK5duzbo/R0dHYSGhuLr60t3d/ewqlD3Ht0Q02f2o+s6cXFxA/ayE8ZRYyP8v/9nWkvUq/CpIIyW2H02hnRdR9M06/UKRiPhf/oTYXv30vRP/4Tfpk32C9AJ3Lhxg7y8PIxGI93d3ei6bvnUrqqqXZqhGo1GGhsbB7y/u7ubt99+m5CQEFpaWvD29kZV1TErDyDYnqZp5Ofns/1Oj0LBzn7/e1NrD7HAWhhjIikawEBtHgZj3sqr6zpuFRUEv/46QW+8gWtNDRVf+QoB3/ymbYKdRD799FPLQmpN06y+T/bqDm8wGAZts5Gbm0tsbKylaKSXlxfV1dX4+/sjy7JIjBycedpsw4YN9g5FAOjpgV//2tTnLDzc3tEITkYkRQPo7OykrKyMmJiYIV1sdV2noaoKjxMnmH7pEn6XLqF6eXF75Urq1q+nPSODtrKyIffMEvrn6elptWh2PHaYDUVnZ+eA97m6utLZ2Wkp0NjY2EhQUBBlZWWW3VCCY4uKirLqTyfY0d69UFYG3/qWvSMRnJBIigYgSRJLlizh8uXL+Pn59bm/d6E397w8fF57jfveeQeXlhZaZs6k8Cc/oWHpUvRev0gH27otDE1bW5vdpsnuZm4ZkpmZyaZBpkX9/Pxobm4GTKNZHh4edHZ20tHRQX5+PpGRkVa92EQhRsehaRq5ubns2LHD3qEIAJoG//zPsGaN6HMm2IRIigbg4eHBRx99RFRUlGXtSu8LldLcTPeuXaRduIB/ZiZ6SAjSM89QuWoVFXemUjRNQ79zAc/Pz2fjxo32ejkTWkVFBRcuXCAyMhJXV1e7JAyapqHrulUyZl4TlJqayvnz51FVlaVLl1o9rqenh/z8fEpKSkhISEBRFMtXUlISbW1tlJSU4OPjQ3BwMOXl5TavxC0Mjaqq1NTUOHSz5pdffpmf/exnVFZWMnXqVH75y1+yYMECe4dlO0eOQFYW/PGP9o5EcFKOMffggHRdJzg4mISEBJqamkxtALq68Dt9msS//3vuW7mSh/78Z/zj4+HgQaSyMvi3fyNi8WIKCgqoq6ujoKCAwsJCFEVh48aNDjG6MdHcuHGDW7duERcXhyzLGI1Gu0yZybKMrutW2+nNrSEURcHb25uAgAB27dpFW1ub5ZgjR47g6upqSYjuPqePjw8pKSlERkZaOt7Lsjys3WmCbUiSREhISJ+eaY7i1Vdf5Zvf/Cb/8A//wCeffMKCBQtYtWoVJSUl9g7NNnQd/umfTLt35861dzSCk5J0Jyp80tzcjJ+fH6dOncLb23vIjzNPx/T09ODi4mJ1n7GnhxmqSsN//Ach776LS1MTbampZD74IA/++79PqoV+5tYGvad6bOX69evcuHGDlJQUywJ2VVWprq4esPO8rZl3jJmTsu7ubgCrJqGqqpKXl2fZpXTkyBGio6ORJImenh5LI1ln1N/7MZHl5eWxZRQ1cGz9/2XOnDk88MAD/K5Xd/iMjAzWr1/PP//zP9vkOUdj1O/Hm2+aps3efRcee2wMI7OP8fx9OhEM5/0wX+ubmpoG3eQyEmL67I7s7GzS0tJob2+no6ODzqIiYt97j/TMTMjLI9Lfn+atW/koI4PyoCDmzZs3qRKi8fTBBx/g5eVFSkqKVed4RVHslhCZn/9eZFm2Glnw9PS0TIWZR5smC0dZ+zUSmZmZDr39vru7mytXrvC9733P6vbly5dz7tw5O0VlQ7oOP/4xPPooLFli72gEJyaSIkwXO3PxP09PT5quXmXtv/4rNDbSsWmTaWHfypX4Kgqi7KJtZWdnYzAY+nQqNzNPXznqxVaSJGJiYigtLUWSJKtF+rquU1ZWRmxsrMPsmrOluro6AMLCwqzW5BmNRgwGg0MmTZqmUVBQwPbt2x36e1RXV4eqqoSFhVndHhYWRlVVlZ2isqGjR+GTT+DUKRDr7QQbEknRXVyqq1n2b/9Gp4sL7gUFYL6oOdgvb2d1+fJlUlJSBrwgOdpFtD+6rnP58mXa2tpITU21um+ytIcwX7Czs7O5ffs2fn5+REZG0tLSQllZGUFBQXR1dREZGWn5npqTJHvuvispKRnVlNl4u/t9csqdi5oG//iPphGihQvtHY3g5ERS1IuhoYGUZ58FTeP8Cy+wODwc7sxzCraXlZVFamqqQ39CHwpVVWlra+tTsVpRFAICAib86xsKc6KTnJyMoijk5OQQGhrK1KlTLfV+mpqaOH78OMnJyXR0dFBaWoq3tzdtbW3j3rZFVVUKCwsnTEIUHByMoih9RoVqamr6jB5NeLt3w6efgjNOCwoORyRFdygtLaR84xsYWlrI/v3v6RSF2sbdlStXSE5OnvBJgzl+cx0jsz4tYCYB8+sNDQ21GhUCU/2mbdu20dDQgLe3N48++qjlvt27d1sql49XnMPZnGFvrq6uzJo1i5MnT1qVDDh58iTr1q2zY2RjrLMTfvhDePJJmDfP3tEIk8DEvvqMEbmjg+S/+ztcKyvJ/c1v6IqNFVui7cDV1dUpkgZZlnFzc7NMBZlNpkXWvamqSnd3t1U5g94CAgL67Pp87LHHaG5uHrf/h5qmsWjRonF5rtH4r//6L+Lj4/mv//ovnnvuOf7whz/wv//7v2RmZvKtb32LkpISnnnmGXuHOXZefhnKy03rOgVhHEyKkaJ+G7XeIXV3k/Ttb+ORl0fOyy/TcacNh3l7sTA+NE0jKirKadZD+Pj4oOu61e45Z6aqKpqmWY3yqapKU1MTNTU1LF++HFdXV8rKyvj000+5ffs27u7udHZ2EhERwaOPPmqVGIWHh1NQUNAnkVRVlY6ODjw9Pcd0RLGxsREvL68xO5+t/Mu//AvFxcX8y7/8C0VFRdTX1/PCCy9QWVnJtGnTOH78OHFxcfYOc2zcvg0vvQR/9VcwztOpwuQ1aUaKCgsLycvLo6am5vMbjUYS/uEf8P7kE/J+8Qvap027c7PRqgCfYHuyLFNSUjLgaMJE4+vry9SpU61ukyTJaV7f3RRFoa6ujtraWoxGIyEhIcycOZOIiAg8PDw4ceIEJ06coLq6mrCwMFJSUkhISCAlJQV/f38OHTpkqVNiNn/+fMrKyjAajZbbiouLmTZtGjk5OUN6L4c6OtfY2Dis12sv3/ve94iLi7Nsxf/6179OUVERXV1dXLlyxWoKcsL7yU9MzV9/8hN7RyJMIpMiKZIkiWXLlrFlyxZWrFhBXl4eaBpxL76I/5kzFPzrv9L64IOW4w0GA3FxcVy5csWOUU8emqZx5swZFEVxmpEiNzc3/Pz8KCkpsbowO2tSBKbRsfj4eAoLCzl79iznz5+nq6uL2NhYUlNTCQ4OthxrHkEz/5mYmMjhw4f7jNBu2LCBiIgIysrKqKurY926dQTdqRM2UMKjqiq5ublomkZWVtY941ZVla6urpG+7HH1zDPPUFRU5FxTZP25dcs0dfajH4l6cMK4mhRJ0e3btwkMDARMIxJbNm8m4MUXCTp2jIJ//Eea+ukV5OHhQWZm5niHOuk0NTVx8OBBvLy8LK08nEVFRQVdXV2WdTGSJFmNejgTXdepqKigrq6OxMREkpOTLdNRA9Wc6k2WZVJSUti/f3+fxDE2NpZ169axYsUKS7XsxMRESktLLcfcvfZIlmVmz549pPd8sq71cli6Dt/6FiQkwN/+rb2jESYZ57kCDaK1tdX6hpdeIvH118n927+lasmSPr+ENU2jtbXVuRsrOoCOjg5OnDhhWQPhDIuse6urq2PBggW0trZaGsrePUXkDFRVpaSkhICAAMti+ZEkt7Isk56ezt69e4e0wNrNzY2mpiby8vLIzs62JDeKohAYGEh1dTWxsbFDWtflTMn4hHf4MJw8Cb/4Bbi52TsaYZJx+t8EmqZZrw/67W9NQ7IvvkjqL39JUFAQhYWFlmMBS5NPp1mw6IBUVeXQoUP9Nkp1Fo2NjURFReHu7o6u63R3d3P79m17hzXmzLvs/Pz8Rv29lCSJjIwM9uzZc8/EaM2aNSxZsoQtW7awbds2srOzqa6uJjMzk0WLFnHy5EmrlisDTV0aDAaioqJGFbcwRlpaTKNDa9aYvgRhnDllUmTeCdPW1kZeXh5bt2413bF7N3zjG/Dcc/CDHwCQnp7OU089RXV1NU1NTQAUFRWJUSIb279/P2lpaU77Cd1oNFp+nubPn09TUxMdHR0YjUanXFcUHx8/psmtOTEa6hS2oijs2LGDxx9/nJ07d3L27FkyMjIAqKqqwt3dnZycHMv3BLBMq1VUVPDwww+PWezCKPzjP0JDA/znf9o7EmGScsr9wvn5+QQFBbFs2bLPd2McOwZf/CL8xV/Az39u1T9HlmUef/xxmpubuXr1Kps2bbJT5JOHvds52JrBYCAiIsLSumLZsmUA7Nq1S6xhGaLU1FTa29vZu3cvcXFxzJ8/f8iPjYqK4sKFC8iyzPLlywkODmbq1KlomkZhYSGfffYZzc3NhISEsGzZsklTOsGhXbsGv/qVqSaRGKUX7ETSneg3dHNzM35+fjQ1NeHr62t956pV8O67pv94d22VHox5DYiHh8cYRjoxjeV70dbWxsWLF60apk405p1S5sW/Ax0zr1cl3t27d5OcnOyUF+GhvB8jYU4si4qK8PLyYunSpRPi/RO/O6wN+n709MCcOaY/r16Fu4p5OiPx82FtOO/HoNf6UXLOuYv+/P73pgJgCxfCpUv2jmbS8/LyoqKiwqkrh6uqSnl5udVC/8jIyAlxQXck5mm52NhYQkJCOHLkiFNOQU5qP/85XL8Of/zjpEiIBMc1eZKi6Gg4c8aUGC1ZAidO2DuiSU+WZadOihRFITY2lvfee49r164BsHjxYnJzc8VFfQTM688SEhJ45513xvz8PT09nDp1it27d1NeXj7m5xcG8NlnpgKN3/kO9KoXJwj2MHmSIoDAQNNWz8WLYfVq08JrwW6caOZ2QIqiEBERQXd3N/v27QNg9erV5Ofni8RohDRNIzQ0lI8//nhMz/vxxx/j4+NDamoqRUVF5OTkjOn5hX4YjaZ1ngkJpkXWgmBnkyspAvD0hEOH4OmnYedO+Pd/t3dEk5bBYHDa7fi9KYqCoiikpKTw2muv4e3tzfLly8e14akzMY8wNjQ0jGndp6KiIlRVRZZl3N3dRUX78fDSS3DlCvzpTyDW1ggOYPIlRWCas/5//8+0Lf/b34b/7/8DcXEaV0eOHCE5Odlpd58NJDY2lpKSEoKCgmhoaLB3OBOWLMsEBQXxwQcfjMn5Ojo68PPzQ5ZlSyPbJUuWjMm5hQFcuAA//Sn88Icwd669oxEEYLImRWDakv/SS6Z6GP/xH6ZRo7v6Lgm2UVxcTExMjL3DsAtJkjhz5gwAKSkpTlunaTxomkZsbOyYnOvgwYOEh4cjSRI1NTUEBQURFhY2JucW+tHaavqd++CD8A//YO9oBMFCbIP5xjdMDQd37ICaGjh4ECbwNnFHdPv2bU6cOIGLiws9PT2kpqYCpovaZEsKFEUhMTGR2tpapk2bxvnz562qLgtDo+s62dnZ7Ny5c0zOZx4hysnJYf369Xh7e4/JeYV+6Dp8/etQVQVvvSV2mwkORSRFAJs2QUgIrFsHjz5q+o8aGWnvqJxCXV0dZ8+eJSkpybIWpKmpiYqKCpKSksa8ps1E4OLiwrvvvsu2bdu4ffu2wydF5jpBjkLTNLKzs9m2bduYnXP79u0APPTQQ2N2TmEAf/oT/N//mb5SUuwdjSBYmVwf0wezcCF89BHcvg3z5pm2iQqjVlxcTHR0NIqiWLql+/r6kpGRMSkTIjCNSkRGRtLS0kJbW5vD78IbSkKkquqgu+k0TaO6unrUsaiqSkFBAVu2bHGoRE0YoqwsePZZ+PKXTdNnguBgRFLU27RpcP68afrs4YdNdY2EUZk1axZZWVlWF8zJtri6P56enrz99ttomubwW/N7enoGvV9VVSoqKsjPz7f0djP3FQNoamoiOzub27dvj3q3nXn60UVMuUw8LS2m7fdJSfDrX9s7GkHol0iK7hYdDR9+CDNnwrJlcOSIvSOa8NasWSNqvtxFkiT8/f0JDAx0+ArXra2tAyYzmqZRUFDAkiVL2Lx5M6GhoeTm5pKbm0tlZSUBAQEsWrSI8PBwMjIyJt0aMuEOXTet36yogNdeM5VGEQQH5Ni/je3Fzw/efhv+8i9Nw7xlZaat+2KEY0R8fX3ZuXMn+/fvJykpyd7hOARzUpSTk4Ofnx+urq4OmzBUVVUREBBgqeGjqioGg4HGxkbq6urYuHEjLi4udHR0EBsbS1paWp9ztLe34+/vPyajhI76PgmD+Jd/gTffNK0jSk+3dzSCMCCRFA3E1dX0HzguzlRptajI1MHZwT/VO7JNmzZx9OjRMdtGPdHJskx6ejp5eXlIkkRSUpJDLWrWNI3Ozk4ee+wxPv30U2pra1EUBU3TCAgIYMmSJbi7u1NTU0NLSwuRg2xOaG5uJjw8fFSvTdM0ysvLWbt27YjPIdjB22+btt3/wz/A44/bOxpBGJS4wg9GkkyFxWJjTYsDS0pg3z7w8rJ3ZBOSrusYjcZJuRV/MMnJyWRnZ1NZWUljYyMZGRkO8R6ZKzsXFhZSW1tLeHg4jz76qNUC+XfeeQdXV1c8PT05e/Ysq1at6rfL9YMPPkhzczNGo3HQGQJqigAAJ8xJREFU6ULz6+7u7u6zEF+WZby9ve3+vgjD8NlnsGWLKRn67nftHY0g3JOkO/rWl2Fobm7Gz8+PpqYmfH19x+Sc5jYCHqdPw1NPmRrKvvEGRESMyfknEst7Mcxy/CdOnKC2thZ/f39LgTxn0H2n2OdY7KIzT01lZ2fj5uZGYGAg3t7eDjNqZB7BamlpoaysDC8vL9ra2qwSuM7OTqqqqli5ciVe/XxwuHLlCpmZmaSnp/f5GTCfv7CwEC8vLxYvXswnn3xieW9VVaWwsJCnnnpqwiRFI/3/4jRqa2HOHPD2hrNn6biTDE/a9+Muk/7n4y7DeT9sca03mxi/XRzBypWmBdhVVaaS9Ddv2juiCaOuro6MjAwiIiKcJiEaa+aSBcnJycTFxVmmqhxlZ5o5OfPx8SElJcVq7ZA5SZFlmfDwcA4fPtzvOWbNmsXOnTtpaWmxul3TNPLy8tB1nU2bNrFq1Srq6uqsEqLS0lJWrVo1YRKiSa+rC558EtraTB8ifXzsHZEgDIn4DTMc999v6tcTEGDasv/OO/aOaEK47777+lzczVu2W1tb7RGSwzIYDMiyTEJCAjC0GkHjzTz91V+CIssyGRkZHDt2rN/HNjQ0WH2yU1WVoqIiNm3axIMPPmi5vayszPL3oqIiFi9ePOafCAUb0TT4whfg8mU4etS0LlMQJgiRFA2Xecv+I4+Y5sn/53/sHZHDmzZtmtWW/K6uLnJzcwFYsGABmZmZAJaaPUaj0eELGtqaIyZDQ6XrOq6urv12sPf19SUzM9OSFBcWFrJw4cI+U5DTpk0jPz8fFxcXNm/eTGBg4LjELoySrpsabB84AHv3ikavwoQj1hTdw4DznEYjfPOb8NvfwnPPwb/9G0zgC9lQjGYOXNM0ysrK8PDwwN/f36r4XmdnJx988AFtbW2WyshhYWH4+Pg4dHIwlmuKnEHv90PXdYqLi9m4cWO/x5aWlpKTk8OiRYsc+ns8GpNyzcjPfw7f+Q68/DL89V9b3TUp349BiPfDmqOsKRK7z0bKYIDf/Ma08Pqb34S8PNi927SoUOhDluUBt+K7u7uzatUqq9uuXr066UeLJjJd1+nq6hrw/piYGGJiYsYxIsHm/vQnU0L0gx/0SYgEYaIQ02ej9Td/Y1pI+MEHpim10lJ7R+QU7r//frHeaAIyrx3Lzs5m2bJldo5GGDcHDpgK3X71q/Dii/aORhBGTCRFY+Hxx+HsWWhshNmz4eJFe0c04cmyTFlZmcPsvhLuTdd1ampqMBqN7Ny5k5CQEHuHJIyHt9+G7dth61bTtJnYYSpMYCIpGivTp8OlS6ZmhwsXmoo8CqPi5eUltmCPE3P1anMSOpxGtaqq0tnZSXFxMUuXLmXOnDm2DFVwJO+9Bxs2mEqW/OlPTr+uUnB+4oozlkJDTb8kNm+Gbdvgxz82bU8VRuSxxx6jqalp1J3VhcHpuk5+fj6xsbHk5eUBpl5lubm51NbWWo67e1egeQdZbm4uMTExrF+/XnSvn0zefx/WrIFHH4X9+0F87wUnIBZajzV3d3jlFZgyxbTg8OZN+POfxQLsEfDx8aG1tRV/f397h+KUzFWkc3JyWLNmDSdPnkRRFCoqKnjggQdYuHAhANXV1dy4cYOamhoURSEiIoKmpiaampqIi4tjx44dAP1uwRec1Pvvw+rVpoToyBHT7z1BcAIiKbIFSYLvfQ+mTjXNtT/8sKmIWXy8vSObcFavXs3rr79OVFSU027dtjVd1/utJN7T04O7uztLly7l9OnTlt1g+fn5REVFWY4LCwsjLCxs3OIVHNyJE6Zq1SIhEpyQmD6zpTVr4Px5aG42LcA+fdreEU04iqIQFhYmEqJR6C8hMleSnjFjBidPniQ0NBRZlpFledBu98Ikd+QIrF0LS5bA4cMiIRKcjkiKbG3aNPj4Y9NC7KVLTbszRP2dYZk/fz5ZWVliJ9oY0HUdVVXp6elhyZIlfPTRR6Snp1slnT09PRw4cIBz587ZMVLB4ezZA5s2wbp1cOgQiKKDghMSSdF4CA42DTl//evw7LOmWh6DFLYT+kpJSRGjRQMYykJ0VVXJzMykuLiYnJwc3N3dCQ4Opq6urk+y6e3tTVxcHG5ubrz11ltW9xUUFLBr1y727t3LlStX+n2e/Px8qqqqxAJ5Z/Kb38DOnfD006b2HaKKu+CkxJqi8eLiAr/6lamp7DPPwK1bpoJnYqpiSB588EHeeOMNoqKi+p0Omox0Xaezs9NSFt+8cHow5rYb1dXVHDx4kKSkpD5lD8wNX1VVpb6+HoC2tjbeffddAgMDSU1NRZIkGhsb+eCDD2hoaKC9vR0XFxdLe5bGxkZycnLQdd2yYFuYgHTdtIv2xRdN7Yx+9jMQZTIEJyaSovH2F39h2pm2cSPMmmVKjB5+2N5ROTxZlmlpaUFVVctFe7KTJMmqT9BACZE5eXrssccst7333nskJycPWgdKkiQMBgO7du0iPj6e6Ohoq0Xb5t50Pj4+qKraZ2TIw8OD9vZ2zp49S0NDA83NzWzZskWM+E0URqOpXccf/mBKhr79bXtHJAg2J1J+e5gzB65cgZQUWLwYfvc7sc5oCEQhx/5pmkZOTs6A01WSJFFXV0dERARgSojS0tLumZyYaxKlpaVZkq/eo3Tmx5uTp7vJsoyHhwfu7u6Eh4eTmprKa6+9NvwXKIy/lhbTguo//tFUYkQkRMIkIa4y9hIWZir0+LWvmdYa/eVfgqjzMihXV9dRJ0YDVWo2FyIcT2O15kaWZaKjo+np6elzn6qqFBYWsm7dOsA0DdbT03PP5zZPxfU3vTYcvRMnSZJEcceJoKwMFiwwtS566y34whfsHZEgjBsxD2FPLi7wn/8JDz1kSo6uXYODByEx0d6ROSRd160qKg/GvMOqpqbG6vbOzk50XSciIoLp06cD8Mknn1BTU4OHhweRkZEYjUY6Ozvp7OwkMDAQFxeXMRulMicp3t7eKIpCYGDgqKaTdF2nsrKSJ554gjNnzuDm5mb1XB0dHVa7y44cOUJqauo9X4+iKGiaNqajc7qu0yU2GDi2Tz4xFWU0GExJ0bRp9o5IEMaVSIocwdNPw4wZph5Cs2bBrl3wxBP2jsrhqKo6pKTIvEB42rRpPDyE9VqDdXO/cOHCkBOxoZBlGTc3N5544gmampp44403yMjIGLDA4lB0dnYiyzK1tbX4+PgApgSkpaWFuLg4kpOTAXjzzTdJT0+/5/nMyedYJkTmZHDz5s1jdk5hjL32Gnzxi6ais6+/DnemWwVhMhFJkaO47z64fNk0VL16NfzDP8Dzz4sGi70MlJyYkyVz8cHq6mqmT59uqdA8GFVVuX37NvX19TQ0NNDS0kJ7eztdXV0YjUY8PT3p6uoiJSUFTdMsoycjSRjMzzV//nzy8vK4cOEC0dHRltc2kqRIkiRLG5Suri7LtJckSTQ3N1sSoosXLxIcHDyk5zFPdQ3ndQ22yFvXdaqrq1m0aJFYJO+INA1+8hP46U9NFfj/8AdRg0iYtMRvKEcSEGBqB/Jv/2ZKis6fNxVMEy0WgL5JkaqqNDc3U1VVZVmv4ufnx8qVKwdcu3Lz5k2uX79OQEAAXl5eeHp6WhIcV1dXgoKCCAoKsiRaBoOBnJwcOjo6qKystEz/uLu74+Hhga+vL673qNmiqiqSJJGbm8vDDz9MU1MTlZWVpKamWpKJkY7KqKpqmSJcuHAhmZmZBAUFUVBQwPr16wGoqqqira0NHx+fMS9noKoq7e3tdHZ2WqYEjUYjBoMBTdMoLS2lq6uLtWvX4uXlNabPLYyBpib40pdMv3f++Z/hu981tSkShElKJEWORpZNfdPmzoWtW2HmTFOxNFHrxSopUlWVsrIyFixYwNKlS4f0+P3795OQkDCkQpC9709OTmbatGlW29/B1AD1448/prW1FQ8Pj37PqaoqbW1t+Pr6smPHDjRN4+DBg8TFxY3J1nRFUUhPT+fEiROsWLGCtrY2Ll++zBNPPGFJDN99910yMjIsjxnNVF1vmqbR0tJCREQEqqpSUlKCLMvU19cTGBjI7NmzmT179qifR7CRW7dMU/bV1abpstWr7R2RINidSIoc1aJFpoXX27aZ+gw9/zx8//uTejotKCjIMv0iyzKaphESEjKkx544cYLExMQRJQPm57rb8ePHCQkJGTQhamhoID4+nrS0NK5du8bNmzetEpSxoGkanZ2dAKSnp/dZN2ROjrKyskhISLBajD1S5nYhPj4+TJkyBYDEOxsExIjQBLB/v2nHa0KCadr+zjSrIEx2Yku+IwsPh3ffhR/9yFRVduVK06e6SWr27NmW5ESSJGJiYmhra7vn4yoqKvD29h7x86qqajUd19PTw65du4iMjMRgMAyYEFVXVzN16lR8fX3ZtWsXqqqSmpo64jgGYt6S39LS0u/9mzZtIicnh9TU1GGv6emdDJpLGZinFmtqanjooYes4hC1pBxcVxd84xuwZYupYfWFCyIhEoRexG8wR6copkWQJ0/CjRumNiHvvmvvqOwiKCiI0tJSyzSawWDg2LFj93zc+++/j4uLy4injCorKy3rhurq6jh06BBpaWnAwB3oS0pKmDt3LpcuXSI3N9eSDNmymnNra2uf227dusWBAwdISUlBluVhPb95S39VVRU1NTXk5+ejaRrV1dXous7atWvHMnzB1vLzYf58+P3vTY2p9+wBMaonCFbE9NlE8dhjpum0p5+G5ctN646ef95U62gS6ezsRNM0y8U9NjaWW7duMXXq1H6Pz8rKslrQPFxGo9EyAnPr1i1KSkpISEgYcERE0zTy8/NZsWIFb731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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "omsa.run(project_name=project_name, catalogs=catalog_name, model_name=model_name,\n", + " vocabs=[\"general\",\"standard_names\"], key_variable=key, ndatasets=3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The first plot shows time series of temperature from data station \"edu_ucsd_cdip_236\" and nearby model output.\n", + "\n", + "The second plot shows the Cook Inlet region on a map with a red outline of the numerical model boundary along with a black dot and number \"0\" showing the data location from which the data was taken." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.10.8 ('omsa')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.8" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "393aad9b5b2237e40fb0b42a69b694739ba0baf65a287986ba8256fa5298c468" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/examples/gom_hycom.ipynb b/docs/examples/gom_hycom.ipynb new file mode 100644 index 0000000..5c836fc --- /dev/null +++ b/docs/examples/gom_hycom.ipynb @@ -0,0 +1,310 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Gulf of Mexico HYCOM\n", + "\n", + "Compare sea water temperature between ERDDAP datasets and the model." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import ocean_model_skill_assessor as omsa" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "project_name = \"gom_hycom\"\n", + "key = \"temp\"" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# Model set up information\n", + "loc = \"http://tds.hycom.org/thredds/dodsC/GOMl0.04/expt_32.5/hrly\"\n", + "model_name = \"model\"\n", + "kwargs_open = dict(drop_variables=[\"tau\",\"time_run\",\"surface_temperature_trend\"], chunks=\"auto\")\n", + "\n", + "# ERDDAP data catalog set up information\n", + "catalog_name = \"erddap\"\n", + "kwargs = dict(server=\"https://erddap.sensors.ioos.us/erddap\", category_search=[\"standard_name\", key])\n", + "kwargs_search = dict(min_time=\"2019-2-1\", max_time=\"2019-2-5\",\n", + " min_lon=-98, max_lon=-96, min_lat=27, max_lat=30)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-26 14:49:10,669] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:369} INFO - Catalog saved to /Users/kthyng/Library/Caches/ocean-model-skill-assessor/gom_hycom/model.yaml with 1 entries.\n" + ] + } + ], + "source": [ + "# create catalog for model\n", + "cat_model = omsa.make_catalog(project_name=project_name, \n", + " catalog_type=\"local\", \n", + " catalog_name=model_name, \n", + " kwargs=dict(filenames=loc, skip_entry_metadata=True),\n", + " kwargs_open=kwargs_open,\n", + " save_cat=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-26 14:49:21,008] {/Users/kthyng/projects/intake-erddap/intake_erddap/erddap_cat.py:246} WARNING - search https://erddap.sensors.ioos.us/erddap/search/advanced.csv?page=1&itemsPerPage=100000&protocol=tabledap&cdm_data_type=(ANY)&institution=(ANY)&ioos_category=(ANY)&keywords=(ANY)&long_name=(ANY)&standard_name=sea_surface_temperature&variableName=(ANY)&minLon=-98&maxLon=-96&minLat=27&maxLat=30&minTime=1548979200.0&maxTime=1549324800.0 returned HTTP 404\n", + "[2023-01-26 14:49:23,040] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:369} INFO - Catalog saved to /Users/kthyng/Library/Caches/ocean-model-skill-assessor/gom_hycom/erddap.yaml with 34 entries.\n" + ] + } + ], + "source": [ + "# create catalog for data\n", + "cat_data = omsa.make_catalog(project_name=project_name, \n", + " catalog_type=\"erddap\", \n", + " catalog_name=catalog_name, \n", + " kwargs=kwargs,\n", + " save_cat=True,\n", + " kwargs_search=kwargs_search,\n", + " vocab=\"standard_names\")" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAApUAAALBCAYAAAAJTlpGAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8o6BhiAAAACXBIWXMAAA9hAAAPYQGoP6dpAADZxUlEQVR4nOzdd5xU1f0//teU7Y3the2NXbp0YaVXQXpnVfJL4scHYj7RxIQY89EYY4v6MeYTS4wRFRCVgCAoArKAhUUEVkG3F7b33mfuPb8/+M6Ecdvs7rSdfT0fj30k3Hvn3vccxuG1595zjkIIIUBERERENAhKaxdAREREREMfQyURERERDRpDJRERERENGkMlEREREQ0aQyURERERDRpDJRERERENGkMlEREREQ0aQyURERERDRpDJRERERENGkMlEREREQ0aQ6WZNTU14Ze//CUiIiLg4uKCmTNn4uLFi/r9CoWi25+//OUvPZ5z7ty53b5m+fLl+mMee+yxLvuDgoIMzlNeXo5ly5YhJCQEO3bsgCzLAIBdu3YhMTHR4Nj09HQoFArceeedBtvfeecdODg4oLm5ecBtNFjmaOPdu3d3+5r29nb9Mc3Nzdi8eTOCg4OxefNmtLS0AABeffVVeHh4QKvVGhzr4OCA2267zeA6n3/+ORQKBbKyskzVHP1ijrZ7/fXXcdttt8Hb2xve3t5YuHAhvv76a4NjhtPnszemaP/MzEzMmjULoaGhePzxx/XbN2/ejGXLlhlc75NPPoFCocAf/vAHg+1/+tOfEBISYqZ3OTh9tRFw4+9/5cqV8PLygoeHB2bMmIHCwsIez8nv0P8wR/sOl+9PwDztN5S/QxkqzexnP/sZTp48iXfeeQdXr17F4sWLsXDhQpSUlAAAysrKDH7+9a9/QaFQYN26dT2e8+DBgwavuXbtGlQqFTZs2GBw3JgxYwyOu3r1qsH+Rx55BFOnTsUnn3yCgoICvPvuuwCAefPmISMjA+Xl5fpjz5w5g7CwMKSkpBic48yZM5g2bRrc3d0H1U6DYY42BgBPT88ur3V2dtbvf/HFF+Hu7o4TJ07A1dUVL774IoAb7dfc3IxvvvlGf+znn3+OoKAgXLx4Ea2trfrtZ86cQUhICOLj403YIsYzR9udOXMGW7ZsQUpKCs6fP4/w8HAsXrxYf06d4fL57I0p2v++++7DnXfeicOHD+Ojjz7Cl19+CeBGO33xxRcG/zj31k7z5s2zwDvuv77aKDc3F0lJSUhISMCZM2fw7bff4g9/+IPBf6s/xu/Q/zBH+wLD4/sTME/7DenvUEFm09raKlQqlTh69KjB9gkTJojf//733b5m1apVYv78+f26zv/+7/8KDw8P0dzcrN/26KOPigkTJvT6unXr1on9+/cLSZLEjh07xN///nchhBDNzc3CwcFBvPvuu/pjN27cKJ5++mnh6ekpsrOz9dujo6N7fC+WYK42fvPNN4WXl1evx/zqV78SzzzzjBBCiGeeeUY89NBD+n0hISHiqaee0v/5N7/5jbjvvvvE6NGjxcmTJ/Xb58+fL7Zt29brdczFUp9PrVYrPDw8xFtvvaXfNlw+n70xVftPnjxZpKamis7OTrFy5Upx7NgxIYQQmZmZAoA4f/68/thp06aJv//978LR0VG0tLQIIYTo6OgQLi4u4vXXXzfl2zMJY9po06ZNIjk5eVDXGa7foeZq3+Hw/SmE5T6fQ+k7lD2VZqTVaiFJUpffSFxcXPDFF190Ob6iogLHjh3DT3/6035d54033sDmzZvh5uZmsD07OxshISGIiorC5s2bkZeXZ7B/165d+MUvfgEnJydcuXIFd911FwDAzc0NU6dONfiN5ezZs1iwYAFmzZql315UVIS8vDyr9nCYs42bm5sRERGB0NBQrFixAleuXDHYv3PnTrz22mtwcHDAm2++if/+7//W75s7d65B+6WkpGDu3LmYM2eOfntnZyfOnz9vtfaz1OeztbUVGo0GPj4+BtuHw+ezN6Zq/8cffxyLFi2Cq6srlEollixZAgCIj49HSEiIvj2amppw+fJlbNiwATExMfoezdTUVLS1tdlkO/XVRrIs49ixY4iPj8eSJUsQEBCA6dOn48MPP+zXdYbrd6g529fevz8By30+h9R3qNHxkwbk1ltvFXPmzBElJSVCq9WKd955RygUChEfH9/l2GeeeUZ4e3uLtrY2o89/4cIFAUBcuHDBYPvHH38sDhw4IL777jtx8uRJMWfOHBEYGCiqq6sNjtNoNKKsrKzLeR9++GF9jd9//73w9PQUWq1WPP3002Lr1q1CCCHeeust4eTkJFpbW42u1xzM0cbnz58X77zzjkhLSxPnzp0T69atEy4uLiIrK8vgOEmSRFlZmZBl2WD7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IiIaNIZKIiIiIho0hkoiIiIiGjSGSiIiIiIaNIZKIiIiIho0hkoiIiIiGjSGSiIiIiIaNIZKIiIiIho0hkoiIiIiGjSGSiIiIiIaNIZKIiIiIho0hkoiIiIiGjSGSiIiIiIaNIZKIiIiIho0hkoiIiIiGjSGSiIiIiIaNIZKIiIiIho0hsph5oMPPsDKlSsxc+ZMJCcn48qVK9YuiYiIiOwAQ+UwcuLECTz//PP4//6//w979+7FLbfcgl/84hcoLy+3dmlEREQ0xDFUDiN79+7FqlWrsHr1akRFReFXv/oVAgMDceDAAWuXRkREREMcQ+UwodFokJGRgRkzZhhsnzFjBr777jsrVUVERET2gqFymKivr4ckSfDx8THY7uPjg+rqaitVRURERPaCoXKYUSgUBn8WQnTZRkRERNRfDJXDxIgRI6BSqVBTU2Owva6uDr6+vlaqioiIiOwFQ+Uw4eDggISEBFy4cMFg+4ULFzB+/HgrVUVERET2gqHSzh04cAArVqzAgQMHsG3bNnz44Yc4fPgw8vPz8fzzz6O8vBzr1q2zdplEREQ0xKmtXQCZ1+7du1FeXo7du3fj6NGjaGhowD//+U9UV1cjJiYGf/3rXxEcHGztMomIiGiIY6i0c9u3b8fu3buxfft2AMCGDRuwYcMG6xZFREREdoeh0s6tX78e69evt3YZREREZOf4TCURERERDRpDJRERERENGkMlEREREQ0aQyURERERDRpDJRERERENGkMlEREREQ0aQyURERERDRpDJRERERENGkMlEREREQ0aQyURERERDRpDJRERERENGkMlEREREQ0aQyURERERDRpDJRERERENGkMlEREREQ0aQyURERERDRpDJRERERENGkMlEREREQ0aQyURERERDRpDJRERERENGkMlEREREQ0aQyURERERDRpDJRERERENGkMlEREREQ0aQyURERERDRpDJRERERENGkMlEREREQ0aQyURERERDRpDJRERERENGkMlERERDRmSJFm7BOpBv0LlU089halTp8LDwwMBAQFYvXo1MjMzDY5pbm7Gzp07ERoaChcXFyQmJuKVV17p9bxz586FQqHo8rN8+XL9MY899liX/UFBQQbnKS8vx7JlyxASEoIdO3ZAluUu19i/f7/Ba1588UVERkb2pxmIiIjIwiorK5GRkQGVSmXtUqgH/QqVZ8+exX333YfU1FScPHkSWq0WixcvRktLi/6YBx54AMePH8eePXuQnp6OBx54APfffz8OHz7c43kPHjyIsrIy/c+1a9egUqmwYcMGg+PGjBljcNzVq1cN9j/yyCOYOnUqPvnkExQUFODdd9812O/s7IxHHnkEGo2mP2+biIiIrEyr1WLdunVoamqydinUg36FyuPHj2P79u0YM2YMJkyYgDfffBOFhYW4dOmS/pjz58/j7rvvxty5cxEZGYl77rkHEyZMwDfffNPjeX18fBAUFKT/OXnyJFxdXbuESrVabXCcv7+/wf76+nqMGTMG48aNQ1RUFBoaGgz2b9myBQ0NDXj99df787aJiIjIypycnODs7Izi4mLeArdRg3qmUhfafHx89NuSkpJw5MgRlJSUQAiBlJQUZGVlYcmSJUaf94033sDmzZvh5uZmsD07OxshISGIiorC5s2bkZeXZ7B/165d+MUvfgEnJydcuXIFd911l8F+T09PPPzww3j88ccNeleJiIjItjk5OQEAbr31VoZKG6Ue6AuFEHjwwQeRlJSEsWPH6re/9NJL+PnPf47Q0FCo1WoolUr885//RFJSklHn/frrr3Ht2jW88cYbBtunT5+Ot99+G/Hx8aioqMATTzyBmTNn4vvvv4evry8AYMqUKSgpKUF1dXWX5y11duzYgb/+9a944YUX8Ic//KFf71mj0aCzs7Nfr7E03to3LbanabE9TYvtaVpsT9MydXsqFAq0tbUhJCQEqampiIyMhFI5vMYb99SmtvLZHfDfxs6dO/Hdd991eW7xpZdeQmpqKo4cOYJLly7h+eefx44dO3Dq1CmjzvvGG29g7NixmDZtmsH2ZcuWYd26dRg3bhwWLlyIY8eOAQDeeustg+N0t8h74uTkhMcffxx/+ctfUF1dbVRNREREZF0ODg4oLi4GAKxYsQKVlZXssbQxA+qpvP/++3HkyBGcO3cOoaGh+u1tbW14+OGHcejQIf3I7fHjxyMtLQ3PPfccFi5c2Ot5W1tbsX//fjz++ON91uDm5oZx48YhOzu73/UnJyfjueeewxNPPNGvkd8ODg5wdHTs9/WsYajUOVSwPU2L7WlabE/TYnualqnaUwiB77//HnFxcXBxcUFAQACcnZ1Ncu6h5sdtait3UfvVUymEwM6dO3Hw4EGcPn0aUVFRBvs1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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# look at locations of all data found\n", + "omsa.plot.map.plot_cat_on_map(catalog=catalog_name, project_name=project_name)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The image shows a map of part of the Texas coastline. Overlaid are black dots, each numbered, to indicate a location of a dataset." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-26 14:57:19,278] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:432} INFO - Note that we are using 9 datasets of 34 datasets. This might take awhile.\n", + "[2023-01-26 14:57:36,833] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/utils.py:187} INFO - Generated mask for model using 1 horizontal cross section of model output and searching for nans.\n", + "[2023-01-26 14:58:02,390] {/Users/kthyng/miniconda3/envs/omsa/lib/python3.10/site-packages/alphashape/alphashape.py:79} WARNING - Singular matrix. Likely caused by all points lying in an N-1 space.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 0%| | 0/1 [00:00.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-26 14:58:23,172] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:478} INFO - \n", + "source name: gov_usgs_waterdata_08188060 (0 of 9 for catalog .\n", + "[2023-01-26 14:58:23,188] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:490} WARNING - Dataset gov_usgs_waterdata_08188060 at lon -97.7371389, lat 28.84869444 not located within model domain. Skipping dataset.\n", + "\n", + "[2023-01-26 14:58:23,189] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:478} INFO - \n", + "source name: gov_usgs_waterdata_08188500 (1 of 9 for catalog .\n", + "[2023-01-26 14:58:23,200] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:490} WARNING - Dataset gov_usgs_waterdata_08188500 at lon -97.3848583, lat 28.6492861 not located within model domain. Skipping dataset.\n", + "\n", + "[2023-01-26 14:58:23,201] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:478} INFO - \n", + "source name: gov_usgs_waterdata_08211200 (2 of 9 for catalog .\n", + "[2023-01-26 14:58:23,210] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:490} WARNING - Dataset gov_usgs_waterdata_08211200 at lon -97.7758308, lat 27.93779594 not located within model domain. Skipping dataset.\n", + "\n", + "[2023-01-26 14:58:23,211] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:478} INFO - \n", + "source name: gov_usgs_waterdata_08211503 (3 of 9 for catalog .\n", + "[2023-01-26 14:58:23,220] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:490} WARNING - Dataset gov_usgs_waterdata_08211503 at lon -97.6255509, lat 27.8969652 not located within model domain. Skipping dataset.\n", + "\n", + "[2023-01-26 14:58:23,221] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:478} INFO - \n", + "source name: gov_usgs_waterdata_0821150305 (4 of 9 for catalog .\n", + "[2023-01-26 14:58:23,228] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:490} WARNING - Dataset gov_usgs_waterdata_0821150305 at lon -97.6161667, lat 27.89775 not located within model domain. Skipping dataset.\n", + "\n", + "[2023-01-26 14:58:23,229] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:478} INFO - \n", + "source name: nerrs_marcwwq (5 of 9 for catalog .\n", + "[2023-01-26 14:58:23,242] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:490} WARNING - Dataset nerrs_marcwwq at lon -97.2009, lat 28.0841 not located within model domain. Skipping dataset.\n", + "\n", + "[2023-01-26 14:58:23,243] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:478} INFO - \n", + "source name: nerrs_marmbwq (6 of 9 for catalog .\n", + "[2023-01-26 14:58:27,833] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:521} WARNING - Error {\n", + " code=404;\n", + " message=\"Not Found: HTTP status code=404 java.io.FileNotFoundException: https://erddap.sensors.axds.co/erddap/tabledap/nerrs_marmbwq.nccsv?&time%3C=1549324800.0&time%3E=1548979200.0\n", + "(Error {\n", + " code=404;\n", + " message=\\\"Not Found: Your query produced no matching results. (nRows = 0)\\\";\n", + "})\";\n", + "}\n", + "\n", + "[2023-01-26 14:58:27,834] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:523} WARNING - Data cannot be loaded for dataset nerrs_marmbwq. Skipping dataset.\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-26 14:58:27,839] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:478} INFO - \n", + "source name: noaa_nos_co_ops_8773037 (7 of 9 for catalog .\n", + "[2023-01-26 14:58:32,067] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:546} WARNING - Dataset noaa_nos_co_ops_8773037 had a timezone UTC which is being removed. Make sure the timezone matches the model output.\n", + "[2023-01-26 15:00:35,786] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:659} INFO - Plotted time series for noaa_nos_co_ops_8773037\n", + ".\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-26 15:00:35,790] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:478} INFO - \n", + "source name: noaa_nos_co_ops_8773259 (8 of 9 for catalog .\n", + "[2023-01-26 15:00:35,920] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:490} WARNING - Dataset noaa_nos_co_ops_8773259 at lon -96.609802, lat 28.6406 not located within model domain. Skipping dataset.\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9it [02:12, 14.75s/it]\n", + "100%|██████████| 1/1 [02:12<00:00, 132.88s/it]\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-26 15:00:53,946] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:674} INFO - Finished analysis. Find plots, stats summaries, and log in /Users/kthyng/Library/Caches/ocean-model-skill-assessor/gom_hycom.\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABNkAAAHICAYAAABzmjx+AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8o6BhiAAAACXBIWXMAAA9hAAAPYQGoP6dpAADQHUlEQVR4nOzddXhTZxsG8DtVKlSoUVposVGgeIu7DBhStDCc4e46ho+hQ4YMl+FQ3GWwQXEb7q5Fq1Tzfn/ky2lD0zZNk6Zy/64rV3veI3mSkxx58opMCCFAREREREREREREWjMydABERERERERERESZHZNsREREREREREREacQkGxERERERERERURoxyUZERERERERERJRGTLIRERERERERERGlEZNsREREREREREREacQkGxERERERERERURoxyUZERERERERERJRGTLIRERERERERERGlEZNsRERkEGvWrIFMJkOXLl1Std7Tp08hk8ng6empl7iIspMuXbpAJpNhzZo1hg6FiIhIr5K7hpTJZJDJZOkfFGU5TLJp4MCBA6hbty5y5coFKysrlC1bFn/88QfkcrmhQyPK1kJDQzF58mSUKVMG1tbWMDMzQ758+dC+fXtcuXJF7Tqenp7SSTS5x6RJk1TWq1mzpkbrde3aVWW9t2/fYsqUKWjcuDEKFiwIGxsbmJubI3/+/OjUqROuXbuW7GuMjIzE5MmTUaxYMVhYWMDJyQl+fn44d+6c2uWFEJg/fz7atWuHYsWKwcHBAaampnBxcUGjRo2wa9cuteudPHlSo9cnk8nw7NmzZGOmtNPXeWfr1q1o0KABXFxcYG5uDjc3NzRo0ACrVq3SUeTZy8WLF/H777+jbdu2yJ8/v/QdOX36dJq3vX79elSuXBm2trawsbFB5cqVsWHDBh1EnTW9evUKPXv2RN68eWFubo58+fKhV69eePXqldbb3LFjh/Q9tLCwwHfffYfRo0cjODhYh5GTLved8gY6ucfo0aP18CqyF13uM2WiP6VHrVq19PBKSJ07d+6gffv2cHV1RY4cOVCwYEEMHz4cX758SfW2tL1+zqy+fPmCiRMnYt68een2nCtWrJDex+7du6d6fW3vjShpJoYOIKObPn06xowZAwAoUKAArK2t8d9//2HgwIE4duwYdu7cCSMj5iqJ0ltQUBCqVauG+/fvw8jICPnz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PffcozFjxuiDDz445vXjxo3TyJEjizhKAMi9IUOGKC0tTZL00EMPqU6dOkGOCCiFUlPdAtpzz2Wdc02SatZ051zr39+dgw0AAADIBcdyOa4zJCSz05vjOCccDlq7dm19/PHHuqCAf/n1rS46depU9ezZM9fXHTp0SJGRkapevbq2bdt2zPNSU1OVmprq309OTlbdunW1d+9eRUVFFSR0AMizhQsXqk2bNpKkmJgYrVu3LiC9goGTxp490quvusM/d+zI+trZZ7tzsd1xB4saAAAAwC85OVnR0dEnrBXluifbvHnzJLlzrV1++eXq2bOnevTocdR5oaGhqlKliho1apSlMBdoZcuWVcWKFXXgwIHjnhceHs4CCQCKBTPTgw8+6N8fNWoUBTagsGzeLE2cKL3+urR/f9bXLrlEevhh6dprpSD+7AIAAICSLddFtnbt2vk/HzFihC677DJdcsklRRJUYVi3bp327NmjZs2aBTsUAMiVDz74QEuXLpUkNW7cWHfeeWeQIwJKgZ07paeecnuvHRmGLcktpnXq5PZcC8D0FgAAACj98rW66IgRIwo7jnzZt2+fNm7cqKZNm2Y5vmfPHt11112SpNtuuy0YoQFAnqSmpuqxxx7z7z/77LMKC8tjE20mrVkjzZ0rbdsmpadLhw9nbtn3fcfCwqRKlaTKlY//sVIlqWzZQntmoEjt3Ss9+6zbe83bc618ealXL2nwYKlhw+DFBwAAgFInX0W2ojZlyhQtWLBAkrRixQr/Md9iC3FxcYqLi9Nff/2lZs2aqUWLFoqNjVWNGjW0detWffHFF/rrr7905ZVXatCgQcF6DADItfj4eG3cuFGS1L59e3Xo0CF3F6akSPPmSZ9/7m5H7lFkIiOlKlVOvFWtmvmxalXmt0LgpKRIL78sPf20tHt35vGICGngQGnQIKlataCFBwAAgNKrWBbZFixYoLfeeivLsYULF2rhwoWSpAYNGiguLk5VqlRRv379tGTJEs2ePVtJSUmKjIxUbGysunbtqt69eys0NDQYjwAAufbXX39p9OjRktyFZZ555hk5jnPsCzZuzCyqffONdPBggCKV2yNo/35py5a8XVehgltsq1Yt60fv51WquL3mfIW66Gjmx0LuHT4sTZ0qjRwpbd2aebxMGenee6UnnpBiYoIXHwAAAEq9XK8uerLI7YoRAFBY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QFBQZAOA3Fq/3i2w7djh7p9/vsZdeqk2Hhkyetttt+n8888PYoAAAAAAgGAJC3YAAFAi/P67dNll0rZt7n7z5toxbZrGtmghSSpTpoyeeuqpIAYIAAAAAAgmerIBwIls2uQW2BIS3P3YWOnLLzVi0iSlpKRIkvr27atTTz01iEECAAAAAILJMTMLdhDFSXJysqKjo7V3715FRUUFOxwAwbZ1q9S2rbRxo7vfuLE0b55W796tc845R+np6apYsaJ+//13VatWLbixAgAAAAAKXW5rRQwXBYBj2bVLuuqqzALbWWdJX38t1aihIX36KD09XZL06KOPUmADAAAAgJMcw0UBICfJydI110irVrn7p50mffONVLOmFi5cqE8++USSVKtWLQ0cODBoYQIAAAAAigeKbACQXUqKdOON0g8/uPu1aklffSXVri0z0yOPPOI/deTIkYqMjAxSoAAAAACA4oIiGwB4paVJXbpI337r7lepIn35pXRkUYNZs2Zp0aJFkqRGjRqpV69eQQoUAAAAAFCcUGQDAJ+MDOnOO6XZs939ChWkL76QmjSRJB0+fFiPPfaY//Snn35aYWFMbQkAAAAAoMgGAC4z6YEHpOnT3f3wcGnWLOnCC/2nTJ06VatXr5YktW7dWh07dgxGpAAAAACAYogiGwBI0vDhUny8+3loqPTvf0uXXeZ/ef/+/RoxYoR/f8KECXIcJ9BRAgAAAACKKYpsAPD889KYMZn7b74pZeul9sILL2j79u2SpLi4OLVq1SqAAQIAAAAAijuKbABObv/6l/Tgg5n7L70kde2a5ZTExESNHz9ekhQaGqpx48YFMkIAAAAAQAnAjN04aWzevFlbtmwJdhh50qBBA9WpUyfYYZReH34o3X135v6oUVL//ked9tRTT2nfvn2SpLvuukuNGjUKVIQAAAAAgBLCMTMLdhDFSXJysqKjo7V3715FRUUFOxwUgsTERD322GP617/+FexQ8sxxHPXt21djxoxRpUqVgh1O6TJ3rnTDDVJamrs/aJD03HNStnnWfv75Z1144YVKS0tTRESE1q9fr1q1agUhYAAAAABAMOS2VsRwUZRa6enpeuWVV3TmmWeWyAKbJJmZ4uPj1ahRI7377ruiJl5IPvtM6tQps8B25505Fth27NihG264QWlHzhs8eDAFNgAAAABAjujJlg092UqH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PiA72gh40UbAi/YBXrQP8KJ9yB96spUAw4cP14QJE3TdddepdevWOnz4sN5++22tXLlSN910k9577z2VLVs22GEiAFatWqXBgwfrm2++Ubt27VS/fn0dOHBAM2bMUPXq1fX666+rY8eOwQ4TAUT7AB/aB+SENgI+tBHIjvYBPrQPyI72oQAMxdqWLVssJibG2rZta7///rv/+O7du61Dhw7mOI4NHjzYzMwyMjKCFSYCYP369dahQwerVauWTZgwwTZt2uR/7bnnnrMKFSpYz549zYxcOFnQPsCH9gE5oY2AD20EsqN9gA/tA7KjfSgYimzF3JdffmmO49j06dPNzOzw4cN26NAhMzPbuHGjNWrUyBzHsW+//TaYYaKIZWRkWHx8vDmOYy+++KL/eHp6upmZrVu3zk455RSrVauWpaSkBCtMBBjtA8xoH3BstBEwo41AzmgfYEb7gJzRPhQMc7IVc+vWrZMkbdu2TZIUEhKiMmXKKCMjQw0aNNDDDz8sSRo2bFjQYkTRcxxHp556ql599VXdf//9ktxVXUJCQmRmOv3001W9enVVr15dBw4cYMWXkwTtAyTaBxwbbQQk2gjkjPYBEu0Dckb7UDAU2YqBzZs3a8eOHUpOTvYfO3TokCTpwgsvlCStWbNGycnJchxHkvwf77jjDl1//fVasGCB/vOf/0hiAsKSLj09Pcu+782sXbt26tq1q/+4Nxd2796tnTt3qly5cqpSpYr/NZR8tA/won1AdrQR8KKNgBftA7xoH+BF+1B0KLIFUWJiorp166aWLVuqSZMmatmypUaOHCkz808iWLVqVZ177rlavHixtmzZ4r/WcRxlZGQoPDxcvXv3liS98sorktxKM0qeXbt2KS4uTiNHjsxy3NeYRUREKCIiIsdrt2zZouTkZLVp00bS0W+iKHloH+BF+4DsaCPgRRsBL9oHeNE+wIv2oejxLxEkixcvVsuWLTVv3jxdddVV6tatm8xMI0eOVPfu3bVy5UpJUo0aNXTZZZfpt99+02effeavLkuZidyxY0c1adJE69at04YNG4LyPCiYjz/+WOeff75mzZqlSZMmae3atbm6zvdGt2zZMu3fv9//BoiSjfYBXrQPyI42Al60EfCifYAX7QO8aB8CJFCTvyGrPn36WJkyZezdd9+1/fv3m5nZ2rVrrXfv3uY4jnXt2tW2bdtmZmZfffWVnXbaadagQQP73//+l+U+vgkIe/ToYVFRUZaQkBDYB0GBpKWl2dSpU61OnToWERFhV111lTmOY927d8/TfXr16mXly5fPshqQmdm+fftY8aUEon2AGe0Djo02Ama0EcgZ7QPMaB+QM9qHwKDIFgQbNmyw2rVrW/v27f3HfCu4JCQk2E033WSO49ioUaP8rw8bNsxCQkLs9ttvt7Vr15pZZnKbmXXo0MEqV65sa9asCdBToLDcfvvtVqZMGVuyZIkdOHDAWrVqZY7j2FdffZWr6/fs2WNnn322XXjhhf5jycnJ9sknn9jjjz/Oqi8lDO0DvGgfkB1tBLxoI+BF+wAv2gd40T4EDkW2INi8ebOFhITYzTffbAcOHDjqrwCrVq2yihUrWv369e377783M7PffvvNbrvtNnMcx3r06GF//vmnmbl/pZg9e7ZFRUVZjx49Av0oKATr1q2zpUuX+venTJliISEh1qZNGzt48OAxr/PlzYIFC6xs2bI2YcIEMzObP3++DRw40CIjIy06Otrmz59ftA+AQkX7AC/aB2RHGwEv2gh40T7Ai/YBXrQPgUORLQgSEhKsUaNG1qZNGzOzHLvajh492hzHsUGDBvmPrV271q655hpzHMcuvvhie+KJJ+z++++3hg0bWq1atezLL7885v1QcqSkpFinTp3McRx7/fXXj3me7y8Pzz33nDmOYxMnTrRnnnnGGjZsaI7j2H333WcHDhwIVNgoJLQPOB7aB9BG4HhoI05utA84HtqHkxvtQ+BQZAuC/fv3+8fFL1iwwMzMDh8+nOWcbdu2Wf369e28886z1atX+4/v2rXLBg8ebJUrV7bw8HCrVKmSXX311XTRLCV8b2pz5861KlWqWIMGDWznzp3HveaWW24xx3GsZcuW5jiOXXrppbZq1apAhIsiQPuAY6F9gBltBI6NNgK0DzgW2gfQPgQORbYA8zVwkydPNsdx7JprrsnxvIMHD9oDDzxgERER/okG09LS/K9v377d1q9fbytWrCj6oBEU/fv3N8dx7LHHHjMz968Dvvzx2blzp1188cXmOI6deeaZNnPmzGCEihPI7V92aB9ODoXxlz7ah9KFNgJetBHID9oH5BbtQ+l0vPcO2ofAoshWiLI3TjnxJv/pp59ujuP4Gy1vAptldtGdOnVqocaJwMhNPhzvuhUrVtiZZ55p5cqVs59++inL674JJw8ePGjjxo2zV155pcDxomhkf8M73hsg7UPpl5d8yAntQ+mTnp6e5f2CNuLklpd8ONb1ZrQRpcXBgwdtypQp9sMPP5zwXNqH0i8v+ZAT2ofSJSUlxe677z57/vnnT3gu7UNghQgF8s477+jFF1+UJIWEnPif03EcHT58WJL0zDPPSJIeeugh/f333woLC5OZKS0tTZJUv359SVKNGjWKInQUgbzmQ058151zzjnq1auXUlNTNWHCBEnSsmXL9Mgjj2jOnDlKS0tTeHi4HnnkEd13332F8wAoVO+995769Omje++9V48++qjWrl0rx3EkSWZ21Pm0D6VbXvMhJ7QPpcs777yjLl26KC4uTq1bt9Znn32mffv2SZIyMjKOOp82onTLaz7khDai9Fi7dq3Kly+vu+++W59++qkOHDgg6djvF7QPpVte8yEntA+lR3x8vGJiYjR9+nTt27fP/3/7WGgfAixo5b0SbuXKlda2bVtzHMeaN29uy5YtM7O8917q2rWrOY5jXbt2tc2bN/uPb9261a655hqLjo62devWFWrsKHyFlQ8+vr8oJCUl2eWXX26O41jv3r2tWbNm5jiO9e/fP8vyyShelixZYs2bN7ewsDCLjIy0cuXKmeM41qRJE/viiy9yfR/ah9KhsPLBh/ah5Fu4cKE1b97cypcvb/Xq1bOzzz7bypQpY9WrV7f4+Phc34c2onQorHzwoY0oHT777DNzHMcqV65sZ599tn3zzTd5up72oXQpaD740D6UbF9//bU1atTIHMexTp062X/+8x/bu3dvnu9D+1C0KLLlUUZGhs2bN88/AWTjxo0tNDTUHnzwQX9BJTdd+32TDG7evNk6duzoL85MmzbNpkyZYr169bKyZcvaI488wkodxVhh5cPx+OZNcBzH6tSpY++9915hhI4ikJ6ebu+//741bNjQzj33XIuPj7fly5fb7t27bcCAARYZGWk33HCDJSQkHPc+tA+lQ2Hlw/HQPpQsBw8etPj4eDvllFOsefPm9vLLL9vatWvNzGzmzJlWqVIlu+6662zXrl3HvQ9tROlQWPlwPLQRJY/v/+ybb75pERERNmHCBAsLC7M+ffrYn3/+meWcnNA+lC4FzYfjoX0oOZKSkqx79+7+FT4nT55smzZtynIONYjigyJbHu3evdu6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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "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B6fsK2XzF+n83kX973//Q1EUAgICsLW15dVXX2XRokVoNBpLp7c5c+Zw1113ceGFF/Lggw8yc+ZMXn/99WbHsbW1xcvL65TjT5w4kT179mAwGNi1axcTJkwAYPz48ezatQuAXbt2MWnSpA69zu7obGXTaOLEiRw+fJi9e/cybdo0FixYQH5+frPjSNm0v5aUjUqlaraPoiinLJOyaX+ffPIJH374IatXr+bQoUO8//77/Pvf/+b9998/7fbvvPMOixcvRq/Xn7JOyqd9natsDh48yCuvvMJ77713ynvlZFI27au175uzkbLpWG+//TbTp09v1gn91VdfZf/+/WzcuJGDBw/ywgsvcOutt7J9+/Zm+0rZNGHdvEicS0VFhZKdna0oSn3H3hkzZii1tbWKVqtVVqxY0Wzb+++/Xxk9enSLjpucnKwAyp49e5ShQ4cqn3zyiaIoipKdna3odDqlsLBQ0ev1ynvvvde+F9SDnK5szqRPnz5nfTrclJTN+Ttd2bS0KdfZSNm0XWBgoPLaa681W7ZixQolKirqlG2/++47BVAOHz7cqnNI+bTNucrmpZdeUlQqlaLRaCz/AEWtVishISEtOoeUTdu05n1zrhqTM5GyOX/Hjh1T1Gp1s07tVVVVik6nO6Xf4w033KBMnTq1RcftjWUjNSZdnIODA35+fhQXF/PNN98wZ84cbGxsGDZsGImJic22PXr0KCEhIS06bkREBEFBQWzcuJHDhw8zfvx4APz8/AgNDeWFF16gpqaGiRMntvs19RSnK5szURSF2traFh1Xyub8na5swsLC8PX1Zdu2bZbt6urq2L17N6NHj27RcaVs2q6qqgq1uvlXTtMa4KbefvtthgwZwsCBA1t1DimftjlX2Vx11VX89ttvHD582PLP39+f++67j2+++aZF55CyaZvWvG/aSsrm/L377rt4e3tzySWXWJYZDAYMBsN5lV+vLBtrZ0bi9L7++mvlq6++UlJTU5WtW7cqAwcOVIYPH67U1dUpiqIo69atU3Q6nfJ///d/SlJSkvKf//xH0Wg0zTpUncvVV1+tODk5KdHR0c2W33jjjYqTk5MSHh7ertfUU5ytbCoqKpSHHnpI2bdvn3Ls2DHl4MGDyg033KDY2toqv//+e4vPIWXTNud63zz33HOKi4uLsm7dOuXIkSPKlVdeecpwweciZdM2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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "omsa.run(project_name=project_name, catalogs=catalog_name, model_name=model_name,\n", + " vocabs=[\"general\",\"standard_names\"], key_variable=key, ndatasets=9)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "A time series is shown comparing the temperatures in dataset \"noaa_nos_co_ops_8773037\" with nearby model output. The lines are reasonably similar.\n", + "\n", + "Subsequently is shown a map of the Gulf of Mexico with a red outline of the approximate numerical domain and a single black dot with a number \"0\" showing the location of the dataset that was plotted." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.10.8 ('omsa')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.8" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "393aad9b5b2237e40fb0b42a69b694739ba0baf65a287986ba8256fa5298c468" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/examples/index.rst b/docs/examples/index.rst new file mode 100644 index 0000000..885fd36 --- /dev/null +++ b/docs/examples/index.rst @@ -0,0 +1,15 @@ +.. gcm-filters documentation master file, created by + sphinx-quickstart on Tue Jan 12 09:24:23 2021. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Examples +======== + +.. toctree:: + :maxdepth: 3 + :caption: Models + + ciofs.ipynb + tbofs.ipynb + gom_hycom.ipynb diff --git a/docs/examples/tbofs.ipynb b/docs/examples/tbofs.ipynb new file mode 100644 index 0000000..0e1750e --- /dev/null +++ b/docs/examples/tbofs.ipynb @@ -0,0 +1,271 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# TBOFS\n", + "\n", + "Sea water temperature comparison between the Tampa Bay NOAA OFS model and IOOS ERDDAP Datasets." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import ocean_model_skill_assessor as omsa\n", + "from pandas import Timestamp, Timedelta" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "project_name = \"tbofs\"\n", + "key = \"temp\"\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# Model set up\n", + "loc = \"https://opendap.co-ops.nos.noaa.gov/thredds/dodsC/TBOFS/fmrc/Aggregated_7_day_TBOFS_Fields_Forecast_best.ncd\"\n", + "model_name = \"model\"\n", + "kwargs_open = dict(drop_variables=\"ocean_time\")\n", + "# can't use chunks or model output won't be read in \n", + "\n", + "# Data catalog set up\n", + "catalog_name = \"erddap\"\n", + "kwargs = dict(server=\"https://erddap.sensors.ioos.us/erddap\", category_search=[\"standard_name\", key])\n", + "today = Timestamp.today().date()\n", + "kwargs_search = dict(max_lat=28, max_lon=-82, min_lat=27.1, min_lon=-83.2,\n", + " min_time=str(today - Timedelta(\"4 days\")), max_time=str(today + Timedelta(\"1 day\"))\n", + ")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-27 10:34:12,410] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:379} INFO - Catalog saved to /Users/kthyng/Library/Caches/ocean-model-skill-assessor/tbofs/model.yaml with 1 entries.\n" + ] + } + ], + "source": [ + "# Make model catalog\n", + "cat_model = omsa.make_catalog(project_name=project_name, \n", + " catalog_type=\"local\", \n", + " catalog_name=model_name, \n", + " kwargs=dict(filenames=loc, skip_entry_metadata=True),\n", + " kwargs_open=kwargs_open,\n", + " save_cat=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-27 10:34:16,725] {/Users/kthyng/projects/intake-erddap/intake_erddap/erddap_cat.py:246} WARNING - search https://erddap.sensors.ioos.us/erddap/search/advanced.csv?page=1&itemsPerPage=100000&protocol=tabledap&cdm_data_type=(ANY)&institution=(ANY)&ioos_category=(ANY)&keywords=(ANY)&long_name=(ANY)&standard_name=sea_surface_temperature&variableName=(ANY)&minLon=-83.2&maxLon=-82&minLat=27.1&maxLat=28&minTime=1674432000.0&maxTime=1674864000.0 returned HTTP 404\n", + "[2023-01-27 10:34:17,991] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:379} INFO - Catalog saved to /Users/kthyng/Library/Caches/ocean-model-skill-assessor/tbofs/erddap.yaml with 15 entries.\n" + ] + } + ], + "source": [ + "# make data catalog\n", + "cat_data = omsa.make_catalog(project_name=project_name, \n", + " catalog_type=\"erddap\", \n", + " catalog_name=catalog_name, \n", + " kwargs=kwargs,\n", + " save_cat=True,\n", + " kwargs_search=kwargs_search,\n", + " vocab=\"standard_names\")" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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CcGcOXOQnZ2N+Ph4i+57yJAhkGXZovskItvHMEVETkej0eDee+/FTTfdZNH9Dh8+nK1TRE5IrXQBRESOJCEhocs5AonIsbBliojIgkaNGsVxp4icDMMUEZGF9e/fn32niJwIwxQRkYWNHTsWOTk5bJ0ichIMU0REVhAUFMTWKSInwTBFRGQF48ePR25urmHEdSJyXAxTRERWIEkS+vTpw1HRiZwA3+VERFYyadIkXL58ma1TRA7O4mFq1apVSEpKgre3N4KCgjB79mykp6cbbaNSqdr9e/XVVzvc786dOzFq1Cj06dMHnp6eGDFiBD766COjbWpra7FgwQKEhoZiwYIFqKurM6xbunQpVCoVVq9ebfSYTz/9lGPCEJFVSJKE2tpahikiB2fxMHX06FEsX74cp06dwsGDB6HVajFlyhSjYFNcXGz09/7770OlUhkmIm2Pv78/nn32WXzzzTc4f/48HnroITz00EPYv3+/YZu1a9fCy8sLBw4cgIeHB9auXWu0Dzc3N6xZswbXrl2z9NMmImoXL/MROT6Lj4C+b98+o3+vX78eQUFB+P777zFhwgQA1+fGutHu3bsxadIkxMTEdLjf5ORko38//vjj+OCDD3DixAlMnToVAFBZWYmEhAQMHToUAwcORHl5udFjJk+ejKysLKxatQp///vfu/sUiYhMxjBF5Pis/i6vqqoCcL1lqT2lpaXYu3cvHn74YZP3KYTAV199hfT0dENAA4AVK1bg3XffhUajwfr16/H4448bPU6WZbzyyit48803UVBQ0I1nQ0RkHrVazUBF5OCsOjefEAJPPPEExo0bhyFDhrS7zQcffABvb2/MnTu3y/1VVVUhPDwcTU1NkGUZ//rXv3DHHXcY1kdFRSEzMxNlZWUIDg5uty/UnDlzMGLECDz//PNYt26dWc+noaEBGo3GrMcopaGhQekSHArPp+U447nUarVW2W9LS4tV9uuseD4tx1HOpanPw6phasWKFTh//jxOnDjR4Tbvv/8+Fi9eDDc3ty735+3tjXPnzqG2thZfffUVnnjiCcTExBhdApQkqc1lxF9as2YNbr/9djz55JMmPxciolY1NTUQQsDHx6fLbe3lBxgRdZ/VwtRjjz2GPXv24NixY4iIiGh3m+PHjyM9PR1bt241aZ+SJCEuLg4AMGLECKSmpmLVqlVt+lN1ZcKE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Ki8v17fffquOjg6dPn066LjD4dD+/fs1MTERydMGgLhSXFxMOwXEUETv5vvuu++Cvm9sbNTq1auD7or93zD01Vdf6aGHHlJhYWHI85aXl6u8vFySZu66PeewK1bMG7YGBwe1detWFRcXq6CgQF6vN+h4TU2NvvnmG7333nuqra0NeR4AiHdlZWUaGhoyewzAEqLqgafDyq233jrn8WvXruns2bN65plnovkxM9ra2pSTk6OCggI9/vjjunLlStDxffv26fnnn1dKSop++eUX7dq1K+j4qlWr9Morr+jQoUNBbRoAJJp7772Xd/YBMbLo+0wFAgG98MILeuCBB3TffffNuebDDz9URkaGduzYsegBp1VUVOijjz7S3XffrWvXrunw4cO6//77denSJd12222S/v5LrLu7Wx6PJ2SDVVtbqzfffFPHjx/Xq6++GtEMfr9fK1eujPq5xILf7zd7hITCfhqHvTTOQnu5ceNGDQ4O8u6+MHEJiHESZS/DfR6Lbqbq6ur066+/zrou6d9OnjypJ598Ug6HY7E/Zsa2bdtUXV2t4uJibdmyRWfPnpX0d2D7t4VeCkxJSdGhQ4d07NgxeTyeqOcCgOWqqKhIly9fpp0Cltiimqm9e/fq66+/1oULF3THHXfMuebHH39Ua2urPvvss6gGDCUtLU3FxcVqa2uL+LFPPfWU6uvrdfjw4Yjeyed0OuV0OiP+eWaKt3mXO/bTOOylcebbywcffFB9fX1asYIPvAiX3W43e4SEEe97OT4+Hta6iJqpQCCguro6ffnll/rhhx9UUFAQcu0HH3yg0tJSbdiwIZIfEbaxsTG1tLQoOzs74scmJSXpyJEjamhoUEdHh/HDAcAyUVhYyGf2AUssojC1Z88effLJJ/r000+VkZGh3t5e9fb2znrd3ufz6fPPP9ezzz4753l27dqll19+eeb78fFxNTc3q7m5WePj4+ru7lZzc7Pa29tn1rz44os6f/68/vjjD/3000/auXOnfD6fnn766Uiewgy3262Kigq98847i3o8AMSLzZs3B913D4CxIgpTDQ0N8nq9qqqqUnZ29szXf1/KO3PmjAKBgGpqauY8T2dnp3p6ema+//PPP1VSUqKSkhL19PSovr5eJSUlQWGsq6tLNTU1uueee7Rjxw7Z7XZdvHhReXl5kTyFIEePHtXo6OiiHw8A8WDNmjVqb2+nnQKWiC0QCATMHmK58/l8yszMlNfr1apVq8weJyzTbSHXpRiD/TQOe2mcSPayu7tbnZ2dcX8Ny1Kavj6GPYpeouzl8PCwqqqqFvz9z+cNAIAF5Obm8s4+YIkQpgDAIrZs2aKbN2+aPQaQcAhTAGARWVlZunLlCoEKMBhhCgAsJDs7m3tOAQYjTAGAhZSVlXHdFGAwwhQAWEhmZqa6urrEG7kB4xCmAMBi/H4/7RRgIMIUAFhMTk4O100BBiJMAYDFlJWV8Y4+wED8aQIAFpORkaGuri7l5eXJZrPNOt7Y2Khz586po6NDKSkpWr9+vfbu3av8/PygdU1NTfr444/V0tIij8ej+vp6VVVVxeZJAMsIzRQAWNDY2FjIDz9uamrSY489psbGRr399tuanJxUXV3drA+19/v9Wrt2rV566aVYjAwsWzRTAGBBubm5Sk5OnvPYW2+9FfT9gQMHtHXrVrW0tGjTpk0z/15ZWanKysolnROIBzRTAGBBkVw3NTw8LElx80HvQKwRpgDAgtLS0tTZ2bng/aYCgYCOHz+ujRs36q677orRdEB84WU+ALCoiYkJTU1NhXy5T5Jef/11tbe36/3334/hZEB8IUwBgEWtWbNmwSB14cIFvfvuu7r99ttjOBkQX3iZDwAsqrS0VOPj47P+PRAI6OjRozp37pwaGhqUm5trwnRA/KCZAgCLcjqdunr1qgoLC2Wz2fTFF1/o1KlTys7OVltbm9544w2lpqbK4/FIktLT0+VwOGbWPfHEEyotLZ05X3d3t1pbW5WZmamsrCyznhYQc7YAn3a5IJ/Pp8zMTHm93rh5N8v0/WCcTqfJkyQG9tM47KVxjNjL06dPq6ioSMnJydq+fbt6e3tDrj1w4IAeeeSRmXW33HKLBgYGZq3bvn27Dh48uOiZzDLd0tntdpMniX+JspfDw8Oqqqpa8Pc/zRQAWFheXt7MdVO7d+/WqVOntHv3bu3cuTPkY8JdB1gFzVQYaKbAfhqHvTSOEXs5OjqqpqYmpaSkGDVW3EqUNmU5SJS9DLeZ4gJ0ALAwh8Ohq1evhvxoGQALI0wBgMUFAoEFb94JIDTCFABYXEFBwbz3mwIwP8IUAFjcpk2b5PP5zB4DiFuEKQCwuJUrV+qvv/7iuilgkQhTAAC5XC4NDw+bPQYQlwhTAABlZGTQTgGLRJgCAEiinQIWizAFAJD0dzvV19dHOwVEiDAFAJhBOwVEjjAFAJiRnp5OOwVEiDAFAAjicrk0NDRk9hhA3CBMAQCCpKeny+Px0E4BYSJMAQBmoZ0CwkeYAgDMQjsFhI8wBQCYk9vt1tDQkAKBgNmjAMsaYQoAMKe0tDR5PB7CFLAAwhQAICTaKWBhhCkAQEhpaWm6fv06YQqYB2EKADAvl8sln89HoAJCIEwBAOaVlpam/v5+whQQAmEKALAg2ikgNMIUAGBBtFNAaIQpAEBY3G437RQwB8IUACAsqamp6u/vN3sMYNkhTAEAwuZ2u+X1emmngH8hTAEAwpaamqqBgQGzxwCWFcIUACAiLpdLg4ODtFPA/xGmAAARSU1N1eDgoNljAMsGYQoAEDHaKeAfhCkAQMRop4B/EKYAAIvidrtppwARpgAAi+R0OmmnABGmAABRoJ0CCFMAgCg4nU55vV6zxwBMRZgCAETF5XJpYGCAdgqWRZgCAETF6XTK5/OZPQZgGsIUACBqtFOwMsIUACBqtFOwMsIUAMAQbrebdgqWRJgCABjC4XDQTsGSCFMAAMO43W719/fTTsFSCFMAAMM4HA4NDw+bPQYQU4QpAIChXC4X7RQshTAFADAU7RSshjAFADAc7RSshDAFADAc7RSshDAFAFgSLpdL169fp51CwiNMAQCWhMPh0MjIiGw2m9mjAEuKMAUAWDJut1sej0dTU1NmjwIsGcIUAGDJ2O12jYyMKCmJXzdIXPzXDQBYUtPtFNdOIVERpgAAS2q6neLaKSQqwhQAYMnRTiGREaYAAEvObrfL7/fTTiEhEaYAADHhcrnU19dHO4WEQ5gCAMSE3W7X6Ogo7ZQBuNXE8kKYAgDEDO2UMaZvNTE5OWnyJJCkFWYPEE98Pp/ZI4TN7/dLkiYmJkyeJDGwn8ZhL40Tr3vZ398vp9Np9hizTO/j+Pi4yZMsbHJyUpcvX5YkFRUVSZKSk5PNHClIPO3lfG7cuBHWOsJUGFJSUiRJd955p8mTAACAWMrKypLdbp93jS1A1xqWsbExjY2NmT0GAACIIbvdLofDMe8awhQAAEAUuAAdAAAgCoQpAACAKBCmAAAAokCYAgAAiAJhCgAAIAqEKQAAgCgQpgAAAKLwPzQprJ42ahp+AAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Plot discovered data locations\n", + "omsa.plot.map.plot_cat_on_map(catalog=catalog_name, project_name=project_name)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Image shows a map around Tampa Bay with data locations indicated in black with dots and numeric labels." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-27 10:38:16,659] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:448} INFO - Note that we are using 2 datasets of 15 datasets. This might take awhile.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 0%| | 0/1 [00:00.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-27 10:38:35,600] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:498} INFO - \n", + "source name: edu_usf_marine_comps_c10 (1 of 2 for catalog .\n", + "[2023-01-27 10:38:36,138] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:565} WARNING - Dataset edu_usf_marine_comps_c10 had a timezone UTC which is being removed. Make sure the timezone matches the model output.\n", + "[2023-01-27 10:38:38,782] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:686} INFO - Plotted time series for edu_usf_marine_comps_c10\n", + ".\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-27 10:38:38,785] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:498} INFO - \n", + "source name: gov_usgs_waterdata_02299734 (2 of 2 for catalog .\n", + "[2023-01-27 10:38:38,797] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:510} WARNING - Dataset gov_usgs_waterdata_02299734 at lon -82.4474111, lat 27.11271944 not located within model domain. Skipping dataset.\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2it [00:03, 1.60s/it]\n", + "100%|██████████| 1/1 [00:03<00:00, 3.20s/it]\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2023-01-27 10:38:49,236] {/Users/kthyng/projects/ocean-model-skill-assessor/ocean_model_skill_assessor/main.py:699} INFO - Finished analysis. Find plots, stats summaries, and log in /Users/kthyng/Library/Caches/ocean-model-skill-assessor/tbofs.\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABOwAAAH1CAYAAABFpGFxAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8o6BhiAAAACXBIWXMAAA9hAAAPYQGoP6dpAADwiklEQVR4nOzddVxU2f8/8NfQHYKEpF2IqNgimNiydreuHevquibGWru6urp+7G5d1+7G7kQXAxBRTAREyTm/P/zN/ToyIODADPh6Ph7zEM+t98259z3nniMTQggQERERERERERGRVtDRdABERERERERERET0f5iwIyIiIiIiIiIi0iJM2BEREREREREREWkRJuyIiIiIiIiIiIi0CBN2REREREREREREWoQJOyIiIiIiIiIiIi3ChB0REREREREREZEWYcKOiIiIiIiIiIhIizBhR0REREREREREpEWYsKMsCQwMhEwmQ2BgoKZDyVFhYWHo0KED7OzsoKOjA5lMhtWrV2s6rBy3evVqyGQy9OjRQ9OhEKndyZMnIZPJ4Ofnl+VpZTIZZDKZ+oMi+s58L/cRREREmeHu7g6ZTIawsDClcj8/P8hkMpw8eVIjcZF2YMIul+3fvx/169dHgQIFYGpqiooVK2LBggWQy+WaDo3+v8TERNStWxdbtmwBAFStWhU1a9aEvb29hiMj0k7BwcFYuHAhunXrhlKlSklJ7vXr12dqel4XNScqKgpr167F4MGDUaVKFRgaGkImk6FPnz7ZnmdISAhmzJiBhg0bwsHBAfr6+ihQoADq1KmDVatWcb+qwfr161GjRg1YWlrCwsICNWrUwIYNG7I1rx49ekgJ6fQ+CQkJal6DvO/du3f4+eefUbRoURgZGcHR0RGdO3fGvXv31DL/hIQEFC9eXNoHT58+Vct8v2dyuRz79+9HYGAgmjRpgoIFC0Imk0FPT08t83/27BlGjhyJUqVKwdTUFJaWlvDw8MDAgQMRHh6ulmVQ+tS9/W/cuIGuXbvCzc0NBgYGMDU1hZeXFyZNmoTY2NgcWAP6Uk6cs3FxcVi/fj26dOmCEiVKwNjYGCYmJihbtixGjRqF58+fq3ENtMO8efMQGBiId+/e5dgyIiMj0a9fP7i4uMDQ0BCurq748ccfERkZmeV5hYWFffW+ZMyYMTmwFtpJPd9QlCkzZ87Er7/+CgAoUqQIzMzMcPPmTQwdOhRHjx7Fv//+Cx0d5lA17dChQwgNDYW3tzfOnDkDQ0NDTYeUaywtLVGyZEk4OjpqOhTKQ8aOHYtdu3Zla9q8cl0sWbKkpkPIEZs3b8aIESPUNr/U1FSlbeXs7AwvLy88efIEJ0+exMmTJ7F582bs2rULRkZGalvu96R///5YsmQJAKBUqVKQyWQ4f/689Fm4cGG25lu8eHHY2dmpHKbOc9DW1hYlS5aEra2t2uaZ26KiolC9enWEhYVJD3oRERHYuHEj/v33Xxw8eBC1a9f+pmVMmzYNDx8+VFPEBACxsbFo2rRpjsz70KFDaNeuHWJjY2FmZoaSJUsiKSkJT548wf/+9z80adIEbm5uObJsUv/23759Ozp27IiUlBSYmZmhTJkyeP/+PW7fvo2bN29iw4YNCAoK4v1yDsuJc3bgwIHSD8rm5uYoVaoU4uPj8d9//yE4OBirVq3CgQMHULlyZbUuNztcXV1RsmRJmJiYfNN85s2bh/DwcPTo0QNWVlbqCe4zwcHB8PHxwdu3b6VE+aNHj7B06VL8888/OHPmDEqVKpXl+RoaGsLb21vlMHd392+MOg8RlCvOnTsnZDKZ0NHRERs3bpTKb9y4Iezt7QUA8fvvv2swwsyZNGmSACAmTZqk6VByzKxZswQAMXr0aE2HQpQnDBw4ULRu3VrMnDlTHD9+XFSrVk0AEOvWrctwuty+Lp44cUIAEL6+vmqbZ163YsUK0aBBAzFu3Dixa9cuMWTIEAFA9O7dO1vzS05OFlZWVmL8+PHi0aNHSsO2bNkijI2NBQAxcuRIdYT/3dm0aZMAIExNTcWxY8ek8qNHjwpTU1MBQGzbti1L8+zevbsAIFatWqXmaPMvf39/AUDUqlVLvH79WgghRFJSknT+2Nvbi/fv32d7/sHBwcLAwEC0aNFCABAAREREhLrC/27FxMSIChUqiB9//FGsWLFC7Nu3TwAQurq63zTfGzduCCMjI2FgYCD+/vtvkZiYKA1LTU0V586dE6Ghod8YPaVH3ds/Li5OWFlZCQBiwIABIj4+Xhp29+5dUbx4cQFAdO/eXY1rQarkxDnbpUsXERAQII4ePSqSk5Ol8ocPH4oqVaoIAMLFxUV8+PBBHauQKW5ubgJAjl0ncnL+KSkpokyZMgKAaN26tXS+vH//XrRq1UoAEJ6eniI1NTXT8wwNDRUAhJubm9rjzYuYsMslTZo0EQBEv3790gzbsGGDACBsbGxEUlKSBqLLvO8hYRcYGJjv15EoJ/n6+mYqYZfb10Um7L5OcY3PbsJOLpeLt2/fpjt85syZAoCwtrbO0s0bfVK2bFkBQEyfPj3NsN9++026Mc4KJuyy5vLlywKA0NPTE+Hh4UrDUlJSROnSpQUAMXfu3GzNXy6XCx8fH2FsbCw9tDBhlzMU2/dbE3ZVq1blOaRB6t7+Bw8eFACEnZ2dUkJHYefOndJwyl3qOGffvHmT7rAnT54IAwMDAUDs2LEj28vIqrycsNu6dat0vx4bG6s0LDY2VtjY2GR5ezJhp0zz7xl9B2JjY3H06FEAQO/evdMMb9u2LSwsLPDmzRucOHFCrct++/Ytxo0bBw8PD5iamsLc3BzVqlXDsmXL0m1HKCUlBbNnz0apUqVgZGQEJycn9O3bFy9evEh3OYo2cNLrmEEdjUxndxlCCKxduxa1a9eGlZUVDAwM4ODggEqVKmH06NFSuzCKDhcU00+ePFl6Tz671W4/b6j+33//RY0aNWBmZgZ7e3t0794dUVFR0rirVq1CpUqVYGpqCjs7O/Tv3x8xMTFp5pmamopdu3ahV69eKFu2LCwtLWFiYoLSpUtj9OjReP36tcpYPm+49MaNG2jTpg3s7e2ho6MjbdP0Op34vLF+uVyO+fPnw8PDA0ZGRrC3t0fv3r3x6tWrdLdDdo7DrLp8+TK6dOkCV1dXGBoawt7eHjVq1MDs2bNVbsdz586hVatWsLe3h4GBAZydndGtW7d02x/6fPvdunULLVu2hK2tLSwsLFC/fn1cuXJFGjcoKAiNGjVCgQIFYG5ujqZNm+L+/ftp5qloo8Hd3R1CCCxYsADlypWDiYkJ7Ozs0LVrVzx58kRlPOHh4fjxxx9RpEgRGBoawtzcHEWKFMEPP/yAzZs3Z3Mr/p/IyEj89NNPKFOmjNQWTLly5fDzzz/jwYMH3zx/TV4XASA5ORmTJ09GiRIlpOvcoEGD8PbtW5Xjp9fpxOPHjzFr1iz4+flJ7XYULFgQjRo1wr59+9Jd/pkzZ/DDDz8otfFWunRp9OnTBxcuXFDbeuY2mUwGa2vrdIc3bNgQABAdHZ3hNSM7snrMPnnyBAMGDEDhwoVhaGgIW1tbNG7cGAcOHFA5/8+/Y169eoXBgwfD3d0d+vr60jXz8++p0NBQ9OjRA05OTtDT0/vmThb+++8/3L17FwDQq1evNMMVZbdu3UJISMg3LSsnfe1+IKvX5qioKCxYsAD+/v5wd3eHkZERrK2t4evri3Xr1qk9/n/++QcA0KBBA7i6uioN09XVRffu3QEA27Zty9b8V6xYgaCgIIwfPz5HX/nJifsTANizZw/8/f1ha2sLfX19FCxYEJ6enhgyZEi6+/DQoUNo0aIF7O3tYWhoCGdnZ/Ts2ROPHj1S/4qr2YULF3Dx4kUUL15c2vc5TRv2XXx8PKZMmQJPT0+YmprCyMgILi4u8PPzw8yZM5GcnJxzG+AzObH9P378CODT64iq2korWrQogE/PS+ryeacDJ06cQOPGjWFra6vU4YA27HeFvHzOFihQIN1hLi4u0qub6v4eDQ8PR5cuXWBnZwcTExN4enri77//hhAi3WnS63QiJSUF8+fPR5UqVWBubg5DQ0MUKlQINWrUwKRJk6S26hTPdYo2HAsXLqzUDpw6OrPYsWMHAKBdu3YwNzdXGmZubo62bdsCyP53IoGvxOaGkydPCgDCyMhI5S81QghRr149AUBMmTJFqVxRIyQ7u+rOnTvCyclJABAGBgaiTJkyomjRokImkwkAok2bNkIulytNk5KSIpo3by4ts0SJEqJ8+fJCV1dXuLq6isGDB6usffa1X+jVUTMvu8sYOXKktD6urq6icuXKonDhwtIvKP/++68QQoj9+/eLmjVrChcXF6k6dM2aNUXNmjVFmzZtshWzYrl//fWXACCcnZ1F+fLlhaGhoQAgypQpIz5+/CiGDh0qAIgiRYqIsmXLCj09Pakm0Jf7KCIiQgAQOjo6wtHRUVSsWFGUKlVKGBkZCQDC3d1dREVFpYlFUetp8uTJwtDQUJiZmYlKlSqJIkWKSNt01apVKqv5f14zqVOnTgKAKF68uFKsZcuWFQkJCWmWm53jMKtmzZolzc/CwkJUqlRJFC1aVOjr6wsA4sSJE0rjL1q0SBrfzs5OeHt7S68/GBkZib1796a7/WbOnCmMjY2FlZWVqFSpkrC0tBQAhLm5ubhz547YunWr0NPTE3Z2dqJixYrCxMREABAFCxZMs18+/wVpwIAB0jFaqVIlaX8WLFhQ3L9/P810tra2AoAwMTER5cqVE15eXqJAgQICgChfvvw3bc+jR48KCwsLAUDo6+sLT09P4eHhIa3L187jzNSw08R1UTFd7dq1RdOmTaXj2MvLSzqOixUrJl68eJFm2vSW17t3bwFAmJmZiRIlSghvb2/h6OgojT9z5sw00+zcuVPo6OhIv0gqzmHFK43Dhg1Ld/lfHsvq9q017L7m3Llz0rrExMSobb5ZPWYvXLggnfOmpqaiUqVKwtnZWYptwoQJaZah2DYDBw4Urq6uQldXV3h6egpPT0/Rq1cvIcT/fU+NGTNGWFlZCUNDQ2n/BgYGCiGEUq2prPzavXr1aukYTU/RokUFALF27dpMz1cRc9OmTUXLli1FnTp1RPv27cVff/0l3r17l+n5ZFZG9wPZuTZPnTpVABDGxsaiaNGiwtvbW7i6ukrbuH///hnGkdUat35+fgKAmDZtmsrhQUFB0vddSkpKlub98uVLUaBAAVGyZEnptT7Feqi7hl1O3J8sWLBAmq+Dg4Pw9vYWxYsXl77P/vzzzzRxDBs2TJrGzs5OVKhQQTqXLSwsxNmzZ9NMk9199yV11NYZO3asACCGDx8uoqOjxcyZM0WzZs1EgwYNxMCBA0VQUNA3xaiKpvddcnKy1PSFjo6OKFmypPD29haFChWSvtuio6OV5q+uffalnNj+Dx8+FDKZTJiZmamsMb548WIBQPj7+6tjFYQQ/1cDavr06UJHR0dYW1uLypUrC2dnZ+l7X9P7XSGvn7NfU6JECQFAzJ8/X23zDA4OlmqaGRkZiUqVKknfUwMHDky3BpzifvrLe7/WrVtL+6Bo0aKicuXKwsXFRejq6goA4vr160KI/3u2VRwj3t7e0rNtzZo1xbVr16R5Ku4Fsvqqt7u7uwAg1q9fr3L4unXrpOMxsxT72draWvTr10/Uq1dPNG7cWAwfPlycPn06S/HlB0zY5YJly5YJ4FPyKz19+/YVAETXrl2VyrP7YPr+/Xvpxn3o0KFKD0Z3796VXqtZuHCh0nTz58+XTpDPv+RCQ0OFh4eHlADJKwm7ly9fCh0dHWFpaSnOnDmjNP7Hjx/Fpk2bxM2bN9Ueq4Ji35mamiq10RURESGKFSsmAIiAgABhaWkpjh49Kg2/deuWlHzZv3+/0jzfvXsnVq9enaZKd3R0tJRQ7dGjR5pYFBd9XV1d0a9fP6U2ORTtNHwtYaevry8KFSokLl68KA3777//pAfd//3vf0rTZfc4zArFqwm6urpizpw5Sq9PxsfHi6VLl4rg4GCp7Pr169LNy+zZs6XX8hISEsTAgQMFAGFpaSmePXumtBzF9tPX1xc//fST9DCVkJAgWrZsKQAIPz8/YWVlJebMmSPNNzo6WmoT48t2ERVfSHp6ekJfX19s2rRJGvb69WtRv359AUBUqVJF6SZLsZ+7d+8u4uLilOZ57949sWTJkmxvz/DwcCkJ2a1bN6XjLDU1Vezdu1fs3r07w3lkJmGnieuiYjo9PT1hYWEhjh8/Lg0LDw8X5cuXFwBUJujTW97+/fvFhQsX0twEnz59Wjg6OgpdXV3x8OFDpWEeHh4CgFi0aJHSA71cLhcnTpxQuX0Vy8/rCbvhw4cLAMLDw0Nt88zqMRsfHy/dKLdr107pFY7Vq1dLN7xfXnsV20ZXV1dUr15dKYHy8eNHIcT/fU/p6uqKFi1aKMWiGCe7Cbtx48YJAKJhw4bpjtOgQQMBqE44pkcRs6qPtbW1OHDgQKbnlRnpfcdm99ocFBQkjh8/niY5dvPmTen11JMnT6YbR1YfIBU/QH3+nf65yMhIaft92Y7j13Tu3FkAULofUMwrpxJ26ro/SU5OFtbW1kJPT0/6IfTzYXv27BGnTp1SKlckPgoXLqx0bUtJSRHTpk2TkhKKc0dBmx7+Fe0Z/vLLL9IPvl9+Bg4c+M0/TH5O0/tu+/btAvj04+CXx+XLly/FvHnzlO4xhci5hF1Obf9evXoJAKJmzZri7Nmz4v379yIqKkosX75cWFhYCHNzc3H16lW1rYciYaOrqysmT54s/ZApl8ulH8M1vd+FyB/nbEZu3LghbecrV66oZZ5yuVxUrFhRAJ+SvJ/fF2zatEno6+tL332ZSdhduXJFAJ8qlnz+fCPEpzb/li1bJp48eaJUnplXYrOTsEtMTJSS9OfOnVM5ztmzZwXwKbmf2SZuPr9PUvVp06bNN7UTm9cwYZcLZs+eLQCIqlWrpjvO6NGjBQDRrFkzpfJz584JJycn4eTklKVlKn59+eGHH1QOv3nzppDJZErZbrlcLj3E/P3332mmuXr1qnSi5JWE3fnz5zPcDjkVq4Jie6mqMbNkyRJpuKpfsMaMGSMlurLCxcVFmJiYpKm1pLjoly9fPt22o76WsAMg/vnnnzTTKY63Fi1aqCzPynGYVYqGTr+shZUexQNRy5Yt0wyTy+VSEvHLB17F9qtQoUKaG7///vtP2j6q5qtoD+XLtqU+/0JStZ9fvHgh/cr5eXJJcYP6ZbJZHRQPxvXq1cv2A0ZmEnaauC5+fhyral/q5s2bAoCQyWRpHrTTS9hlZPny5QKA+O2335TKDQ0NhbW1dZbmpVjf9G6I1CUnE3a3b9+WajZnpQbY12T1mFUki+3t7dM8VHw+Px8fH6VyxbYxNDQUkZGRKuet+J5ycHBI92YyIiJC2p9ZScIo4mrfvn2647Rr104AEIMHD870fKdMmSKmT58ubt68KWJjY0VcXJw4fPiw1C6UoaGhuHz5cqbn9zXpfcdm99qckaNHjwoAom/fvmmGzZkzRzg5OWW5Br2i1mZ6icwPHz5k64FPEWuHDh2UynM6Yaeu+5Pnz59L35GZkZiYKBwcHISurq5SLY/PKWqRfHm9yO6++5I6Hv49PT0F8OnHPHNzc7Fu3ToRFxcnXr9+LWbNmiU9zKqzto6m992MGTOyvE7q2mdfyqntn5qaKqZPny4KFSqUJlnQsmXLNImSb6VIqDRv3jzdcTS93/PLOZuelJQU4ePjIwCIunXrqm2+imu7sbGxePXqVZrhihqRmU3YKTqfGjFiRKZjyEzCbsSIEcLJySlL83358qUU+71791SOExwcLI2j6KTpayIiIkTbtm3F3r17RXh4uEhMTBSPHz8WU6dOle4jW7dunek48zq2YZcLEhISAAAGBgbpjmNoaAjg/9pNUKhevTqePn0qtbOWWYr3yfv06aNyuKenJ9zd3fH48WNp3vfu3cOTJ09gZGSUpg0zAKhYsSKqVauWpTg0zcXFBQBw8eLFdNsCyw2q2ujy8vKS/lbVHlGFChUAfGojS5Xjx49jxIgRaNq0KWrXro1atWqhVq1aiImJwYcPH9JtZ6xLly7Q0cneqW9tbY1WrVqlKVd0ff5lrNk5DrPi4cOHCA4OhoGBAYYPH56paQ4fPgwAGDJkSJphMpkMQ4cOVRrvSz179kzTllmJEiWkLtdV7euv7UsAGDRoUJoyOzs7tGnTBsCn9kIUFMf19u3bM2z7Ijt27doFABg1apTKNtvURRPXRQUDAwOVx6Snpydq1aoFIUS6+1+VV69eYf78+ejUqRPq168vnYvz5s0DANy8eVNpfBcXF7x79w5HjhzJ9DIU61u9evVMT6NN3r17h9atWyMpKQlNmjRB165d1TbvrB6zin3bt29fGBkZpRk+bNgwAJ/aUouPj08zvH79+ihUqFCGy2jdujVMTU1VDnN2dpb2p7Oz81fjVfiWcyYjEyZMwK+//gpPT0+Ym5vDzMwMDRo0wOnTp1GlShUkJibil19+yfT8sutbrs1xcXFYtmwZunfvjoYNG8LHxwe1atXCmDFjAKQ9BwHgp59+wtOnT7Pcrs7X9oNiHwCZ3w8JCQno378/zM3NMXfu3CzF863UdX9SsGBBGBoaIiQkROX2/tL58+cRFRWFihUrSvP7UosWLQAAp06dUirP7r7LCYprRHJyMubNm4cuXbrAzMwMNjY2GD16tHQ9mT59ulrbPAM0t+8U9yD79u3Dhw8fMhVrTu2znNr+79+/x5MnTxAbGwtjY2OUK1cObm5ukMlkOHbsGNasWaO2Npg/161bt6+Ow3M2Z4wdOxZBQUEwNzfH0qVL1TZfxf1727ZtYWtrm2b4wIEDszQ/xfl37NixdNtdzo65c+fi6dOnWfoOUnwfAur9TnR2dsbWrVvRtGlTuLq6wsDAAIULF8b48eOxdetWAJ/akw0KCsp0rHlZ2pY0Se0UDwRJSUnpjpOYmAgAMDY2Vssyb9++DQCYOHEipk+frnIcRecEkZGRcHZ2lhrXdHNzk5IPXypdunSeahDdyckJbdu2xbZt21CsWDHUqVMHfn5+8PHxQbVq1VQ2JpsTFA3Ufq5gwYLSvxYWFukOf//+vVJ5UlIS2rdvj507d2a4zPQu4qVLl85MyCqpWg/gU2IJSBtrdo7DrFA0hlumTJk0DZ2q8u7dO6mh+zJlyqgcp2zZsgDSb2w2vW1ga2uLJ0+eZLivv9w+Cvr6+ihWrJjKYYr99Xk8gwYNwpo1azB16lSsXbsWjRo1go+PD+rUqfPVREJG4uLiEBkZCQA5npzXxHVRwdnZOd3jpXTp0jhz5kymGxs+fPgw2rVrl25jzkDac3HEiBEYNGgQGjZsiEqVKklJPl9f30wdx3lNYmIiAgICEBISgrJly2L9+vVqm3d2jlnFvk3vGlC8eHEYGBggKSkJjx49gqenp9LwzFxDv+U6m57cPmcMDAwwdepU+Pv74+TJk4iOjs6wQ5Fv8S3X5uvXr6NZs2Z49uxZuvNX50ONkZERPnz4kO5+UOwDIPP7Ydq0aXj48CH+/PNPODo6qiXOzFLX/Ymuri6GDh2K33//HRUrVkTNmjVRp04dKXn6ZXJccX8QFhaGWrVqqYxN0XC64hzXRor1sra2VplsGTFiBP7880+8ePEC169fl37gVAdN7buAgAC4u7vj8OHDKFSokHQP4ufnJ52nuSUntn9iYiJ8fHxw69Yt9O3bF3PnzoWZmRmAT8n/du3aYdasWXj//j0WLlyo1vXJzHcHz1n1W7x4MWbPng09PT1s2rQp3Xv97FB8Z6W3b4sXLw49Pb1MJ5SrV6+OqlWr4uLFi3BxcUGDBg1Qu3Zt+Pr6omLFijn6Y/uXPj9G1PmdmJGWLVuievXqOH/+PHbs2AEfH59vnqe2Y8IuFyhucKOjo9MdRzFMXTfDiofHq1evfnVcRbZbcRFXXNRVsbe3V0N0uWvt2rUoU6YMli9fjsOHD0u/zhcsWBCjR4/GTz/9lO0aZ5mlKgGquKCmlxxVDP+yBtXMmTOxc+dOODg4YPbs2ahduzYcHBykXzBq1aqFs2fPpttDV3q1PjIjvWkV2+/LWLNzHGZFbGwsAMDKyipT439+o6JIMn5JcYzHxcWpHP61/ZXRvk6PjY1Nusegqni8vLxw+vRpTJo0CcePH8eSJUuwZMkSyGQyNGjQAPPmzctWwkCxPQHA0tIyy9NnhSauiwrp7Xvg6/v/c+/evUOHDh0QExODbt26YeDAgShZsiQsLCygo6ODo0ePokGDBmnOxYEDB8Lc3Bxz5szB1atXcfXqVcyaNQtGRkbo2rUrfv/9d7Vs/7Zt2+L58+dpys+cOfPN886slJQUtG/fHqdOnZIe8NS5P7NzzCquA+kdBzKZDAULFkRkZKTK4yAz19Bvuc6mRxPnjKJGp1wux+PHj1GpUiW1zPdL2b02p6amol27dnj27BmaNGmCX375BWXLloWVlRV0dXXx8OFDFC9eXK09VlpbW+PDhw/p7ofPyzOzHx48eIDff/8d5cuXV1m7MKep+/7EyckJf//9N4KCgqTaDxYWFhg4cCACAwOlexXF/cGrV6++2mN0du4PcotiHxctWlTlj8AuLi4wMzPD+/fvERYWptaEnab2nampKYKCgjBx4kRs374dW7ZswZYtWwB8SrjPmjULzZo1++b1O3DgAH777bc05b169ZJqkeXE9l+yZAlu3bqFsmXL4n//+x90dXWlYeXLl8fq1atRo0YNLF68GL/88otU40kdMvPdwXNWvbZs2YJBgwZJPbw3bdpUrfP/2vO1jo4ObG1tlXr5zYiOjg4OHDiAyZMnY/369di1a5f0poGbmxsCAwNVvimXEywtLaGjowO5XP7V70QdHR2VyeTsUCTsHj58qJb5aTu+EpsLihcvDgB48uRJutlzRRVlxbjfSvFL0IMHDyA+tVWY7sfPz09pmowuwi9fvlRZnt4XgYKq14qyKrvLMDIyQmBgIJ4+fYp79+5hyZIlaN68Od68eYNRo0bl+usn32rDhg0APnXV3bVrV7i5uSlVN46IiNBUaGlk5zjMCkVtJMUvepmNB0j/WH7x4oXSvHPDmzdv0n21QhHnl/FUq1YNhw4dQnR0NA4ePIhffvkFzs7OOHz4MBo0aJDpbfK5z5eRUY0xddDEdVEhM9e4zOz/AwcOIDo6GtWrV8fq1atRtWpVWFlZScnXjM7Frl274saNG3j+/Dk2b96M3r17Q09PD8uWLUOXLl2yuEaqXb58GWfPnk3zyS1CCPTs2RO7du2Co6Mjjh49+k01QFXJzjGruA6kdw0QQkjHiDbVeFScBxm9Wq/uc0ZfX1/6W92v830uu9fmS5cu4eHDh3Bzc8OOHTtQu3Zt2NjYSA/YOfF9+LX9oCg3MDCAm5vbV+d39+5dqTank5MTHBwclD4KFStWhIODA/744w81rEXO0NHRwbBhwxASEoLQ0FCsWbMGHTp0QEJCAmbOnImRI0dK4yr2eefOnb96f3Dy5EkNrdHXlSxZEoDya19fUrwqlpqamisxZUdW9h3wqab6ypUr8fbtW1y4cAEzZ86Et7c3goODERAQgIsXL35zTC9evFD5HfZ5Ezc5sf0VP2r5+fkpJesUqlWrBjMzM6SmpuLGjRuZXR2t9D2es5/bv38/unbtCrlcjoULF6Jz585qX8bXnq/lcjnevHmTpXlaW1tj3rx5ePXqFa5fv4758+ejTp06CA8PR8+ePbF9+/ZvjjszDAwM4OrqCuDr34nu7u5K9xTfQjGfnLwv0SZM2OWCChUqQF9fHwkJCbh27Vqa4cnJybh8+TIAoGrVqmpZpuKVkjt37mR6mhIlSgD49ACdXpsUilcQv6T4RSi9i5E6MuDqWEapUqXQr18/7N69G4sWLQIALFu27Jtjy01hYWEAgBo1aqQZ9ubNG62qhp6d4zArFK9eBAcHZ6pGlJWVlfQLV3BwsMpx7t69C+D/zofckJycjEePHqkcpjjn0ovHzMwM/v7+mDlzJu7fv4+iRYsiMjISBw4cyHIcFhYW0mvJOf3quyauiwoRERHpvp78te39OcW5WL16dZW1KDPTJoyDgwPat2+P5cuX4+LFi9DR0cHevXtV1ozLqrCwMJU30rll8ODBWL9+PWxsbHDkyBG1vmKikJ1jVrFv07sGPHjwAElJSdDV1c2RmLNLcR48fPhQSl59LioqSrqOqOucUVwPAWS5yYKsyO61WXEOVqpUSeUDe2bOwaxSbNv0kt+K8kqVKql82E/P+/fv8eLFizQfhVevXuHFixfpXru0jbu7O7p164ZNmzZh9+7dAICVK1dKP07l9P1BblHUQg0NDVU5PCYmRnol28nJKdfi+hZf23ef09PTQ9WqVfHLL7/g8uXL6NChA1JTU7Fy5cpvjqNHjx4qv8MCAwOlcXJi+2fmflLxXfp5G1553fdyziqcPn0abdq0QXJyMmbMmJHltuQyS/Gddf/+fZXDHz58mO1a4DKZDF5eXhg6dCiOHz8utdv65bNtTr4mm9nvRHXeyyvuB3LyvkSbMGGXCywsLFC/fn0AwIoVK9IM37ZtG2JjY2FjY5OtWkaqKDoG+OuvvzL9gFaqVCm4uLjg48ePWLt2bZrhN27cwPnz51VOW6RIEQCQHrA/9/TpU6UG87NL3ctQtHeUUbs32kjx/r+qB7Y5c+Zo1S+42TkOs6Jo0aLw8PBAUlIS/vrrr0xN4+/vDwBYsGBBmmFCCKlcMV5uUSSQP/fq1Supgd6GDRt+dR4mJiYoV64cgOwf1wEBAQA+HUs5SRPXRYWkpCSVy7xz5w6CgoKkV4u/JqNz8c2bNyqXkZEyZcpIr3XmtevSl8aNG4dFixbB3NwcBw8ezNF2jbJ6zCrO7WXLlql82FJcS2rWrJkjr7ZmV6lSpaRX3VU9DCvKypUrp7YfHBTbtFSpUjmebMjOtTmjc1DRCL26Kb7Xjhw5kqYzq9TUVKxZswYApA6DviYgICDDmioKERERaZIVeYXifuvjx4/S61E+Pj6wtbXFzZs380xtHFVatmwJQ0NDPHv2TGVHQqtWrQLwqWaoOl+HzS2q9l1mxs+t77Cc2P6KWrQnT55UeU99/vx56a2e3PxxNzfl53MW+NRUT/PmzfHx40f8+uuvUqIrJyju37dt26ayJp2q+//sSu/8U3xX5sSryorvxK1bt6ZJdsfFxUnPMZn9Tvya4OBgHDx4EACk54h871u7maXMOXPmjJDJZEJHR0ds3LhRKr9x44awt7cXAMSsWbPSTHf+/Hnh5uYm3NzcsrS8uLg4UaRIEQFAdOzYUTx79izN8C1btqTpuvnPP/8UAESBAgXE2bNnpfKwsDDh6ekp9PX1BQAxadIkpekUXTbr6emJffv2SeXPnj0TtWvXTne6rMjOMo4ePSp+/vlncffu3TTr37lzZwFA1K5dW2nYpEmTvjlWBfz/bqxVUXRNnt6+PXHihAAgfH19lcqbNm0qAIgWLVqIuLg4IYQQcrlcrFmzRujr6wsjI6M0XYALobpr8C+tWrVKABDdu3fPVCxfW5fsHodZsXPnTum4mD9/vkhKSpKGxcfHi2XLlong4GCp7Pr160JPT08AEH/88YdITU0VQnzqrn7IkCECgLC0tBTPnz9XWs7Xtt/XukxXdSwotpuenp4wMDAQW7dulYa9efNGNGzYUAAQ3t7eQi6XS8P69+8vNm/eLOLj45Xmd+rUKWFubi4AiOPHj6e/0TIQHh4uLC0tBQDRq1cv8fbtW2lYamqq2Ldvn9izZ0+G81Bsq3Xr1mU4Xm5fFxXHsZ6enrC0tBQnT56UhkVERIgKFSqk21W8qv135coVAUDo6+uLI0eOSOXPnj0Tvr6+0rn4+XkTExMj2rdvL06cOCEde0IIkZKSIubPny8ACFNTU+ncVlCs7/nz57O0zlmluP717t07w/G2bdsm3NzcRM2aNdMMmzNnjgAgjI2NxalTp3IqVElWj9n4+Hjh6uoqAIj27dsrbet169ZJ14f9+/crLScz3w3du3cXAMSqVavSHSciIkLanxEREVla1w0bNkjHyLFjx6TyY8eOCVNTUwFAbNmyJc10I0eOFG5ubmLkyJFK5YcPHxZjxowRjx8/Vip/9+6ddD0EoHR+fqv0tmN2rs3Pnz+XplmzZo1S/G3btpXOQVXXij///FO4ubmJ9u3bZ3kdGjRoIACIWrVqidevXwshhEhKSpLitLOzS3MOC5G981ixD7J6rGR2vqpk5/7k7t27ol+/fuLSpUtK31cJCQli1KhRKue3aNEiAUDY2tqKHTt2KE0nhBC3b98Wo0ePFmfOnFEq/5Z9p2o9dXV1vzpuRvtu5MiRAoAoUaKEePjwoVR+9uxZYW1tLQCI8ePHf1Osn9P0vps7d674888/RVRUlNK8w8PDhYeHhwAgJk6cqDRMXftMlexu/5o1awo3Nzexbds2pfILFy5I27hfv35K5/L169dFiRIlBADh6emZ5pjNrq/dQwqh+f0uRP44Z+/fvy9sbW0FADFw4MBviicz5HK5dH/ZuHFjpXuULVu2CAMDA+l77Mv9r+rZY/369WLKlClpxn39+rWoW7euACC6deumNEzx7Pi///0v3TjTu0/4mpSUFFGqVCnp/lnxbPL+/XvRunVrAUB4eHgo3fMKkfG9UL9+/cSuXbuUnumEEOLkyZPS/VuZMmVEcnJylmLNq5iwy0XTpk2TLrZFihQRnp6eQkdHRwAQTZs2FSkpKWmmUVxgs5NbvXfvnihcuLAAIHR0dETp0qVF1apVRYkSJYSurq4AIKpWrao0TUpKimjSpIm0zFKlSgkvLy+hp6cnXF1dxeDBg9N9YOndu7c0XeHChaXpSpUqJYYNG6aWJFhWl/Hvv/9K4xcsWFB4e3uL8uXLCxMTE+nm/+rVq0rL0PaE3ZUrV4ShoaEAICwsLESlSpVEoUKFBADRtWvXdBNLmkjYCZG94zCrZsyYIWQymbRPvb29RfHixaUk7pfrvGjRIml8e3t7UblyZWFlZSUACENDQ7F37940y8jJhJ2bm5sYMGCA9Le3t7cwNjYWAISNjY1SwlEIIcqXLy8lnkqXLi2qVKkiLR+A6NKlS6a3nSpHjhyREn/6+vqifPnyoly5clJC4MtzY9OmTcLGxkb6KG48zMzMlMpVyc3romK62rVrSzcvJUqUEBUqVJBiLlKkSJpkrRDpn8tt2rSRhhUrVky6Jpmbm4t58+alOW+io6Ol8U1NTUX58uWFt7e3dPMok8nEsmXL0l1+Rudvdjx58kRpHymOO0NDQ6XyL2++FdeKL8/5yMhI6dyys7MTNWvWTPejajtnV1aP2QsXLkhJPlNTU+Ht7S1cXFyk7azq4U5dCTvFef+1h7P09O3bV5q+dOnSonTp0tL/+/fvn2FcX17bP/+OdHJyEpUrVxZeXl7CwMBAOh7V8V34uYy2Y3auzT///LO0Dq6urqJSpUrC2NhY6Ovri//973/pfjcp4kjvey0jkZGR0jXXxMREVKpUSRQsWFAAEEZGRumep9k5jxXTaHvC7vr169I8raysRMWKFUWFChWk88zAwCBNElwIIcaMGSNNV6BAAVG5cmVRsWJFUaBAAan8wIEDStN8y75r0aKFdF1TJHMU37WKz+DBg9NMl9G+S0hIEHXq1JESCV5eXkrnZePGjdM8eH4LTe87xf02AOHu7i6qVKkiSpUqJd3TeXh4iHfv3ikt91v22ddkd/srzmFV12tFvMCnH588PT2Fu7u7dH2ysbERN2/eVNs6aCJh972es4ofw2UymahRo0a69ygrVqzIcqzpuXPnjrR9jI2Nhbe3t7TPBw4cmO7+V/Xsoahc8/n3toeHh/S97eTkJMLDw5Xms3btWmkaDw8P4evrK3x9fcX169elcdK7T8iM27dvS/vG0tJSVKpUSTqOChQokKbijBAZ3wspnnMMDQ2Fh4eHqFq1qnByclK63/48OZ/fMWGXy/bs2SPq1q0rLC0thYmJiShfvryYN2+eyodSIb4tYSeEELGxsWLmzJmiatWqwsLCQhgaGgp3d3dRt25d8ccff6j8YkhKShIzZswQJUqUEAYGBsLR0VH07t1bREVFZXijnZycLKZMmSKKFi0qDAwMhJOTkxg0aJCIjo5WWxIsq8t4/fq1+Ouvv0Tz5s1F4cKFhYmJibC0tBSenp5i9OjRKh8YtT1hJ4QQFy9eFA0aNBBmZmbC1NRUeHl5ib/++kvI5XKtS9gJkb3jMKvOnz8v2rVrJxwdHYW+vr6wt7cXNWrUEL///ruIiYlJM/6ZM2dEQECAKFiwoNDX1xeFChUSXbp0UfmlIkTOJ+zkcrmYP3++8PDwEEZGRsLW1lZ07txZhIWFpZnX8ePHxbBhw0TFihVFwYIFhYGBgXBzcxP+/v5i9+7davnFNzw8XAwePFgUK1ZMGBoaCisrK+Hp6SlGjRqV5ktScdx87ZOe3Loufn4cJyUlicDAQGn9HB0dxYABA8SrV69UTpve8hITE8WECROEu7u70NfXFw4ODqJDhw7i/v37Ks+blJQUsW7dOtG1a1dRqlQpYWlpKYyNjUWJEiVEly5dxI0bNzJcvroTdp/fMGX0+XK56SXsMju/rz2YZEdWjlkhPtUc//HHH4Wbm5swMDAQ1tbWomHDhko1uD+nLQk7IYRYs2aNqFatmjAzMxNmZmaiWrVqYu3atV+N68tr+5MnT8S4ceNE3bp1haurqzA2NhZGRkaicOHColu3buLChQvZii8jX9uOWb02y+VyMW/ePFGqVClhYGAgbG1tRfPmzcWFCxcy/G761gTC27dvxYgRI0ThwoWFgYGBsLOzEx06dEg3TiHyd8Lu/fv3YtmyZaJt27aiePHi0rFZpkwZ0b9//wwfrs6ePSs6deokXFxchIGBgShQoIDw9PQUvXr1Evv27UuTbPmWfaf4Ls/oo+qB9Wv7Ljk5WcydO1d4eXkJU1NTYWpqKqpUqSIWLVqk9logmt539+7dE4GBgaJ27drCyclJGBgYCHt7e1GtWjWxYMEC8eHDhzTLzcmEnRDZ2/4ZJeyE+PSWTqtWrUShQoWEvr6+MDY2FmXLlhUjR45M88bIt9JEwu57PWczMz91PQd+7vHjx6JTp07CxsZGGBkZiXLlyokFCxYIuVyepYTdkydPxKxZs0SDBg2Eq6urMDIyEjY2NqJixYpi2rRpIjo6WuXy58+fLzw9PaUfZr+c77ck7BRx9enTR7omODk5ib59+6b73ZXRvdDmzZtFt27dhIeHh7C1tRV6enrC2tpa1KxZU8yZM0dlDfb8TCaEECAiolwXFhaGwoULw83NTWo8nYiIiIiIiIidThAREREREREREWkRJuyIiIiIiIiIiIi0iJ6mA6Dv05AhQ3D9+vVMjVuhQgUsWLAghyPK2PXr1zFkyJBMj79gwQJUqFAhByPKn9q2bYvnz59natwmTZpg7NixORxR3jZ9+nTs378/U+M6OjpKXa8TERERERGRZjFhRxpx+/ZtnD17NlPj6ulp/jCNiYnJdLyK8SnrLl++jPDw8EyNW6xYsRyOJu8LCQnJ9HHr5uaWw9EQERERERFRZrHTCSIiIiIiIiIiIi3CNuyIiIiIiIiIiIi0iObfNczH5HI5nj17BnNzc8hkMk2HQ0REREREREREGiKEQFxcHAoVKgQdnYzr0DFhl4OePXsGFxcXTYdBRERERERERERaIiIiAs7OzhmOw4RdDjI3NwfwaUdYWFhoOBoiIiIiIiIiItKU2NhYuLi4SPmijDBhl4MUr8FaWFgwYUdERERERERERJlqNo2dThAREREREREREWkRrUvYRUZGYt68eWjYsCFcXV1hYGAABwcHtG7dGhcvXlQaNzk5Gf/88w969OiB0qVLw9TUFObm5qhatSoWLVqE1NTULC//8uXLaNKkCaytrWFqaooqVapg48aN6lo9IiIiIiIiIiKiDMmEEELTQXxuzJgxmDVrFooWLQpfX1/Y2dnhwYMH2LlzJ4QQ2LRpE9q1awcAuH//PkqXLg1zc3PUrVsXJUuWRExMDPbs2YNnz56hefPm2LVrV6Z7aD158iT8/f1hYGCADh06wNLSEjt27EBoaCh+++03jB07NkvrEhsbC0tLS8TExPCVWCIiIiIiIqJ8LjU1FcnJyZoOgzREX18furq66Q7PSp5I6xJ2O3bsQMGCBeHj46NUHhQUhHr16sHc3BzPnj2DoaEhIiMjsXv3bnTv3h0mJibSuPHx8fDz88OVK1ewdetWtG3b9qvLTUlJQalSpfD06VOcP38eFSpUAADExcWhevXq+O+//xAcHIzixYtnel2YsCMiIiIiIiLK/4QQiIqKwrt37zQdCmmYlZUVHBwcVFYey9MJu4z4+/vj8OHDuHz5Mry9vTMcd9OmTejUqRMGDRqEhQsXfnXehw8fhr+/P3r27ImVK1cqDduyZQs6dOiAX3/9FdOnT890vEzYEREREREREeV/z58/x7t372BnZwcTE5NMv+lH+YcQAh8+fMDLly9hZWUFR0fHNONkJU+Up3qJ1dfXBwDo6X097KyMC3x6HRYAGjZsmGaYouzUqVOZmhcRERERERERfR9SU1OlZJ2NjY2mwyENMjY2BgC8fPkSdnZ2Gb4e+zV5JmH35MkTHD16FA4ODihXrtxXx1fUklOVgFPlwYMHAKDylVdra2vY2tpK46QnMTERiYmJ0v9jY2MztWwiIiIiIiIiypsUbdZ93lQXfb8Ux0FycvI3Jey0rpdYVZKTk9G1a1ckJiZi9uzZX13hpUuX4sCBA6hbty6aNGmSqWXExMQAACwtLVUOt7CwkMZJz4wZM2BpaSl9XFxcMrVsIiIiIiIiIsrb+BosAeo7DrQ+YSeXy9GrVy+cPn0affv2RdeuXTMcf9++fRg8eDDc3Nywfv36XIryk19//RUxMTHSJyIiIleXT0REREREREREeZ9WvxIrhEDfvn2xfv16dOnSBYsXL85w/EOHDqF169awt7fH8ePHVTbwlx5Fzbr0atEpGgbMiKGhIQwNDTO9TCIiIiIiIiIioi9pbQ07uVyO3r17Y+XKlejYsSNWr14NHZ30wz148CACAgJga2uLEydOoEiRIllanqLtOlXt1EVHR+P169cq27cjIiIiIiIiIspvTp48CZlMhnfv3mk6FLXp0aMHAgICNB1Gpmhlwk4ul6NPnz5YtWoV2rdvj3Xr1mXYbp0iWWdtbY0TJ06gWLFiWV6mr68vAODw4cNphinKFOMQEREREREREZF2CgsLg0wmw40bN5TK58+fj9WrV2skpqzSuoSdombdqlWr0LZtW6xfvz5Lybqv1YJLTk7G/fv38ejRI6XyevXqoUiRIti4caPSDo2Li8PUqVOhp6eHHj16fMuq5YrU1FQ8fvwYBw8exL///sueaomIiIiIiIgoT0hKSsrR+VtaWsLKyipHl6EuWpewmzJlClavXg0zMzOUKFEC06ZNQ2BgoNJHkVC7f/8+AgICkJiYCD8/P2zatCnNuF9mTiMjI1G6dGnUq1dPqVxPTw/Lly+HXC6Hj48P+vXrh59//hnly5fH3bt3ERgYiBIlSuTSVsiYEAKRkZE4efIkli5dip9//hktW7ZE6dKlYWxsjKJFi6Jx48Zo1aoVihQpgt9//x0fPnzQdNhEREREREREpEUSExMxdOhQ2NnZwcjICLVq1cLly5eVxjl79izKly8PIyMjVK1aFbdv35aGhYeHo3nz5rC2toapqSnKli2L/fv3S8ODg4PRpEkTmJmZwd7eHl27dsXr16+l4X5+fhg8eDB++ukn2NraokGDBujYsSM6dOigFENycjJsbW2xatUqAJ8qb9WqVQtWVlawsbFBs2bNlCpmFS5cGABQoUIFyGQy+Pn5AUj7SuzX1l/xWvCxY8fg7e0NExMT1KhRA//99182t3jmaV2nE2FhYQCA9+/f47ffflM5jru7O7y8vBAVFYXExEQAwObNm1WO6+vrm+macXXq1MGZM2cwadIkbN26FUlJSShbtiymTp2Kzp07Z3ld1O3kyZMYP348bty4gfj4+ExN8+bNG4wePRpz5szB2LFj0a9fPxgZGeVwpERERERERETfN29vb0RFReXqMh0cHHDlypVMjz969Gj8888/WLNmDdzc3DB79mz4+/vj4cOH0jijRo3C/Pnz4eDggLFjx6JFixYICQmBvr4+Bg0ahKSkJJw+fRqmpqYIDg6GmZkZAOD58+fw9fVF3759MXfuXHz8+BG//PIL2rVrh+PHj0vzX7NmDQYMGICzZ89CCIGHDx+iXbt2eP/+vTSvQ4cOIT4+Hq1btwYAxMfH46effkK5cuUQHx+PiRMn4ocffsCNGzego6ODS5cuoUqVKjh69CjKli0LAwODLK9/gQIFpPHGjRuHOXPmoGDBgujfvz969eqFs2fPZn7HZIegHBMTEyMAiJiYmG+aT0JCgvj555+FTCYTANL9GBkZiXLlyolWrVqJMWPGiM6dO6eZxtnZWSxevFgkJiaqaS2JiIiIiIiIvl8fP34UwcHB4uPHj0rlTk5OGT7D58THyckp03G/f/9e6Ovriw0bNkhlSUlJolChQmL27NnixIkTAoDYvHmzNPzNmzfC2NhYbNmyRQghRLly5URgYKDK+U+YMEE0bNhQqSwiIkIAEP/9958QQghfX1/h5eWlNE5SUpKwtbUVa9eulco6duwo2rZtm+66vHz5UgAQt2/fFkIIERoaKgCI69evK43XvXt30bJly0ytvxBC2gZHjx6Vxtm3b58AkGZ/K6R3PAiRtTyR1tWwI2W3b99Gly5dcOvWLanM1dUVHh4eKFGiBEqUKIHixYujRIkScHZ2TtOT7tixYxEYGIht27YBAJ4+fYr+/ftj1qxZmDRpEjp37gw9PR4GREREREREROrk4OCg1ct89OgRkpOTUbNmTalMX18fVapUwb1791C5cmUAQPXq1aXhBQoUQMmSJXHv3j0AwNChQzFgwAAcPnwY9evXR+vWreHp6QkAuHr1Kk6cOCHVkvty2Ypmx7y9vZWG6evro23bttiwYQO6du2K+Ph47Nq1Cxs3blSafsKECbhw4QJev34NuVwOAHjy5Ak8PDzUsv6fU6wTADg6OgIAXr58CVdX10wtKzuYqdFScrkc8+bNw6+//io1umhgYIDffvsNP/30U5rEXHrKlCmDrVu34saNG5g4cSL27NkDAAgNDUWPHj0wY8YMTJ48GW3bts30PImIiIiIiIgoY1l5NVUThBAAAJlMlqb8y7IvKYb36dMH/v7+2LdvHw4fPowZM2Zgzpw5GDJkCORyOZo3b45Zs2almV6R9AIAU1PTNMM7d+4MX19fvHz5EkeOHIGRkREaN24sDW/evDlcXFywbNkyFCpUCHK5HB4eHlnqtCIr66+vr59m3RVJwpzCDI0WioiIQP369TFy5EjpYPPw8MDly5fx888/Zyux5uXlhd27d+PChQto0KCBVP7ff/+hQ4cOsLCwgK2tLRwdHeHq6ooiRYqgZMmS8PDwQIUKFVC5cmXUqFEDDRo0wNy5cxEdHa229SUiIiIiIiKi3FWsWDEYGBjgzJkzUllycjKuXLmC0qVLS2UXLlyQ/o6OjkZISAhKlSollbm4uKB///7YsWMHRo4ciWXLlgEAKlasiLt378Ld3R3FihVT+qhK0n2uRo0acHFxwZYtW7Bhwwa0bdtWaofuzZs3uHfvHsaPH4969eqhdOnSaXIUinFTU1O/ef01hTXstMzGjRsxcOBAxMTEAPiUuf3pp58wbdo0tXQWUbVqVRw+fBinT5/G+PHjERQUBOBTg42Z7cji6NGjmDBhArp06YJBgwYpVQ0lIiIiIiIiIu1namqKAQMGYNSoUShQoABcXV0xe/ZsfPjwAb1798bNmzcBAFOmTIGNjQ3s7e0xbtw42NraSj2tDh8+HI0bN0aJEiUQHR2N48ePS8muQYMGYdmyZejYsSNGjRoFW1tbPHz4EJs3b8ayZcugq6ubbmwymQydOnXC4sWLERISghMnTkjDrK2tYWNjg6VLl8LR0RFPnjzBmDFjlKa3s7ODsbExDh48CGdnZxgZGcHS0jJL669prGGnJaKjo9GxY0d07txZSta5uLjg2LFj+OOPP9Tes2vt2rVx6tQpHD58GP7+/ihZsiSKFi0KV1dXODo6omDBgrCysoKpqSkMDQ3T1Or78OEDli5divLly8PX1xfbtm1DcnKyWmMkIiIiIiIiopwzc+ZMtG7dGl27dkXFihXx8OFDHDp0CNbW1krjDBs2DJUqVcLz58+xe/dupRpsgwYNQunSpdGoUSOULFkSixYtAgAUKlQIZ8+eRWpqKvz9/eHh4YFhw4bB0tIyU28Odu7cGcHBwXByclJqZ05HRwebN2/G1atX4eHhgREjRuD3339XmlZPTw9//fUXlixZgkKFCqFly5bZXn9NkQnFS7ukdrGxsbC0tERMTAwsLCzSHe/48ePo3r07nj59KpV16tQJf//9N6ysrHIh0syRy+UICQnBokWLsHr1asTFxSkNd3JyQv/+/dG3b1/Y29trKEoiIiIiIiKi3JOQkIDQ0FAULlxY7ZVtKO/J6HjIbJ4IYA07jUpKSsLo0aNRv359KVlnZWWFTZs2YcOGDVqVrAM+ZbFLlSqFv/76C5GRkVi4cKHSe+uRkZGYMGECXFxc0KVLF1y8eFGD0RIRERERERER5U1M2GlISEgIatSogd9//13qmaRu3bq4ffs2OnTooOHovs7c3ByDBg1CcHAwjh49ipYtW0pVWpOTk7FhwwZUq1YNPj4+2LNnT473nkJERERERERElF8wYZfLhBBYsWIFKlSogKtXrwL41D3wH3/8gSNHjsDZ2VnDEWaNTCZDvXr1sHPnTjx69Ai//PILChQoIA0/c+YMWrRogbJly2LlypVITEzUYLRERERERERERNqPCbtcFB0djXbt2qFPnz748OEDAKBkyZK4ePEiRo4cmalGF7WZu7s7Zs6ciadPn2LFihVK3SDfv38fvXv3RuHChTF79mypYw0iIiIiIiIiIlKWtzNEecipU6fg6emJ7du3S2X9+vXD1atXUaFCBQ1Gpn7Gxsbo1asX7ty5gz179sDHx0ca9vz5c/zyyy9wcXHBqFGjlDraICIiIiIiIiIiJuxyxZQpU1CnTh0pOVWgQAHs2LEDS5YsgampqYajyzk6Ojpo1qwZTp8+jfPnz6NVq1aQyWQAgLi4OPzxxx8oUqQIevTogX/++QfXrl1DdHS0hqMmIiIiIiIiItIsmVD0eEBqp+iu93N16tTB2rVr81xbdeoSEhKCOXPmYM2aNem2Z2dpaYnChQtLH3d3d+nvIkWKwNjYOJejJiIiIiIiIlItISEBoaGhKFy4MIyMjDQdDmlYRseDIk8UExMDCwuLDOfDhF0O+jxhp6enh2nTpuHnn3+Grq6uhiPTvBcvXmDBggX4+++/8e7du0xPZ25ujjlz5qBv3745FxwRERERERFRJjFhR59jwi4PUOyIIkWKYPPmzahcubKmQ9I6cXFxOHDgAB4+fIjQ0FDp8+TJE6SkpKQ73ZAhQzB37lzo6enlYrREREREREREypiwo8+pK2HHbEcuCAoKQqFChTQdhlYyNzdHu3bt0pSnpKQgMjJSKYl369Yt7Nq1CwCwYMEC3L9/H1u2bIG1tXVuh01EREREREREmeTn5wcvLy/MmzcvU+OvXr0aw4cPz9IbefkNE3a5wMzMTNMh5Dl6enpwc3ODm5sb/Pz8pPKVK1eif//+SE5OxpEjR1C1alXs2bMHJUuW1FywRERERERERERqxF5iKU/p1asXjh8/joIFCwIAHjx4gKpVq+Lw4cMajoyIiIiIiIiISD2YsKM8p1atWrh06RLKlSsHAIiJiUHjxo0xf/58sElGIiIiIiIioszx8/PDkCFDMHz4cFhbW8Pe3h5Lly5FfHw8evbsCXNzcxQtWhQHDhyQpjl16hSqVKkCQ0NDODo6YsyYMUpt0MfHx6Nbt24wMzODo6Mj5syZk2a5SUlJGD16NJycnGBqaoqqVavi5MmTubHKeQZfiaU8yd3dHefOnUOXLl2wa9cuyOVyDB8+HHfu3MHff/8NAwMDTYdIRERERERE3zNvbyAqKneX6eAAXLmSpUnWrFmD0aNH49KlS9iyZQsGDBiAnTt34ocffsDYsWPx559/omvXrnjy5Amio6PRpEkT9OjRA2vXrsX9+/fRt29fGBkZITAwEAAwatQonDhxAv/++y8cHBwwduxYXL16FV5eXtIye/bsibCwMGzevBmFChXCv//+i0aNGuH27dsoXry4GjdI3sVeYnNQVnr/oOyRy+WYMGECpk+fLpXVrl0b27dvl16bJSIiIiIiIsop6fYK6uwMREbmbjBOTsDTp5ke3c/PD6mpqQgKCgIApKamwtLSEq1atcLatWsBAFFRUXB0dMT58+exZ88e/PPPP7h37x5kMhkAYNGiRfjll18QExODDx8+wMbGBmvXrkX79u0BAG/fvoWzszP69euHefPm4dGjRyhevDiePn2q1EFn/fr1UaVKFUyfPj1PdzrBXmKJAOjo6OC3335D2bJl0atXLyQmJuL06dOoUqUKdu/eLb02S0RERERERJSrHBzyxDI9PT2lv3V1dWFjY6P0LG1vbw8AePnyJe7du4fq1atLyToAqFmzJt6/f4+nT58iOjoaSUlJqF69ujS8QIECSh1FXrt2DUIIlChRQimOxMRE2NjYZDn+/IoJO8oXOnXqhGLFiiEgIADPnz9HWFgYqlevjuXLl6NDhw6aDo+IiIiIiIi+N1l8NVVT9PX1lf4vk8mUyhTJOblcDiGEUrIOgNSWvEwmy1S78nK5HLq6urh69Sp0dXWVhpmZmWVrHfIjdjpB+UaVKlVw+fJlVKpUCcCnhi47duyIoUOHIikpScPREREREREREeVtZcqUwblz55QSc+fOnYO5uTmcnJxQrFgx6Ovr48KFC9Lw6OhohISESP+vUKECUlNT8fLlSxQrVkzp46CJWolaigk7ylecnJxw+vRpdOvWTSpbsGABfH198TQL7/ETERERERERkbKBAwciIiICQ4YMwf3797Fr1y5MmjQJP/30E3R0dGBmZobevXtj1KhROHbsGO7cuYMePXpAR+f/0k8lSpRA586d0a1bN+zYsQOhoaG4fPkyZs2ahf3792tw7bQLE3aU75iYmGD16tVYsmSJ1FvshQsXUKFCBRw9elTD0RERERERERHlTU5OTti/fz8uXbqE8uXLo3///ujduzfGjx8vjfP777+jdu3aaNGiBerXr49atWpJb8IprFq1Ct26dcPIkSNRsmRJtGjRAhcvXoSLi0tur5LWYi+xOYi9xGrelStX0KZNG4SHhwP49E791KlT8euvvypl+ImIiIiIiIiyI6NeQen7o65eYpmxoHzN29sbV69eRePGjQF8agxz/PjxaNGiBaKjozUcHRERERERERFRWkzYUb5nY2ODvXv3YsqUKVJvNvv27UPFihVx7do1DUdHRERERERERKSMCTv6Lujo6GDChAk4ePAgbGxsAABhYWGoUaMGli9fnqmup4mIiIiIiIiIcgMTdvRdadiwIa5du4YqVaoAABITE9G3b1+0a9cOUVFRGo6OiIiIiIiIiIgJO/oOubq64vTp0xg0aJBUtn37dpQpUwarVq1ibTsiIiIiIiLKMj5LEqC+44AJO/ouGRoaYuHChdi8ebP0imx0dDR69eqFhg0b4vHjxxqOkIiIiIiIiPICfX19AMCHDx80HAlpA8VxoDgusksmmALOMVnprpc059WrVxgxYgQ2bNgglRkbG2Pq1KkYNmwY9PT0NBgdERERERERabvnz5/j3bt3sLOzg4mJidThIX0/hBD48OEDXr58CSsrKzg6OqYZJyt5IibschATdnnL/v370b9/f0REREhl3t7eWLFiBTw9PTUYGREREREREWkzIQSioqLw7t07TYdCGmZlZQUHBweVSVsm7LQEE3Z5T1xcHMaOHYu///5beu9cT08Pv/zyC8aPHw8jIyMNR0hERERERETaKjU1FcnJyZoOgzREX18furq66Q5nwk5LMGGXd507dw59+vTBvXv3pLKSJUti+fLlqFWrlgYjIyIiIiIiIqK8KCt5InY6QaRCjRo1cP36dUycOFFqKPK///5D7dq1MXnyZKSmpmo4QiIiIiIiIiLKr5iwI0qHoaEhJk+ejGvXrqFKlSoAPrVLEBgYiEaNGuHFixcajpCIiIiIiIiI8iMm7Ii+wsPDA+fOncO0adOgo/PplDl69CgqVKiAU6dOaTg6IiIiIiIiIspvmLAjygRdXV2MGzcO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X748evbsieLFi+dwpERERERERET5T55O2OUnTNiRNrt//z7279+P27dv4+7duwgODkZ8fHyG0+jo6KBt27YYO3YsPD09cylSIiIiIiIioryPCTstwYQd5SVyuRwREREIDg6WEniKj6p28Jo1a4Zx48ahWrVqGoiWiIiIiIiIKG9hwk5LMGFH+YEQAhEREdi4cSPmzp2LV69eKQ2vU6cOxo0bh7p160Imk2koSiIiIiIiIiLtlpU8kU4uxUREeZRMJoOrqyvGjBmDsLAw/PXXX3B2dpaGnzhxAvXr10e1atWwe/duyOVyDUZLRERERERElPcxYUdEmWZiYoIhQ4bg0aNHWLFihVIHFJcuXULLli1Rvnx5LF++HM+ePdNgpERERERERER5F1+JzUF8JZbyu9TUVGzfvh3Tp0/HrVu30gz38PCAv78/GjZsCB8fHxgbG2sgSiIiIiIiIiLNYxt2WoIJO/peCCGwb98+/Pbbb7hw4YLKcYyMjFC7dm34+/vD398fZcqUYZt3RERERERE9N1gwk5LMGFH3xshBC5duoR9+/bh8OHDuHTpEtK7xDg5OaFhw4YYMGAAKleunMuREhEREREREeUuJuy0BBN29L17+/Ytjh49isOHD+PQoUN4+vSpyvHatGmDadOmoWTJkrkcIREREREREVHuYMJOSzBhR/R/hBC4d++elLw7deoUPn78KA3X1dVFr169MGnSJDg5OWkwUiIiIiIiIiL1Y8JOSzBhR5S+hIQErFy5ElOmTMGLFy+kciMjIwwdOhS//PILChQooMEIiYiIiIiIiNQnK3kinVyKiYhIiZGREQYOHIhHjx5h2rRp0sUqISEBs2fPRtGiRTFz5kx8+PBBw5ESERERERER5S4m7IhIo0xNTTFu3Dg8fvwYI0eOhKGhIQDg3bt3+PXXX1GsWDEsXrwYycnJGo6UiIiIiIiIKHcwYUdEWsHGxgZ//PEHHjx4gF69ekFH59Pl6fnz5xgwYADKlSuHW7duaThKIiIiIiIiopzHhB0RaRUXFxesWLECd+7cwQ8//CCV//fff6hRowZ27dqlweiIiIiIiIiIch4TdkSklUqXLo0dO3bgwoULqFSpEgAgPj4eP/zwA2bMmAH2l0NERERERET5FRN2RKTVqlatiqCgIHTs2BEAIITA2LFj0aVLF3z8+FHD0RERERERERGp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o6V33pEGDJCiomysYEFr8NC0qXfnllgXL0pjxtiW2HPnbKxsWQurSpRI+u2uW2dNLQ4fttsbNUq6/37fC7GcTmnzZmnGDOmnn2zhQnwCAqQ777SVdMWKSfPmWajnqlf4X0WKWHDXoIFUqpSdbrnF94NcwAcR2PkIAjsftW2b1eX4+mvP4K5AAftF5amnqN8AAACA9C083H4f/vRTC6RcGje2etDJsSrNW3btkpo3lw4csPNFi0q//JK0unbTp9v22suXPcfr1ZPefts36vpt3241Br/+Wvr77/gvU6CA1KaNBW8tWkj//XwaHW3/D376ybYZXyvsc8mc2UJQV4BXqpRUurT9WaaMlDt3sjw0IL0hsPMRBHY+bscOW3E3fbpncFekiPTaa/bGHBjovfkBAAAAycnptCYNkybZrpNLlzyPv/66bSsNCPDO/JLTwYMWTLkCrHz5bHtszZoJu35UlP19jBrlHsuXz5rcxXbffdLIkVKFCskz74TavdtCum++sZ1E8alVy1bR3XOP/ZyYFXGHDll499NP0uLFcQPLGwkJsXqIHTpIefIk7rpAOkZg5yMI7NKI7dutC9a333qOFy8uDRokdeuWdupUAAAAAP915Ig0dao0ebIFPf9Vtao0erTUqlXqzy0lnThhj8m1WiwoyAKoRo2uf73wcKlzZ9sm6tKjh/Txx7a99pVXpL/+ch/z95eeeMLCzoIFk/1hxNi/3z6zfPON9OefcY87HPbYOna0LbxFiiTP/V68KC1fLu3cKf3zjzWscJ3On7/+dTNlspV9jzxiwWHWrMkzJyCNStOB3eHDh/Xdd99p7ty52rFjh44dO6Y8efKoYcOGeuWVV1S3bt041wkPD9eQIUP0/fff69ixYypUqJAeeOABDRkyJNFB2R9//KHBgwdr9erVunr1qipXrqznn39enTt3TvRjIbBLYzZvtjfZ/3aVLVPGxjt3tjdjAAAAwNdFRFg4NXmyNHeubXmMLTjYfr/t0cNWnflaPbbkcvasNU9YudLOZ81qzehat47/8rt3S+3aubvO+vtL771n9a5df0euJheDBklHj7qvmyOHhXl9+yZfbewLF2w15KRJ7sfwX/XqWUjXoYPVlkstTqetOIwd4O3da6s4Y3ftdQkKkh54wFbe3Xknn62QIaXpwK5///566623VKZMGd15550qUKCAdu3a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TRtp7FjbLrlpk7RlizRzpq2uc9m2TXrkEalSJQuJr15NvcfhbVFRVlOyfn13WJc9u62ymzUr7YZ1kq2eu+suacEC+zfu29czONu/XxoyRCpZUmrVSvr2W2sSkRS7d0v16nmGdQMGWFdYwjoAAJDCWGGXglhhBwD/2rXLVtutXOkeq1XLulUWKeK9ecEtKsq6hL7+umdNsIAAado069CZUs6ft86gH3zguRrM5ZZbpHvusZprTZtee1u102lhyvDhnis7JVtt1a+f/T9Mz00BDh2yra5Ll7rH6tSx2nXlynltWinq6lV7LZk0yYK8//5qmzevNdto1sz+DkqXdjfIuZaffrLrhIXZ+Rw5rKbe/fenzGMAAAAZAltifQSBHQDEEh1tBdr797d6VJJUtKitqKpa1btzy+iWLZOefVbavNk95nC4gw+Hw7pg9uqVvPe7d6/9n5g0yR2MuJQuLXXvLrVta41LElNrzem0xzR8uNW+i61QIatF9uST6a+e4vff279RaKiddzhsRdiQIe5uq+ndwYMW/k6eLO3bF/9l/PykUqUsvCtf3k6un4sWtf83Q4e6L1+xonWlrVgxNR4BAABIxwjsfASBHQDEY9s2Wym1f7+dz5FD+uYb2+aI1HXggIVX337rOf7II9Yg5I03PJsVvPWW9MorN3efTqd1+RwzRpo924Lc2Jo0sSYJd99tNfRu1urV0ogRFgzHli+fbad8+mkprb9Hnz8vPfechVQuRYvaysiMWi8yOlpassT+/86cmfBtsf7+7sYSkvTAA9KUKVLOnCkzTwAAkKEQ2PkIAjsAuIbjx634/e+/23k/P9sO+fTT3p1XRnHpkvR//2d1zlyrHSWrAffBB1LDhnbe6bSA7u233Zfp39/CvMR2F42IsFpg770nbdjgeSww0ELC555LudWWGzbYyqmZMz3Hc+Wy+332WSlPnpS575T0xx/2dxd7K3GHDrYiMndu783Ll5w5Y1uld+yQdu60v6udOy3ovBY/P2nkSAu000onXQAA4PMI7HwEgR0AXMfFi1K3braNz+W556R33kmelVWIy+m0wOrFF90rHCVrMPHmm9ZZ879/906nBRevveYee+op6eOPLdS4katXpc8/t9vfu9fzWOHCFtI+8YTNITVs22Zz+fprz9V9OXLYXPr2lQoUSJ253Ayn0xq69O9vXXIl2+L74Ye2lZiQ6fqcTunYMXd4FzvIy5NHGjzYusECAAAkIwI7H0FgBwA3EB0tvfqqbbV0adtWmj7dAhQkn+3bpT59PGu6BQRYR9jBg22l2fWMHeu5AvLhh60I/7Vqo12+bFs033rLtt7GVqeObXt98MEbF/9PKbt2WRD5xRfuwEuSsma1+nYvv+y7DVHCwiyUmzXLPVanjj1vypb11qwAAABwAwR2PoLADgASaOJE6X//cwcnNWpIc+ZYd1DcnPPnpWHDbDVW7GCqZUurI1epUsJv68svpUcfddf4uvtu6bvvLORyuXhR+vRTafRo6cgRz+u3bGldaENCfGcF2L59NtdJk2w1oEvmzBZS9ujhtanFa9Mmq6u2Z497rH9/qzeYURpLAAAApFEEdj6CwA4AEmHxYgsiXN1Cb7lF+uknqXp1r04rzXI6pRkzpBdekA4fdo+XLGlBXbt2SQvN5syxGmmuIv533in9+KNtjx0/3mrjnTjheZ177rGgrm7dpD6alHf4sNXqmzDBXdfPz8+2EN97r3fn5jJlitS7t61elKxG3RdfWHAKAAAAn0dg5yMI7AAgkf76y8KHffvsfPbsVmvsnnu8Oq00Z8cO2+oae/trYKCtxOrXz3NFXFIsWWKBn6tof6VKFtKdPu15ufvus6CuZs2bu7/UdOKEbdN2dcfNmlX69VepXj3vzenSJdvOHLtjb61aFsiWLOm1aQEAACBxEpMTJaBaNAAAqeTWW6W1a93hyIULFgyNGmUrxnB9589bKFe1qmdY16aNNVsYMuTmwzpJatLEQixXV9Xt291hncMhPfSQbd2cOTNthXWSNZz45BPrvCpZWNa2rWcX1tT0zz/WtTd2WPfkk9LKlYR1AAAA6RiBHQDAtxQoYGHQQw/ZeadTGjBA6tjRvaILnpxOqyVXqZI1eYiIsPGSJaXZs21rcZkyyXufdepIy5e7GzP4+VnItW2b9M03FhqmVX5+1jCjaVM7f+qUdNddcbf6prQff7TAc8MGO581q3XcHT9eypIldecCAACAVEVgBwDwPVmzSl99ZYX0Xb77TmrQwFYcwW3nTmvm8NBD0qFDNhYYKA0aZFuMk1qrLiEqV7YwafJk24Y7bVrimlj4ssyZbYVglSp2/p9/bGv2hQspf9+RkbZS8t573TUdy5Wz1addu6b8/QMAAMDrqGGXgqhhBwDJYM4cqUsXKTzczufObXXtWrb07ry87fJl2yo8cqRnd9PWraUPPpDKlvXe3NKTQ4dsi7arccc990g//CAFBKTM/Z08aeHr0qXusQcftC2x/C4BAACQplHDDgCQfrRtK/3+u1Shgp0PDbVQ6v/+L+PWtVu82LacDh3qDutKlJBmzZJ+/pmwLjkVLSrNm+cOy376SXr66ZT5v7dli3T77e6wLiBAeu896dtvCesAAAAyGAI7AIDvq1DBtgO2bWvno6OlV16ROndOnS2KvuL4cVtt2Ly5uwlCQIB1fv3rL9tCmVLbXzOyKlVsVV2mTHb+k09sZWNymjPHtny7OiQXKmTB3fPP828KAACQARHYAQDShuBgW0E2eLB77OuvrYPm3r1em1aqiI6WJkyQKlaUvvzSPd6wodWQGzVKypbNe/PLCJo2lT77zH3+tdesAcTNcjql0aMtbHU1ValVS1q3zv59AQAAkCER2AEA0g4/P2nIEFvtlCOHjW3aJNWubdtE06PNmy24eeop6exZG8uTR5o40bq03nabV6eXoXTubOGoS48e0i+/JP32Ll+WHn3UVki6ttg+9JD9u95yy83NFQAAAGkagR0AIO1p3962yJYrZ+fPnLEmFIMHWwiSHly4IL38slSzprRmjXv80UetI2uPHhZgInW98orUu7f9HBkpPfCAtHFj4m/n2DGpSRPpiy/cY2+8YatGWS0JAACQ4fGbPgAgbbr1VmtGcffddj462gKPatWkJUu8O7ebNW+ePb6335aiomysQgV7XJ99JuXP79XpZWgOh3XhvfdeO3/unNS4sdS1q21XPnnyxrexYYM1l3AFsVmzSt99Jw0cSL06AAAASCKwAwCkZblyST/+aCvrAgJsbOdOqzf26KMJC098ycmT0iOPSG3aSAcO2FhgoDRsmG39bdzYq9PDv/z9penTpbp17XxYmDRtmjUEKVjQtmi//rq0YoUUEeF53e+/l0JCpIMH7XzRotKqVdKDD6buYwAAAIBP88nAbtq0aXryySdVu3ZtBQYGyuFw6LPYhZ7/Y+3atbr33nuVL18+BQYGqnz58ho0aJAuXbqU6Pv+448/1KZNG+XOnVvZs2fX7bffrunTp9/EowEApChXXbv166X69d3jn39uTRqmTHHXB/NVTqfNt1IlC4JcmjWTtm618Ccw0HvzQ1zZskk//WQBa/bs7nGn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hgzR0KFDtWTJEjVu3NgLMwZwsxL7vD948KBuu+02FSxYUIsWLVLx4sU9rhcZGUlgD/i4m/kdP7Y+ffroo48+0jvvvKO+ffum5JSBeLElFkCGdf/998d5I5ekRo0aqUmTJjpz5oy2bNkS5/ju3bs1YMAAvfLKK6pRo0ZqTBVAMkjqcx5A2pXY5/2bb76p8PBwjR8/Pk5YJ7G6FkgLkuP9/vLly/ryyy+VOXNmde3aNaWmClwX7zgAEI9MmTJJivuLeXR0tB577DGVKFFCgwYN0urVq70xPQDJ7FrPecm+kf/999/l7++vihUrqnnz5jf8Vh6A7/vv897pdOrbb79V3rx51bRpU/35559atmyZoqOjVb16dTVt2lR+fqx3ANKy673fxzZz5kyFhobqwQcfVP78+VNjakAcBHYA8B8HDhzQokWLVKhQIVWpUsXj2JgxY/Tbb79p5cqVfGAH0onrPecladCgQR7nCxcurKlTp6pFixapNUUAySy+5/3evXt15swZ1alTR//73//ilLqoUaOGfvzxRxUtWtQbUwZwk270fh/bpEmTJEk9e/ZMjakB8eIrIgCIJSIiQl27dtWVK1c0evRo+fv7xxzbuXOnXn/9dT333HOqX7++F2cJILlc7zlfvXp1TZ06Vfv27dOlS5e0a9cuDRs2TGfPnlW7du20adMmL84cQFJd63l/4sQJSdL69es1bdo0TZkyRWfOnInpGLthwwY9+OCD3pw6gCS63vv9f+3du1dLlixR8eLF+XIOXsUKOwD4V3R0tB5//HEtX75cvXr18qhXER0dre7du6tIkSIaPny4F2cJILlc7zkvKaZLpEvZsmX1+uuvq2DBgnriiSc0fPhwfffdd6k4YwA360bv9ZIUFRWlYcOGqXv37pKk3Llz65NPPtHmzZu1du1arVy5UiEhId6YPoAkuNH7/X9NnjxZTqdTjz32GNvg4VX87wMAWd2aXr16adq0aerSpUucbTAffPCB1qxZo4kTJypbtmxemiWA5HKj5/z1PProowoICNCqVatScIYAktuNnvfBwcExP7dr1y7O9du2bStJWrduXcpOFECySez7fXR0tD777DP5+fnp8ccfT6VZAvEjsAOQ4UVHR6tHjx6aPHmyHn744Zg36dg2btwop9OpJk2ayOFwxJyaNGkiSZowYYIcDkecFTkAfE9CnvPXkzlzZuXMmVMXL15MwVkCSE4Jed6XLVs2Zptcrly54tyGa+zSpUspPV0AySAp7/fz58/XoUOH1KJFi3g7RQOpiS2xADK06Oho9ezZU1OmTFHHjh31xRdfxFvT4s4774y3m9TRo0c1d+5cVaxYUQ0bNlSNGjVSY9oAkiihz/nr2bVrl0JDQ1WtWrUUmiWA5JTQ531gYKAaNGigFStW6K+//oqz7fWvv/6SJJUsWTI1pg3gJiT1/Z5mE/AlDqfT6fT2JADAG1zfun322Wfq0KGDpk+ffsMW7/+1dOlSNWnSRE8++WSittQBSH2Jec6fO3dOe/fuVdWqVT3GQ0NDde+992rFihUaNWqU+vXrlxpTB5BEiX2v/+qrr9S5c2c1a9ZMP//8c0xH+B07dqhWrVry9/fX/v37lTt37tR6CAASKam/4588eVK33HKLgoODdfjwYWXOnDkVZgtcGyvsAGRYb7zxhj777DPlyJFD5cuXj7eZRPv27VW9evXUnxyAZJeY5/zp06dVrVo11a5dW1WqVFGBAgV0+PBhzZs3T6dPn1aLFi30wgsveOFRAEiMxL7Xd+rUSTNnztSMGTNUrVo1tWrVSmFhYfr+++91+fJlff7554R1gI9L6u/4n3/+uSIiItStWzfCOvgEAjsAGda+ffskSefPn9eIESPivUzJkiUJ7IB0IjHP+Tx58ujpp5/WmjVrNGfOHJ09e1bZs2dXlSpV1KVLF/Xs2TPRW2kBpL7Evtc7HA599dVXatCggSZNmqQJEybEbJV99dVXdeedd6bSzAEkVVJ/x2c7LHwNW2IBAAAAAAAAH0KXWAAAAAAAAMCHENgBAAAAAAAAPoTADgAAAAAAAPAhBHYAAAAAAACADyGwAwAAAAAAAHwIgR0AAAAAAADgQwjsAAAAAAAAAB9CYAcgw3E4HKpYsaK3pwEAAAAAQLwI7AAAAAAAAAAfQmAHAAAAAAAA+BACOwAZ3pEjRzR48GDVq1dPBQoUUGBgoEqWLKnevXvrxIkTcS7fvXt3ORwO7du3T2PHjlWlSpWUJUsWlShRQkOHDlV0dLQXHgUAAAAAIL0I8PYEAMDbli9frnfeeUfNmjVT3bp1lSlTJm3YsEHjxo3TggULtH79egUHB8e53ssvv6ylS5fqnnvuUcuWLTVr1iwNGTJEV69e1YgRI7zwSAAAAAAA6YHD6XQ6vT0JAEhNDodDFSpU0I4dOyRJJ06cULZs2ZQjRw6Py33++ed69NFHNXz4cL322msx4927d9fUqVNVqlQprVq1SoULF5YknTp1SuXKlVNUVJROnTqlzJkzp96DAgAAAACkG2yJBZDhFShQIE5YJ0ldu3ZVUFCQFi1aFO/1Bg4cGBPWSVK+fPl077336ty5c/r7779TbL4AAAAAgPSNwA4AJM2cOVOtWrVS/vz5FRAQIIfDIT8/P4WHh+vIkSPxXqdmzZpxxooWLSpJOnv2bEpOFwAAAACQjlHDDkCG98477+ill15S/vz51bJlSxUtWlRZs2aVJI0ZM0ZXrlyJ93rx1bULCLCX1aioqJSbMAAAAAAgXSOwA5ChRUZGatiwYSpSpIg2btyo/PnzxxxzOp0aPXq0F2cHAAAAAMiI2BILIEM7deqUwsLCVK9ePY+wTpLWrVunS5cueWlmAAAAAICMisAOQIZWoEABZc2aVevXr9fFixdjxkNDQ9WnTx8vzgwAAAAAkFER2AHI0Pz8/NS7d2/t27dP1apVU9++fdWzZ0/ddttt8vPzU5EiRbw9RQAAAABABkNgByBDcTWDyJw5c8zYyJEjNWLECDkcDo0dO1a//PKLOnXqpIULFypTpkzemioAAAAAIINyOJ1Op7cnAQCp5dixYypcuLCaNGmiX3/91dvTAQAAAAAgDlbYAchQZs+eLUmqW7eul2cCAAAAAED8WGEHIEN48803tXXrVn377bfKkiWLtm7dqpIlS3p7WgAAAAAAxEFgByBDyJ07t6KiolS/fn0NHz5cderU8faUAAAAAACIF4EdAAAAAAAA4EOoYQcAAAAAAAD4EAI7AAAAAAAAwIcQ2AEAAAAAAAA+hMAOQLpw+PBhjRkzRi1btlTx4sWVOXNmFSpUSA888IDWrl0b73XCw8PVt29flShRQoGBgSpRooT69u2r8PDwOJfduHGjBg4cqHr16qlAgQIKDAxU6dKl1bt3bx0+fDjO5Z1Op15++WU1btxYRYoUUZYsWVSwYEE1aNBAkyZNUkRERLL/HQAAAAAA0geaTgBIF/r376+33npLZcqU0Z133qkCBQpo165dmjVrlpxOp7766is99NBDMZe/cOGCQkJCtHHjRrVo0UI1a9bUpk2bNH/+fFWvXl0rV65U9uzZYy5fr149/f7776pTp47q1q2rwMBArV27VitWrFC+fPm0YsUKVaxYMebykZGRypEjh2rXrq1KlSopf/78Cg0N1fz587Vv3z61atVKc+fOlZ8f35sAAAAAADwR2AFIF2bOnKn8+fOrUaNGHuMrVqxQs2bNlDNnTh05ckSBgYGSpMGDB+uNN97QK6+8orfeeivm8q7xQYMGaejQoTHjH330kVq3bq0yZcp43P5bb72l/v37q02bNvr55589jl2+fFlZsmTxGIuMjFTLli21ZMkS/fTTT7r77ruT5fEDAAAAANIPAjsA6V6rVq20cOFC/fHHH6pdu7acTqeKFi2q8PBwHTt2zGMl3eXLl1WkSBFly5ZNBw8elMPhuO5tR0VFKSgoSA6HQ+fPn0/QfD744AM999xzGjNmjJ577rmbemwAAAAAgPSHvVgA0r1MmTJJkgICAiRJu3bt0pEjR9SwYUOPsE6SsmTJojvuuEOHDx/W7t27b3jbDodD/v7+Mbd9I9HR0Zo/f74k6bbbbkvMwwAAAAAAZBAJ+4QJAGnUgQMHtGjRIhUqVEhVqlSRZIGdJJUrVy7e67jGd+3adc3LuMyYMUPnzp1Thw4drnmZIUOGSJJOnTqlxYsXa8eOHerevbuaNWuW2IcDAAAAAMgACOwApFsRERHq2rWrrly5otGjR8vf31+SFBYWJkkKDg6O93pBQUEel7uWgwcP6tlnn1XWrFk1bNiwa14udi08h8Ohl156SSNHjkzUYwEAAAAAZBxsiQWQLkVHR+vxxx/X8uXL1atXL3Xt2jVZb//MmTNq06aNTpw4oU8++UQVKlS45mWdTqeioqJ08OBBjR07VhMnTlTjxo0VHh6erHMCAAAAAKQPBHYA0h2n06levXpp2rRp6tKli8aPH+9x3LWy7lor6FxB2rVW4IWGhqp58+batm2bxo0bpy5dutxwTn5+fipatKieeuopffLJJ1q1apVGjBiRmIcFAAAAAMggCOwApCvR0dHq0aOHJk+erIcfflifffaZ/Pw8X+pi16iLz/Vq3J05c0bNmjXThg0b9NFHH+nJJ59M9BxbtmwpSVq6dGmirwsAAAAASP8I7ACkG9HR0erZs6emTJmijh076osvvoipWxdbuXLlVKRIEa1atUoXLlzwOHb58mUtX75cRYoUUdmyZT2OnTlzRs2bN9eGDRv04Ycfqnfv3kma55EjRyQpwZ1lAQAAAAAZC4EdgHTBtbJuypQp6tChg6ZNmxZvWCdZ44eePXvq/PnzeuONNzyOjRw5UqGhoerZs6ccDkfMeOyVde+//76eeeaZ685nx44dOnHiRJzxixcvqm/fvpKk1q1bJ/ZhAgAAAAAyAIfT6XR6exIAcLOGDBmioUOHKkeOHHruuefiXb3Wvn17Va9eXZJ04cIFhYSEaOPGjWrRooVq1aqlTZs2ad68eapevbpWrlyp7Nmzx1y3cePGWrZsmSpWrKiOHTvGO4fnn39euXLlkiSNGTNG/fr1U+PGjVW6dGkFBwfr8OHDmjdvnk6fPq2GDRtq4cKFypYtW7L/XQAAAAAA0jYCOwDpQvfu3TV16tTrXmbKlCnq3r17zPmwsDANHTpUM2bM0LFjx1SoUCE9+OCDGjx4cJyGEyVLltT+/fuve/t79+5VyZIlJUlbt27V2LFjtXLlSh06dEjnzp1TcHCwbrvtNnXq1Ek9e/ZkSywAAAAAIF4EdgAAAAAAAIAPoYYdAAAAAAAA4EMI7AAAAAAAAAAfQmAHAAAAAAAA+BACOwAAAAAAAMCHENgBAAAAAAAAPoTADgAAAAAAAPAhBHYAAAAAAACADyGwAwAAAAAAAHwIgR0AAAAAAADgQwjsAAAAAAAAAB9CYAcAAAAAAAD4EAI7AAAAAAAAwIf8P3P4Kr0a26HSAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "omsa.run(project_name=project_name, catalogs=catalog_name, model_name=model_name,\n", + " vocabs=[\"general\",\"standard_names\"], key_variable=key, alpha=20, ndatasets=2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The first image shows a time series comparison for station \"edu_usf_marine_comps_c10\" of temperature values between the data and the model. \n", + "\n", + "The second image shows a map of the Tampa Bay region with a red outline of the approximate boundary of the numerical model along with a black dot for the data location and the number \"0\" labeling it." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.10.8 ('omsa')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.8" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "393aad9b5b2237e40fb0b42a69b694739ba0baf65a287986ba8256fa5298c468" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/index.rst b/docs/index.rst index 4e99d29..7d98866 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -10,30 +10,46 @@ Installation ------------ To install from conda-forge: + >>> conda install -c conda-forge ocean-model-skill-assessor To install from PyPI: + >>> pip install cf-pandas .. toctree:: :maxdepth: 3 + :hidden: + :caption: User Guide - demo_cli.md - demo_erddap_cli.md - cli.md - demo.md - create_vocabs_wrapper + demo.ipynb + add_vocab.md + examples/index.rst api - GitHub repository +.. toctree:: + :maxdepth: 3 + :hidden: + :caption: User Guide: CLI + + demo_cli.ipynb + cli.md + +.. toctree:: + :maxdepth: 3 + :hidden: + :caption: For contributors + + developer.md + GitHub repository -Indices and tables -================== +.. Indices and tables +.. ================== -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` +.. * :ref:`genindex` +.. * :ref:`modindex` +.. * :ref:`search` -.. _reStructuredText: https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html +.. .. _reStructuredText: https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html diff --git a/docs/create_vocabs.html b/docs/vocab_widget.html similarity index 55% rename from docs/create_vocabs.html rename to docs/vocab_widget.html index 560275f..ab43930 100644 --- a/docs/create_vocabs.html +++ b/docs/vocab_widget.html @@ -3,7 +3,7 @@ -create_vocabs @@ -14737,12 +14721,12 @@

CF Standard Names + @@ -14757,12 +14741,12 @@

CF Standard Names + @@ -14788,177 +14772,6 @@

CF Standard Names - - - @@ -14968,7 +14781,7 @@

Combine vocabularies -{"state": {"04afc2c01b454620bc349b87e9393144": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "063581d0e65c4cf9b5c590735965cd34": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "095e31ba72854f6796b0aa270d3373e4": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "0c00d271116f4e54820186c795a3a339": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextStyleModel", "state": {"description_width": "", "font_size": null, "text_color": null}}, "1305a0ef6daa41ea95f7a85b0c24e7da": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextStyleModel", "state": {"description_width": "", "font_size": null, "text_color": null}}, "1ec15ed8df21422ba379413c551ad2cb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "211553aa2b6b42f89162884cd296f2ff": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", "state": {"_dom_classes": ["widget-interact"], "children": ["IPY_MODEL_d5efc2e4c35449d1933afd7e0218d542", "IPY_MODEL_2c74709a136e43dd83689005a4031dc9", "IPY_MODEL_7253849b5b1d46b2be5266556578c604", "IPY_MODEL_b8cd1eefdeb74a2c9cd83b851d7182e8"], "layout": "IPY_MODEL_c1241afeed47433e8a1690f2ed23e6b7"}}, "25797b31158e45eabc008ee9c0e1e237": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "26e21c4daa484ff883ea8472a50004f2": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ButtonModel", "state": {"description": "Press to save", "layout": "IPY_MODEL_04afc2c01b454620bc349b87e9393144", "style": "IPY_MODEL_96cb5595f98d45128b55676270c0baed", "tooltip": null}}, "2ab6e8895dbe4130bc0252f37be0c680": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "2c74709a136e43dd83689005a4031dc9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextModel", "state": {"description": "include", "layout": "IPY_MODEL_b5934906097e46a5bd19837dfe66e4e8", "style": "IPY_MODEL_3e8c370fca6d4ac2b58bdf8c71f0df57", "value": "tem"}}, "32379cd9f90944798ddee856a106c4e4": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["acoustic_signal_roundtrip_travel_time_in_sea_water", "aerodynamic_particle_diameter", "aerodynamic_resistance", "age_of_sea_ice", "age_of_stratospheric_air", "age_of_surface_snow", "aggregate_quality_flag", "air_density", "air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", "air_pressure", "air_pressure_anomaly", "air_pressure_at_cloud_base", "air_pressure_at_cloud_top", "air_pressure_at_convective_cloud_base", "air_pressure_at_convective_cloud_top", "air_pressure_at_freezing_level", "air_pressure_at_mean_sea_level", "air_pressure_at_top_of_atmosphere_model", "air_pseudo_equivalent_potential_temperature", "air_pseudo_equivalent_temperature", "air_temperature", "air_temperature_anomaly", "air_temperature_at_cloud_top", "air_temperature_at_effective_cloud_top_defined_by_infrared_radiation", "air_temperature_lapse_rate", "air_temperature_threshold", "altimeter_range", "altimeter_range_correction_due_to_dry_troposphere", "altimeter_range_correction_due_to_ionosphere", "altimeter_range_correction_due_to_wet_troposphere", "altitude", "altitude_at_top_of_atmosphere_model", "altitude_at_top_of_dry_convection", "amplitude_of_global_average_sea_level_change", "angle_of_emergence", "angle_of_incidence", "angle_of_rotation_from_east_to_x", "angle_of_rotation_from_east_to_y", "angle_of_rotation_from_solar_azimuth_to_platform_azimuth", "angstrom_exponent_of_ambient_aerosol_in_air", "apparent_air_temperature", "apparent_oxygen_utilization", "area_fraction", "area_fraction_below_surface", "area_fraction_of_day_defined_by_solar_zenith_angle", "area_fraction_of_night_defined_by_solar_zenith_angle", "area_fraction_of_twilight_defined_by_solar_zenith_angle", "area_type", "asymmetry_factor_of_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_absorption_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_boundary_layer_thickness", "atmosphere_convective_available_potential_energy", "atmosphere_convective_available_potential_energy_wrt_surface", "atmosphere_convective_inhibition", "atmosphere_convective_inhibition_wrt_surface", "atmosphere_downdraft_convective_mass_flux", "atmosphere_dry_energy_content", "atmosphere_dry_static_energy_content", "atmosphere_eastward_stress_due_to_gravity_wave_drag", "atmosphere_energy_content", "atmosphere_enthalpy_content", "atmosphere_heat_diffusivity", "atmosphere_helicity", "atmosphere_horizontal_streamfunction", "atmosphere_horizontal_velocity_potential", "atmosphere_hybrid_height_coordinate", "atmosphere_hybrid_sigma_pressure_coordinate", "atmosphere_kinetic_energy_content", "atmosphere_layer_thickness_expressed_as_geopotential_height_difference", "atmosphere_level_of_free_convection", "atmosphere_level_of_free_convection_wrt_surface", "atmosphere_lifting_condensation_level", "atmosphere_lifting_condensation_level_wrt_surface", "atmosphere_ln_pressure_coordinate", "atmosphere_mass_content_of_acetic_acid", "atmosphere_mass_content_of_aceto_nitrile", "atmosphere_mass_content_of_alkanes", "atmosphere_mass_content_of_alkenes", "atmosphere_mass_content_of_alpha_hexachlorocyclohexane", "atmosphere_mass_content_of_alpha_pinene", "atmosphere_mass_content_of_ammonia", "atmosphere_mass_content_of_ammonium_dry_aerosol_particles", "atmosphere_mass_content_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_aromatic_compounds", "atmosphere_mass_content_of_atomic_bromine", "atmosphere_mass_content_of_atomic_chlorine", "atmosphere_mass_content_of_atomic_nitrogen", "atmosphere_mass_content_of_benzene", "atmosphere_mass_content_of_beta_pinene", "atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_bromine_chloride", "atmosphere_mass_content_of_bromine_monoxide", "atmosphere_mass_content_of_bromine_nitrate", "atmosphere_mass_content_of_brox_expressed_as_bromine", "atmosphere_mass_content_of_butane", "atmosphere_mass_content_of_carbon_dioxide", "atmosphere_mass_content_of_carbon_monoxide", "atmosphere_mass_content_of_carbon_tetrachloride", "atmosphere_mass_content_of_cfc11", "atmosphere_mass_content_of_cfc113", "atmosphere_mass_content_of_cfc113a", "atmosphere_mass_content_of_cfc114", "atmosphere_mass_content_of_cfc115", "atmosphere_mass_content_of_cfc12", "atmosphere_mass_content_of_chlorine_dioxide", "atmosphere_mass_content_of_chlorine_monoxide", "atmosphere_mass_content_of_chlorine_nitrate", "atmosphere_mass_content_of_cloud_condensed_water", "atmosphere_mass_content_of_cloud_ice", "atmosphere_mass_content_of_cloud_liquid_water", "atmosphere_mass_content_of_clox_expressed_as_chlorine", "atmosphere_mass_content_of_convective_cloud_condensed_water", "atmosphere_mass_content_of_convective_cloud_ice", "atmosphere_mass_content_of_convective_cloud_liquid_water", "atmosphere_mass_content_of_dichlorine_peroxide", "atmosphere_mass_content_of_dimethyl_sulfide", "atmosphere_mass_content_of_dinitrogen_pentoxide", "atmosphere_mass_content_of_dust_dry_aerosol_particles", "atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles", "atmosphere_mass_content_of_ethane", "atmosphere_mass_content_of_ethanol", "atmosphere_mass_content_of_ethene", "atmosphere_mass_content_of_ethyne", "atmosphere_mass_content_of_formaldehyde", "atmosphere_mass_content_of_formic_acid", "atmosphere_mass_content_of_gaseous_divalent_mercury", "atmosphere_mass_content_of_gaseous_elemental_mercury", "atmosphere_mass_content_of_graupel", "atmosphere_mass_content_of_graupel_and_hail", "atmosphere_mass_content_of_hail", "atmosphere_mass_content_of_halon1202", "atmosphere_mass_content_of_halon1211", "atmosphere_mass_content_of_halon1301", "atmosphere_mass_content_of_halon2402", "atmosphere_mass_content_of_hcc140a", "atmosphere_mass_content_of_hcfc141b", "atmosphere_mass_content_of_hcfc142b", "atmosphere_mass_content_of_hcfc22", "atmosphere_mass_content_of_hexachlorobiphenyl", "atmosphere_mass_content_of_hox_expressed_as_hydrogen", "atmosphere_mass_content_of_hydrogen_bromide", "atmosphere_mass_content_of_hydrogen_chloride", "atmosphere_mass_content_of_hydrogen_cyanide", "atmosphere_mass_content_of_hydrogen_peroxide", "atmosphere_mass_content_of_hydroperoxyl_radical", "atmosphere_mass_content_of_hydroxyl_radical", "atmosphere_mass_content_of_hypobromous_acid", "atmosphere_mass_content_of_hypochlorous_acid", "atmosphere_mass_content_of_inorganic_bromine", "atmosphere_mass_content_of_inorganic_chlorine", "atmosphere_mass_content_of_isoprene", "atmosphere_mass_content_of_limonene", "atmosphere_mass_content_of_liquid_precipitation", "atmosphere_mass_content_of_mercury_dry_aerosol_particles", "atmosphere_mass_content_of_methane", "atmosphere_mass_content_of_methanol", "atmosphere_mass_content_of_methyl_bromide", "atmosphere_mass_content_of_methyl_chloride", "atmosphere_mass_content_of_methyl_hydroperoxide", "atmosphere_mass_content_of_methyl_peroxy_radical", "atmosphere_mass_content_of_molecular_hydrogen", "atmosphere_mass_content_of_nitrate_dry_aerosol_particles", "atmosphere_mass_content_of_nitrate_radical", "atmosphere_mass_content_of_nitric_acid", "atmosphere_mass_content_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_mass_content_of_nitrogen_monoxide", "atmosphere_mass_content_of_nitrous_acid", "atmosphere_mass_content_of_nitrous_oxide", "atmosphere_mass_content_of_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_nox_expressed_as_nitrogen", "atmosphere_mass_content_of_noy_expressed_as_nitrogen", "atmosphere_mass_content_of_oxygenated_hydrocarbons", "atmosphere_mass_content_of_ozone", "atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_peroxyacetyl_nitrate", "atmosphere_mass_content_of_peroxynitric_acid", "atmosphere_mass_content_of_peroxy_radicals", "atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_propane", "atmosphere_mass_content_of_propene", "atmosphere_mass_content_of_radon", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_expressed_as_cations", "atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_snow", "atmosphere_mass_content_of_sulfate", "atmosphere_mass_content_of_sulfate_ambient_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur", "atmosphere_mass_content_of_sulfur_dioxide", "atmosphere_mass_content_of_terpenes", "atmosphere_mass_content_of_toluene", "atmosphere_mass_content_of_volcanic_ash", "atmosphere_mass_content_of_water", "atmosphere_mass_content_of_water_in_ambient_aerosol_particles", "atmosphere_mass_content_of_water_vapor", "atmosphere_mass_content_of_xylene", "atmosphere_mass_of_air_per_unit_area", "atmosphere_mass_of_carbon_dioxide", "atmosphere_mass_per_unit_area", "atmosphere_mole_content_of_carbon_monoxide", "atmosphere_mole_content_of_methane", "atmosphere_mole_content_of_nitrogen_dioxide", "atmosphere_mole_content_of_ozone", "atmosphere_mole_content_of_water_vapor", "atmosphere_moles_of_acetic_acid", "atmosphere_moles_of_aceto_nitrile", "atmosphere_moles_of_alpha_hexachlorocyclohexane", "atmosphere_moles_of_alpha_pinene", "atmosphere_moles_of_ammonia", "atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_atomic_bromine", "atmosphere_moles_of_atomic_chlorine", "atmosphere_moles_of_atomic_nitrogen", "atmosphere_moles_of_benzene", "atmosphere_moles_of_beta_pinene", "atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_bromine_chloride", "atmosphere_moles_of_bromine_monoxide", "atmosphere_moles_of_bromine_nitrate", "atmosphere_moles_of_brox_expressed_as_bromine", "atmosphere_moles_of_butane", "atmosphere_moles_of_carbon_dioxide", "atmosphere_moles_of_carbon_monoxide", "atmosphere_moles_of_carbon_tetrachloride", "atmosphere_moles_of_cfc11", "atmosphere_moles_of_cfc113", "atmosphere_moles_of_cfc113a", "atmosphere_moles_of_cfc114", "atmosphere_moles_of_cfc115", "atmosphere_moles_of_cfc12", "atmosphere_moles_of_chlorine_dioxide", "atmosphere_moles_of_chlorine_monoxide", "atmosphere_moles_of_chlorine_nitrate", "atmosphere_moles_of_clox_expressed_as_chlorine", "atmosphere_moles_of_dichlorine_peroxide", "atmosphere_moles_of_dimethyl_sulfide", "atmosphere_moles_of_dinitrogen_pentoxide", "atmosphere_moles_of_ethane", "atmosphere_moles_of_ethanol", "atmosphere_moles_of_ethene", "atmosphere_moles_of_ethyne", "atmosphere_moles_of_formaldehyde", "atmosphere_moles_of_formic_acid", "atmosphere_moles_of_gaseous_divalent_mercury", "atmosphere_moles_of_gaseous_elemental_mercury", "atmosphere_moles_of_halon1202", "atmosphere_moles_of_halon1211", "atmosphere_moles_of_halon1301", "atmosphere_moles_of_halon2402", "atmosphere_moles_of_hcc140a", "atmosphere_moles_of_hcfc141b", "atmosphere_moles_of_hcfc142b", "atmosphere_moles_of_hcfc22", "atmosphere_moles_of_hexachlorobiphenyl", "atmosphere_moles_of_hox_expressed_as_hydrogen", "atmosphere_moles_of_hydrogen_bromide", "atmosphere_moles_of_hydrogen_chloride", "atmosphere_moles_of_hydrogen_cyanide", "atmosphere_moles_of_hydrogen_peroxide", "atmosphere_moles_of_hydroperoxyl_radical", "atmosphere_moles_of_hydroxyl_radical", "atmosphere_moles_of_hypobromous_acid", "atmosphere_moles_of_hypochlorous_acid", "atmosphere_moles_of_inorganic_bromine", "atmosphere_moles_of_inorganic_chlorine", "atmosphere_moles_of_isoprene", "atmosphere_moles_of_limonene", "atmosphere_moles_of_methane", "atmosphere_moles_of_methanol", "atmosphere_moles_of_methyl_bromide", "atmosphere_moles_of_methyl_chloride", "atmosphere_moles_of_methyl_hydroperoxide", "atmosphere_moles_of_methyl_peroxy_radical", "atmosphere_moles_of_molecular_hydrogen", "atmosphere_moles_of_nitrate_radical", "atmosphere_moles_of_nitric_acid", "atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_moles_of_nitrogen_dioxide", "atmosphere_moles_of_nitrogen_monoxide", "atmosphere_moles_of_nitrous_acid", "atmosphere_moles_of_nitrous_oxide", "atmosphere_moles_of_nmvoc_expressed_as_carbon", "atmosphere_moles_of_nox_expressed_as_nitrogen", "atmosphere_moles_of_noy_expressed_as_nitrogen", "atmosphere_moles_of_ozone", "atmosphere_moles_of_peroxyacetyl_nitrate", "atmosphere_moles_of_peroxynitric_acid", "atmosphere_moles_of_propane", "atmosphere_moles_of_propene", "atmosphere_moles_of_radon", "atmosphere_moles_of_sulfur_dioxide", "atmosphere_moles_of_toluene", "atmosphere_moles_of_water_vapor", "atmosphere_moles_of_xylene", "atmosphere_momentum_diffusivity", "atmosphere_net_rate_of_absorption_of_longwave_energy", "atmosphere_net_rate_of_absorption_of_shortwave_energy", "atmosphere_net_upward_convective_mass_flux", "atmosphere_net_upward_deep_convective_mass_flux", "atmosphere_net_upward_shallow_convective_mass_flux", "atmosphere_northward_stress_due_to_gravity_wave_drag", "atmosphere_number_content_of_aerosol_particles", "atmosphere_number_content_of_cloud_droplets", "atmosphere_number_content_of_ice_crystals", "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_ammonium_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_optical_thickness_due_to_cloud", "atmosphere_optical_thickness_due_to_convective_cloud", "atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_dust_dry_aerosol_particles", "atmosphere_optical_thickness_due_to_nitrate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm10_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm1_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm2p5_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_stratiform_cloud", "atmosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_water_in_ambient_aerosol_particles", "atmosphere_potential_energy_content", "atmosphere_sigma_coordinate", "atmosphere_sleve_coordinate", "atmosphere_stability_k_index", "atmosphere_stability_showalter_index", "atmosphere_stability_total_totals_index", "atmosphere_transformed_eulerian_mean_meridional_overturning_mass_streamfunction", "atmosphere_updraft_convective_mass_flux", "atmosphere_upward_absolute_vorticity", "atmosphere_upward_relative_vorticity", "atmosphere_x_relative_vorticity", "atmosphere_y_relative_vorticity", "attenuated_signal_test_quality_flag", "automated_tropical_cyclone_forecasting_system_storm_identifier", "backscattering_ratio_in_air", "baroclinic_eastward_sea_water_velocity", "baroclinic_northward_sea_water_velocity", "barometric_altitude", "barotropic_eastward_sea_water_velocity", "barotropic_northward_sea_water_velocity", "barotropic_sea_water_x_velocity", "barotropic_sea_water_y_velocity", "basal_downward_heat_flux_in_sea_ice", "baseflow_amount", "beam_consistency_indicator_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "beaufort_wind_force", "bedrock_altitude", "bedrock_altitude_change_due_to_isostatic_adjustment", "biological_taxon_lsid", "biological_taxon_name", "bioluminescent_photon_rate_in_sea_water", "biomass_burning_carbon_flux", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "brunt_vaisala_frequency_in_air", "burned_area", "burned_area_fraction", "canopy_albedo", "canopy_and_surface_water_amount", "canopy_height", "canopy_resistance_to_ozone_dry_deposition", "canopy_snow_amount", "canopy_temperature", "canopy_throughfall_flux", "canopy_water_amount", "carbon_mass_content_of_forestry_and_agricultural_products", "carbon_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_litter_and_soil_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_soil_from_litter", "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", "cell_area", "cell_thickness", "change_in_atmosphere_energy_content_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_energy_content_of_atmosphere_layer_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_land_ice_amount", "change_in_land_ice_mass", "change_over_time_in_amount_of_ice_and_snow_on_land", "change_over_time_in_atmosphere_mass_content_of_water_due_to_advection", "change_over_time_in_canopy_water_amount", "change_over_time_in_groundwater_amount", "change_over_time_in_land_surface_liquid_water_amount", "change_over_time_in_land_water_amount", "change_over_time_in_mass_content_of_water_in_soil", "change_over_time_in_river_water_amount", "change_over_time_in_sea_water_absolute_salinity", "change_over_time_in_sea_water_conservative_temperature", "change_over_time_in_sea_water_density", "change_over_time_in_sea_water_neutral_density", "change_over_time_in_sea_water_potential_density", "change_over_time_in_sea_water_potential_temperature", "change_over_time_in_sea_water_practical_salinity", "change_over_time_in_sea_water_preformed_salinity", "change_over_time_in_sea_water_salinity", "change_over_time_in_sea_water_specific_potential_enthalpy", "change_over_time_in_sea_water_temperature", "change_over_time_in_surface_snow_amount", "change_over_time_in_thermal_energy_content_of_ice_and_snow_on_land", "change_over_time_in_thermal_energy_content_of_vegetation_and_litter_and_soil", "charnock_coefficient_for_surface_roughness_length_for_momentum_in_air", "clear_sky_area_fraction", "climatology_test_quality_flag", "cloud_albedo", "cloud_area_fraction", "cloud_area_fraction_in_atmosphere_layer", "cloud_base_altitude", "cloud_binary_mask", "cloud_ice_mixing_ratio", "cloud_liquid_water_mixing_ratio", "cloud_top_altitude", "colony_forming_unit_number_concentration_of_biological_taxon_in_sea_water", "compressive_strength_of_sea_ice", "concentration_of_colored_dissolved_organic_matter_in_sea_water_expressed_as_equivalent_mass_fraction_of_quinine_sulfate_dihydrate", "convection_time_fraction", "convective_cloud_area_fraction", "convective_cloud_area_fraction_in_atmosphere_layer", "convective_cloud_base_altitude", "convective_cloud_base_height", "convective_cloud_longwave_emissivity", "convective_cloud_top_altitude", "convective_cloud_top_height", "convective_precipitation_amount", "convective_precipitation_flux", "convective_precipitation_rate", "convective_rainfall_amount", "convective_rainfall_flux", "convective_rainfall_rate", "convective_snowfall_amount", "convective_snowfall_flux", "coriolis_parameter", "correction_for_model_negative_specific_humidity", "covariance_over_longitude_of_northward_wind_and_air_temperature", "depth", "depth_at_base_of_unfrozen_ground", "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", "depth_at_shallowest_isotherm_defined_by_soil_temperature", "depth_at_shallowest_local_minimum_in_vertical_profile_of_mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "depth_below_geoid", "depth_below_sea_floor", "depth_of_isosurface_of_sea_water_potential_temperature", "dew_point_depression", "dew_point_temperature", "diameter_of_ambient_aerosol_particles", "difference_between_sea_surface_temperature_and_air_temperature", "difference_of_air_pressure_from_model_reference", "diffuse_downwelling_shortwave_flux_in_air", "diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "dimensionless_exner_function", "direct_downwelling_shortwave_flux_in_air", "direction_of_radial_vector_away_from_instrument", "direction_of_radial_vector_toward_instrument", "direction_of_sea_ice_displacement", "direction_of_sea_ice_velocity", "distance_from_geocenter", "distance_from_sun", "distance_from_tropical_cyclone_center_to_leading_edge_of_displaced_convection", "divergence_of_sea_ice_velocity", "divergence_of_wind", "downward_air_velocity", "downward_dry_static_energy_flux_due_to_diffusion", "downward_eastward_momentum_flux_in_air", "downward_eastward_momentum_flux_in_air_due_to_diffusion", "downward_eastward_stress_at_sea_ice_base", "downward_heat_flux_at_ground_level_in_snow", "downward_heat_flux_at_ground_level_in_soil", "downward_heat_flux_in_air", "downward_heat_flux_in_floating_ice", "downward_heat_flux_in_sea_ice", "downward_heat_flux_in_soil", "downward_liquid_water_mass_flux_into_groundwater", "downward_northward_momentum_flux_in_air", "downward_northward_momentum_flux_in_air_due_to_diffusion", "downward_northward_stress_at_sea_ice_base", "downward_sea_ice_basal_salt_flux", "downward_water_vapor_flux_in_air_due_to_diffusion", "downward_x_stress_at_sea_ice_base", "downward_x_stress_at_sea_water_surface", "downward_x_stress_correction_at_sea_water_surface", "downward_y_stress_at_sea_ice_base", "downward_y_stress_at_sea_water_surface", "downward_y_stress_correction_at_sea_water_surface", "downwelling_longwave_flux_in_air", "downwelling_longwave_flux_in_air_assuming_clear_sky", "downwelling_longwave_radiance_in_air", "downwelling_photon_flux_in_sea_water", "downwelling_photon_flux_per_unit_wavelength_in_sea_water", "downwelling_photon_radiance_in_sea_water", "downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "downwelling_photon_spherical_irradiance_in_sea_water", "downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "downwelling_photosynthetic_photon_flux_in_sea_water", "downwelling_photosynthetic_photon_radiance_in_sea_water", "downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "downwelling_photosynthetic_radiance_in_sea_water", "downwelling_photosynthetic_radiative_flux_in_sea_water", "downwelling_photosynthetic_spherical_irradiance_in_sea_water", "downwelling_radiance_in_sea_water", "downwelling_radiance_per_unit_wavelength_in_air", "downwelling_radiance_per_unit_wavelength_in_sea_water", "downwelling_radiative_flux_in_sea_water", "downwelling_radiative_flux_per_unit_wavelength_in_air", "downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "downwelling_shortwave_flux_in_air", "downwelling_shortwave_flux_in_air_assuming_clear_sky", "downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "downwelling_shortwave_flux_in_sea_water", "downwelling_shortwave_flux_in_sea_water_at_sea_ice_base", "downwelling_shortwave_radiance_in_air", "downwelling_spherical_irradiance_in_sea_water", "downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "dry_atmosphere_mole_fraction_of_carbon_dioxide", "dry_atmosphere_mole_fraction_of_methane", "dry_energy_content_of_atmosphere_layer", "dry_static_energy_content_of_atmosphere_layer", "duration_of_sunshine", "dvorak_tropical_cyclone_current_intensity_number", "dvorak_tropical_number", "dynamic_tropopause_potential_temperature", "eastward_air_velocity_relative_to_sea_water", "eastward_atmosphere_dry_static_energy_transport_across_unit_distance", "eastward_atmosphere_water_transport_across_unit_distance", "eastward_atmosphere_water_vapor_transport_across_unit_distance", "eastward_derivative_of_eastward_wind", "eastward_derivative_of_northward_sea_ice_velocity", "eastward_derivative_of_northward_wind", "eastward_derivative_of_wind_from_direction", "eastward_flood_water_velocity", "eastward_friction_velocity_in_air", "eastward_land_ice_velocity", "eastward_mass_flux_of_air", "eastward_momentum_flux_correction", "eastward_sea_ice_displacement", "eastward_sea_ice_velocity", "eastward_sea_water_velocity", "eastward_sea_water_velocity_assuming_no_tide", "eastward_sea_water_velocity_at_sea_floor", "eastward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "eastward_sea_water_velocity_due_to_tides", "eastward_transformed_eulerian_mean_air_velocity", "eastward_water_vapor_flux_in_air", "eastward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "eastward_wind", "eastward_wind_shear", "effective_radius_of_cloud_condensed_water_particles_at_cloud_top", "effective_radius_of_cloud_liquid_water_particles", "effective_radius_of_cloud_liquid_water_particles_at_liquid_water_cloud_top", "effective_radius_of_convective_cloud_ice_particles", "effective_radius_of_convective_cloud_liquid_water_particles", "effective_radius_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "effective_radius_of_convective_cloud_rain_particles", "effective_radius_of_convective_cloud_snow_particles", "effective_radius_of_stratiform_cloud_graupel_particles", "effective_radius_of_stratiform_cloud_ice_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "effective_radius_of_stratiform_cloud_rain_particles", "effective_radius_of_stratiform_cloud_snow_particles", "electrical_mobility_diameter_of_ambient_aerosol_particles", "enrichment_of_14C_in_carbon_dioxide_in_air_expressed_as_uppercase_delta_14C", "enthalpy_content_of_atmosphere_layer", "equilibrium_line_altitude", "equivalent_pressure_of_atmosphere_ozone_content", "equivalent_reflectivity_factor", "equivalent_thickness_at_stp_of_atmosphere_ozone_content", "ertel_potential_vorticity", "fast_soil_pool_mass_content_of_carbon", "final_air_pressure_of_lifted_parcel", "fire_area", "fire_radiative_power", "fire_temperature", "flat_line_test_quality_flag", "floating_ice_shelf_area", "floating_ice_shelf_area_fraction", "floating_ice_thickness", "flood_water_duration_above_threshold", "flood_water_speed", "flood_water_thickness", "fog_area_fraction", "forecast_period", "forecast_reference_time", "fractional_saturation_of_oxygen_in_sea_water", "fraction_of_surface_downwelling_photosynthetic_radiative_flux_absorbed_by_vegetation", "fraction_of_time_with_sea_ice_area_fraction_above_threshold", "freezing_level_altitude", "freezing_temperature_of_sea_water", "frequency_of_lightning_flashes_per_unit_area", "frozen_water_content_of_soil_layer", "fugacity_of_carbon_dioxide_in_sea_water", "gap_test_quality_flag", "geoid_height_above_reference_ellipsoid", "geopotential", "geopotential_height", "geopotential_height_anomaly", "geopotential_height_at_cloud_top", "geopotential_height_at_volcanic_ash_cloud_top", "geostrophic_eastward_sea_water_velocity", "geostrophic_eastward_wind", "geostrophic_northward_sea_water_velocity", "geostrophic_northward_wind", "global_average_sea_level_change", "global_average_steric_sea_level_change", "global_average_thermosteric_sea_level_change", "graupel_and_hail_fall_amount", "graupel_and_hail_fall_flux", "graupel_fall_amount", "graupel_fall_flux", "grid_latitude", "grid_longitude", "gross_primary_productivity_of_biomass_expressed_as_13C", "gross_primary_productivity_of_biomass_expressed_as_14C", "gross_primary_productivity_of_biomass_expressed_as_carbon", "gross_range_test_quality_flag", "gross_rate_of_decrease_in_area_fraction", "gross_rate_of_increase_in_area_fraction", "grounded_ice_sheet_area", "grounded_ice_sheet_area_fraction", "ground_level_altitude", "growth_limitation_of_calcareous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_diatoms_due_to_solar_irradiance", "growth_limitation_of_diazotrophic_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_miscellaneous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_picophytoplankton_due_to_solar_irradiance", "hail_fall_amount", "hail_fall_flux", "halosteric_change_in_mean_sea_level", "halosteric_change_in_sea_surface_height", "harmonic_period", "heat_flux_correction", "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", "heat_flux_into_sea_water_due_to_newtonian_relaxation", "heat_flux_into_sea_water_due_to_sea_ice_thermodynamics", "heat_flux_into_sea_water_due_to_snow_thermodynamics", "heat_index_of_air_temperature", "height", "height_above_geopotential_datum", "height_above_geopotential_datum_at_top_of_atmosphere_model", "height_above_mean_sea_level", "height_above_reference_ellipsoid", "height_above_sea_floor", "height_at_cloud_top", "height_at_effective_cloud_top_defined_by_infrared_radiation", "high_type_cloud_area_fraction", "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid", "histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid", "horizontal_atmosphere_dry_energy_transport", "horizontal_dry_energy_transport_in_atmosphere_layer", "humidity_mixing_ratio", "ice_cloud_area_fraction", "ice_cloud_area_fraction_in_atmosphere_layer", "ice_volume_in_frozen_ground_in_excess_of_pore_volume_in_unfrozen_ground_expressed_as_fraction_of_frozen_ground_volume", "incoming_water_volume_transport_along_river_channel", "indicative_error_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "institution", "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_salinity_and_sea_water_density", "integral_wrt_depth_of_sea_water_practical_salinity", "integral_wrt_depth_of_sea_water_temperature", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "integral_wrt_height_of_product_of_eastward_wind_and_specific_humidity", "integral_wrt_height_of_product_of_northward_wind_and_specific_humidity", "integral_wrt_time_of_air_temperature_deficit", "integral_wrt_time_of_air_temperature_excess", "integral_wrt_time_of_mole_stomatal_uptake_of_ozone", "integral_wrt_time_of_radioactivity_concentration_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_104Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_110mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_11C_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_136Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_139Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_13N_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_145Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_150Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_153Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_154Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_157Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_158Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_15O_in_air", "integral_wrt_time_of_radioactivity_concentration_of_160Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_161Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162mTb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_163Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_165Dy_in_air", "integral_wrt_time_of_radioactivity_concentration_of_18F_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Hg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207mPb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_208Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_220Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_224Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234mPa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m1Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m2Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244mAm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_246Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_247Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_248Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_24Na_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_251Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_252Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254mEs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_255Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_3H_in_air", "integral_wrt_time_of_radioactivity_concentration_of_41Ar_in_air", "integral_wrt_time_of_radioactivity_concentration_of_54Mn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_58Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_60Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Zn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_73Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_75Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77mGe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_79Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86mRb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_96Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_98Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Tc_in_air", "integral_wrt_time_of_surface_downward_eastward_stress", "integral_wrt_time_of_surface_downward_latent_heat_flux", "integral_wrt_time_of_surface_downward_northward_stress", "integral_wrt_time_of_surface_downward_sensible_heat_flux", "integral_wrt_time_of_surface_downwelling_longwave_flux_in_air", "integral_wrt_time_of_surface_downwelling_shortwave_flux_in_air", "integral_wrt_time_of_surface_net_downward_longwave_flux", "integral_wrt_time_of_surface_net_downward_shortwave_flux", "integral_wrt_time_of_toa_net_downward_shortwave_flux", "integral_wrt_time_of_toa_outgoing_longwave_flux", "iron_growth_limitation_of_calcareous_phytoplankton", "iron_growth_limitation_of_diatoms", "iron_growth_limitation_of_diazotrophic_phytoplankton", "iron_growth_limitation_of_miscellaneous_phytoplankton", "iron_growth_limitation_of_picophytoplankton", "isccp_cloud_area_fraction", "isotope_ratio_of_17O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotope_ratio_of_18O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotropic_longwave_radiance_in_air", "isotropic_radiance_per_unit_wavelength_in_air", "isotropic_shortwave_radiance_in_air", "kinetic_energy_content_of_atmosphere_layer", "kinetic_energy_dissipation_in_atmosphere_boundary_layer", "lagrangian_tendency_of_air_pressure", "lagrangian_tendency_of_atmosphere_sigma_coordinate", "land_area_fraction", "land_binary_mask", "land_cover_lccs", "land_ice_area_fraction", "land_ice_basal_drag", "land_ice_basal_melt_rate", "land_ice_basal_specific_mass_balance_flux", "land_ice_basal_temperature", "land_ice_basal_upward_velocity", "land_ice_basal_x_velocity", "land_ice_basal_y_velocity", "land_ice_calving_rate", "land_ice_lwe_basal_melt_rate", "land_ice_lwe_calving_rate", "land_ice_lwe_surface_specific_mass_balance_rate", "land_ice_mass", "land_ice_mass_not_displacing_sea_water", "land_ice_runoff_flux", "land_ice_sigma_coordinate", "land_ice_specific_mass_flux_due_to_calving", "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", "land_ice_surface_melt_flux", "land_ice_surface_specific_mass_balance_flux", "land_ice_surface_specific_mass_balance_rate", "land_ice_surface_upward_velocity", "land_ice_surface_x_velocity", "land_ice_surface_y_velocity", "land_ice_temperature", "land_ice_thickness", "land_ice_vertical_mean_x_velocity", "land_ice_vertical_mean_y_velocity", "land_ice_x_velocity", "land_ice_y_velocity", "land_surface_liquid_water_amount", "land_water_amount", "latitude", "leaf_area_index", "leaf_mass_content_of_carbon", "leaf_mass_content_of_nitrogen", "lightning_potential_index", "lightning_radiant_energy", "liquid_water_cloud_area_fraction", "liquid_water_cloud_area_fraction_in_atmosphere_layer", "liquid_water_content_of_permafrost_layer", "liquid_water_content_of_soil_layer", "liquid_water_content_of_surface_snow", "liquid_water_mass_flux_into_soil_due_to_surface_snow_melt", "litter_mass_content_of_13C", "litter_mass_content_of_14C", "litter_mass_content_of_carbon", "litter_mass_content_of_nitrogen", "location_test_quality_flag", "log10_size_interval_based_number_size_distribution_of_cloud_condensation_nuclei_at_stp_in_air", "longitude", "low_type_cloud_area_fraction", "lwe_convective_precipitation_rate", "lwe_convective_snowfall_rate", "lwe_precipitation_rate", "lwe_snowfall_rate", "lwe_stratiform_precipitation_rate", "lwe_stratiform_snowfall_rate", "lwe_thickness_of_atmosphere_mass_content_of_water_vapor", "lwe_thickness_of_canopy_water_amount", "lwe_thickness_of_convective_precipitation_amount", "lwe_thickness_of_convective_snowfall_amount", "lwe_thickness_of_frozen_water_content_of_soil_layer", "lwe_thickness_of_moisture_content_of_soil_layer", "lwe_thickness_of_precipitation_amount", "lwe_thickness_of_snowfall_amount", "lwe_thickness_of_soil_moisture_content", "lwe_thickness_of_stratiform_precipitation_amount", "lwe_thickness_of_stratiform_snowfall_amount", "lwe_thickness_of_surface_snow_amount", "lwe_thickness_of_water_evaporation_amount", "lwe_water_evaporation_rate", "magnitude_of_air_velocity_relative_to_sea_water", "magnitude_of_derivative_of_position_wrt_model_level_number", "magnitude_of_derivative_of_position_wrt_x_coordinate_index", "magnitude_of_derivative_of_position_wrt_y_coordinate_index", "magnitude_of_heat_flux_in_sea_water_due_to_advection", "magnitude_of_sea_ice_displacement", "magnitude_of_surface_downward_stress", "mass_concentration_of_19_butanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_19_hexanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_acetic_acid_in_air", "mass_concentration_of_aceto_nitrile_in_air", "mass_concentration_of_adenosine_triphosphate_in_sea_water", "mass_concentration_of_alkanes_in_air", "mass_concentration_of_alkenes_in_air", "mass_concentration_of_alpha_carotene_in_sea_water", "mass_concentration_of_alpha_hexachlorocyclohexane_in_air", "mass_concentration_of_alpha_pinene_in_air", "mass_concentration_of_ammonia_in_air", "mass_concentration_of_ammonium_dry_aerosol_particles_in_air", "mass_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_aromatic_compounds_in_air", "mass_concentration_of_atomic_bromine_in_air", "mass_concentration_of_atomic_chlorine_in_air", "mass_concentration_of_atomic_nitrogen_in_air", "mass_concentration_of_benzene_in_air", "mass_concentration_of_beta_carotene_in_sea_water", "mass_concentration_of_beta_pinene_in_air", "mass_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_biomass_burning_dry_aerosol_particles_in_air", "mass_concentration_of_bromine_chloride_in_air", "mass_concentration_of_bromine_monoxide_in_air", "mass_concentration_of_bromine_nitrate_in_air", "mass_concentration_of_brox_expressed_as_bromine_in_air", "mass_concentration_of_butane_in_air", "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_carbon_dioxide_in_air", "mass_concentration_of_carbon_monoxide_in_air", "mass_concentration_of_carbon_tetrachloride_in_air", "mass_concentration_of_carotene_in_sea_water", "mass_concentration_of_cfc113a_in_air", "mass_concentration_of_cfc113_in_air", "mass_concentration_of_cfc114_in_air", "mass_concentration_of_cfc115_in_air", "mass_concentration_of_cfc11_in_air", "mass_concentration_of_cfc12_in_air", "mass_concentration_of_chlorine_dioxide_in_air", "mass_concentration_of_chlorine_monoxide_in_air", "mass_concentration_of_chlorine_nitrate_in_air", "mass_concentration_of_chlorophyll_a_in_sea_water", "mass_concentration_of_chlorophyll_b_in_sea_water", "mass_concentration_of_chlorophyll_c1_and_chlorophyll_c2_in_sea_water", "mass_concentration_of_chlorophyll_c3_in_sea_water", "mass_concentration_of_chlorophyll_c_in_sea_water", "mass_concentration_of_chlorophyllide_a_in_sea_water", "mass_concentration_of_chlorophyll_in_sea_water", "mass_concentration_of_cloud_liquid_water_in_air", "mass_concentration_of_clox_expressed_as_chlorine_in_air", "mass_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "mass_concentration_of_condensed_water_in_soil", "mass_concentration_of_diadinoxanthin_in_sea_water", "mass_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_dichlorine_peroxide_in_air", "mass_concentration_of_dimethyl_sulfide_in_air", "mass_concentration_of_dinitrogen_pentoxide_in_air", "mass_concentration_of_divinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_drizzle_in_air", "mass_concentration_of_dust_dry_aerosol_particles_in_air", "mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_concentration_of_ethane_in_air", "mass_concentration_of_ethanol_in_air", "mass_concentration_of_ethene_in_air", "mass_concentration_of_ethyne_in_air", "mass_concentration_of_flagellates_expressed_as_carbon_in_sea_water", "mass_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_formaldehyde_in_air", "mass_concentration_of_formic_acid_in_air", "mass_concentration_of_fucoxanthin_in_sea_water", "mass_concentration_of_gaseous_divalent_mercury_in_air", "mass_concentration_of_gaseous_elemental_mercury_in_air", "mass_concentration_of_halon1202_in_air", "mass_concentration_of_halon1211_in_air", "mass_concentration_of_halon1301_in_air", "mass_concentration_of_halon2402_in_air", "mass_concentration_of_hcc140a_in_air", "mass_concentration_of_hcfc141b_in_air", "mass_concentration_of_hcfc142b_in_air", "mass_concentration_of_hcfc22_in_air", "mass_concentration_of_hexachlorobiphenyl_in_air", "mass_concentration_of_hox_expressed_as_hydrogen_in_air", "mass_concentration_of_hydrogen_bromide_in_air", "mass_concentration_of_hydrogen_chloride_in_air", "mass_concentration_of_hydrogen_cyanide_in_air", "mass_concentration_of_hydrogen_peroxide_in_air", "mass_concentration_of_hydroperoxyl_radical_in_air", "mass_concentration_of_hydroxyl_radical_in_air", "mass_concentration_of_hypobromous_acid_in_air", "mass_concentration_of_hypochlorous_acid_in_air", "mass_concentration_of_inorganic_bromine_in_air", "mass_concentration_of_inorganic_chlorine_in_air", "mass_concentration_of_inorganic_nitrogen_in_sea_water", "mass_concentration_of_isoprene_in_air", "mass_concentration_of_limonene_in_air", "mass_concentration_of_liquid_water_in_air", "mass_concentration_of_lutein_in_sea_water", "mass_concentration_of_mercury_dry_aerosol_particles_in_air", "mass_concentration_of_methane_in_air", "mass_concentration_of_methanol_in_air", "mass_concentration_of_methyl_bromide_in_air", "mass_concentration_of_methyl_chloride_in_air", "mass_concentration_of_methyl_hydroperoxide_in_air", "mass_concentration_of_methyl_peroxy_radical_in_air", "mass_concentration_of_microphytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_molecular_hydrogen_in_air", "mass_concentration_of_monovinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_nanophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_nitrate_dry_aerosol_particles_in_air", "mass_concentration_of_nitrate_radical_in_air", "mass_concentration_of_nitric_acid_in_air", "mass_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_concentration_of_nitrogen_dioxide_in_air", "mass_concentration_of_nitrogen_monoxide_in_air", "mass_concentration_of_nitrous_acid_in_air", "mass_concentration_of_nitrous_oxide_in_air", "mass_concentration_of_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_nox_expressed_as_nitrogen_in_air", "mass_concentration_of_noy_expressed_as_nitrogen_in_air", "mass_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mass_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_oxygenated_hydrocarbons_in_air", "mass_concentration_of_oxygen_in_sea_water", "mass_concentration_of_ozone_in_air", "mass_concentration_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_peridinin_in_sea_water", "mass_concentration_of_peroxyacetyl_nitrate_in_air", "mass_concentration_of_peroxynitric_acid_in_air", "mass_concentration_of_peroxy_radicals_in_air", "mass_concentration_of_petroleum_hydrocarbons_in_sea_water", "mass_concentration_of_phaeopigments_in_sea_water", "mass_concentration_of_phosphate_in_sea_water", "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_pm10_ambient_aerosol_particles_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_pm1_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_prasinoxanthin_in_sea_water", "mass_concentration_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_propane_in_air", "mass_concentration_of_propene_in_air", "mass_concentration_of_radon_in_air", "mass_concentration_of_rain_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_silicate_in_sea_water", "mass_concentration_of_sulfate_ambient_aerosol_particles_in_air", "mass_concentration_of_sulfate_dry_aerosol_particles_in_air", "mass_concentration_of_sulfur_dioxide_in_air", "mass_concentration_of_suspended_matter_in_sea_water", "mass_concentration_of_terpenes_in_air", "mass_concentration_of_toluene_in_air", "mass_concentration_of_violaxanthin_in_sea_water", "mass_concentration_of_volcanic_ash_in_air", "mass_concentration_of_water_in_ambient_aerosol_particles_in_air", "mass_concentration_of_water_vapor_in_air", "mass_concentration_of_xylene_in_air", "mass_concentration_of_zeaxanthin_in_sea_water", "mass_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mass_content_of_13C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_14C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_cloud_condensed_water_in_atmosphere_layer", "mass_content_of_cloud_ice_in_atmosphere_layer", "mass_content_of_cloud_liquid_water_in_atmosphere_layer", "mass_content_of_nitrogen_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_water_in_atmosphere_layer", "mass_content_of_water_in_soil", "mass_content_of_water_in_soil_layer", "mass_content_of_water_in_soil_layer_defined_by_root_depth", "mass_content_of_water_vapor_containing_17O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_18O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_single_2H_in_atmosphere_layer", "mass_content_of_water_vapor_in_atmosphere_layer", "mass_flux_of_carbon_into_forestry_and_agricultural_products_due_to_crop_harvesting", "mass_flux_of_carbon_into_litter_from_vegetation", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence", "mass_flux_of_carbon_into_sea_water_from_rivers", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_senescence", "mass_flux_of_carbon_out_of_soil_due_to_leaching_and_runoff", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_into_sea_from_rivers", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_litter_and_soil_due_to_immobilisation_and_remineralization", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil_due_to_leaching_and_runoff", "mass_fraction_of_acetic_acid_in_air", "mass_fraction_of_aceto_nitrile_in_air", "mass_fraction_of_alkanes_in_air", "mass_fraction_of_alkenes_in_air", "mass_fraction_of_alpha_hexachlorocyclohexane_in_air", "mass_fraction_of_alpha_pinene_in_air", "mass_fraction_of_ammonia_in_air", "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_aromatic_compounds_in_air", "mass_fraction_of_atomic_bromine_in_air", "mass_fraction_of_atomic_chlorine_in_air", "mass_fraction_of_atomic_nitrogen_in_air", "mass_fraction_of_benzene_in_air", "mass_fraction_of_beta_pinene_in_air", "mass_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_bromine_chloride_in_air", "mass_fraction_of_bromine_monoxide_in_air", "mass_fraction_of_bromine_nitrate_in_air", "mass_fraction_of_brox_expressed_as_bromine_in_air", "mass_fraction_of_butane_in_air", "mass_fraction_of_carbon_dioxide_in_air", "mass_fraction_of_carbon_dioxide_tracer_in_air", "mass_fraction_of_carbon_monoxide_in_air", "mass_fraction_of_carbon_tetrachloride_in_air", "mass_fraction_of_cfc113a_in_air", "mass_fraction_of_cfc113_in_air", "mass_fraction_of_cfc114_in_air", "mass_fraction_of_cfc115_in_air", "mass_fraction_of_cfc11_in_air", "mass_fraction_of_cfc12_in_air", "mass_fraction_of_chlorine_dioxide_in_air", "mass_fraction_of_chlorine_monoxide_in_air", "mass_fraction_of_chlorine_nitrate_in_air", "mass_fraction_of_chlorophyll_a_in_sea_water", "mass_fraction_of_clay_in_soil", "mass_fraction_of_cloud_condensed_water_in_air", "mass_fraction_of_cloud_ice_in_air", "mass_fraction_of_cloud_liquid_water_in_air", "mass_fraction_of_clox_expressed_as_chlorine_in_air", "mass_fraction_of_convective_cloud_condensed_water_in_air", "mass_fraction_of_convective_cloud_ice_in_air", "mass_fraction_of_convective_cloud_liquid_water_in_air", "mass_fraction_of_dichlorine_peroxide_in_air", "mass_fraction_of_dimethyl_sulfide_in_air", "mass_fraction_of_dinitrogen_pentoxide_in_air", "mass_fraction_of_dust_dry_aerosol_particles_in_air", "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_ethane_in_air", "mass_fraction_of_ethanol_in_air", "mass_fraction_of_ethene_in_air", "mass_fraction_of_ethyne_in_air", "mass_fraction_of_formaldehyde_in_air", "mass_fraction_of_formic_acid_in_air", "mass_fraction_of_frozen_water_in_soil_moisture", "mass_fraction_of_gaseous_divalent_mercury_in_air", "mass_fraction_of_gaseous_elemental_mercury_in_air", "mass_fraction_of_graupel_and_hail_in_air", "mass_fraction_of_graupel_in_air", "mass_fraction_of_gravel_in_soil", "mass_fraction_of_hail_in_air", "mass_fraction_of_halon1202_in_air", "mass_fraction_of_halon1211_in_air", "mass_fraction_of_halon1301_in_air", "mass_fraction_of_halon2402_in_air", "mass_fraction_of_hcc140a_in_air", "mass_fraction_of_hcfc141b_in_air", "mass_fraction_of_hcfc142b_in_air", "mass_fraction_of_hcfc22_in_air", "mass_fraction_of_hexachlorobiphenyl_in_air", "mass_fraction_of_hox_expressed_as_hydrogen_in_air", "mass_fraction_of_hydrogen_bromide_in_air", "mass_fraction_of_hydrogen_chloride_in_air", "mass_fraction_of_hydrogen_cyanide_in_air", "mass_fraction_of_hydrogen_peroxide_in_air", "mass_fraction_of_hydroperoxyl_radical_in_air", "mass_fraction_of_hydroxyl_radical_in_air", "mass_fraction_of_hypobromous_acid_in_air", "mass_fraction_of_hypochlorous_acid_in_air", "mass_fraction_of_inorganic_bromine_in_air", "mass_fraction_of_inorganic_chlorine_in_air", "mass_fraction_of_isoprene_in_air", "mass_fraction_of_limonene_in_air", "mass_fraction_of_liquid_precipitation_in_air", "mass_fraction_of_mercury_dry_aerosol_particles_in_air", "mass_fraction_of_methane_in_air", "mass_fraction_of_methanesulfonic_acid_dry_aerosol_particles_in_air", "mass_fraction_of_methanol_in_air", "mass_fraction_of_methyl_bromide_in_air", "mass_fraction_of_methyl_chloride_in_air", "mass_fraction_of_methyl_hydroperoxide_in_air", "mass_fraction_of_methyl_peroxy_radical_in_air", "mass_fraction_of_molecular_hydrogen_in_air", "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_nitrate_radical_in_air", "mass_fraction_of_nitric_acid_in_air", "mass_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_fraction_of_nitrogen_dioxide_in_air", "mass_fraction_of_nitrogen_monoxide_in_air", "mass_fraction_of_nitrous_acid_in_air", "mass_fraction_of_nitrous_oxide_in_air", "mass_fraction_of_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_nox_expressed_as_nitrogen_in_air", "mass_fraction_of_noy_expressed_as_nitrogen_in_air", "mass_fraction_of_organic_matter_in_soil", "mass_fraction_of_oxygenated_hydrocarbons_in_air", "mass_fraction_of_ozone_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_peroxyacetyl_nitrate_in_air", "mass_fraction_of_peroxynitric_acid_in_air", "mass_fraction_of_peroxy_radicals_in_air", "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_pm10_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_pm1_ambient_aerosol_particles_in_air", "mass_fraction_of_pm1_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_precipitation_in_air", "mass_fraction_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_propane_in_air", "mass_fraction_of_propene_in_air", "mass_fraction_of_radon_in_air", "mass_fraction_of_rainfall_falling_onto_surface_snow", "mass_fraction_of_sand_in_soil", "mass_fraction_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_shallow_convective_cloud_liquid_water_in_air", "mass_fraction_of_silt_in_soil", "mass_fraction_of_snow_in_air", "mass_fraction_of_solid_precipitation_falling_onto_surface_snow", "mass_fraction_of_stratiform_cloud_ice_in_air", "mass_fraction_of_stratiform_cloud_liquid_water_in_air", "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_sulfur_dioxide_in_air", "mass_fraction_of_sulfuric_acid_in_air", "mass_fraction_of_terpenes_in_air", "mass_fraction_of_toluene_in_air", "mass_fraction_of_unfrozen_water_in_soil_moisture", "mass_fraction_of_water_in_air", "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_xylene_in_air", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_strain_rate", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_stress", "medium_soil_pool_mass_content_of_carbon", "medium_type_cloud_area_fraction", "minimum_depth_of_aragonite_undersaturation_in_sea_water", "minimum_depth_of_calcite_undersaturation_in_sea_water", "minus_one_times_surface_upwelling_longwave_flux_in_air", "minus_one_times_surface_upwelling_shortwave_flux_in_air", "minus_one_times_toa_outgoing_shortwave_flux", "minus_one_times_water_flux_into_sea_water_from_rivers", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "minus_tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "minus_tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "miscellaneous_living_matter_mass_content_of_carbon", "miscellaneous_living_matter_mass_content_of_nitrogen", "model_level_number", "model_level_number_at_base_of_ocean_mixed_layer_defined_by_sigma_theta", "model_level_number_at_convective_cloud_base", "model_level_number_at_convective_cloud_top", "model_level_number_at_sea_floor", "model_level_number_at_top_of_atmosphere_boundary_layer", "moisture_content_of_soil_layer_at_field_capacity", "mole_concentration_of_acetic_acid_in_air", "mole_concentration_of_aceto_nitrile_in_air", "mole_concentration_of_adenosine_triphosphate_in_sea_water", "mole_concentration_of_alpha_hexachlorocyclohexane_in_air", "mole_concentration_of_alpha_pinene_in_air", "mole_concentration_of_ammonia_in_air", "mole_concentration_of_ammonium_in_sea_water", "mole_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_atomic_bromine_in_air", "mole_concentration_of_atomic_chlorine_in_air", "mole_concentration_of_atomic_nitrogen_in_air", "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", "mole_concentration_of_benzene_in_air", "mole_concentration_of_beta_pinene_in_air", "mole_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mole_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_bromine_chloride_in_air", "mole_concentration_of_bromine_monoxide_in_air", "mole_concentration_of_bromine_nitrate_in_air", "mole_concentration_of_brox_expressed_as_bromine_in_air", "mole_concentration_of_butane_in_air", "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_carbonate_abiotic_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_calcite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_natural_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbon_dioxide_in_air", "mole_concentration_of_carbon_monoxide_in_air", "mole_concentration_of_carbon_tetrachloride_in_air", "mole_concentration_of_cfc113a_in_air", "mole_concentration_of_cfc113_in_air", "mole_concentration_of_cfc114_in_air", "mole_concentration_of_cfc115_in_air", "mole_concentration_of_cfc11_in_air", "mole_concentration_of_cfc11_in_sea_water", "mole_concentration_of_cfc12_in_air", "mole_concentration_of_cfc12_in_sea_water", "mole_concentration_of_chlorine_dioxide_in_air", "mole_concentration_of_chlorine_monoxide_in_air", "mole_concentration_of_chlorine_nitrate_in_air", "mole_concentration_of_clox_expressed_as_chlorine_in_air", "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_dichlorine_peroxide_in_air", "mole_concentration_of_dimethyl_sulfide_in_air", "mole_concentration_of_dimethyl_sulfide_in_sea_water", "mole_concentration_of_dinitrogen_pentoxide_in_air", "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_abiotic_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_natural_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", "mole_concentration_of_dissolved_iron_in_sea_water", "mole_concentration_of_dissolved_molecular_nitrogen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile", "mole_concentration_of_dissolved_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_carbon_in_sea_water", "mole_concentration_of_dissolved_organic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_phosphorus_in_sea_water", "mole_concentration_of_ethane_in_air", "mole_concentration_of_ethanol_in_air", "mole_concentration_of_ethene_in_air", "mole_concentration_of_ethyne_in_air", "mole_concentration_of_formaldehyde_in_air", "mole_concentration_of_formic_acid_in_air", "mole_concentration_of_gaseous_divalent_mercury_in_air", "mole_concentration_of_gaseous_elemental_mercury_in_air", "mole_concentration_of_halon1202_in_air", "mole_concentration_of_halon1211_in_air", "mole_concentration_of_halon1301_in_air", "mole_concentration_of_halon2402_in_air", "mole_concentration_of_hcc140a_in_air", "mole_concentration_of_hcfc141b_in_air", "mole_concentration_of_hcfc142b_in_air", "mole_concentration_of_hcfc22_in_air", "mole_concentration_of_hexachlorobiphenyl_in_air", "mole_concentration_of_hox_expressed_as_hydrogen_in_air", "mole_concentration_of_hydrogen_bromide_in_air", "mole_concentration_of_hydrogen_chloride_in_air", "mole_concentration_of_hydrogen_cyanide_in_air", "mole_concentration_of_hydrogen_peroxide_in_air", "mole_concentration_of_hydrogen_sulfide_in_sea_water", "mole_concentration_of_hydroperoxyl_radical_in_air", "mole_concentration_of_hydroxyl_radical_in_air", "mole_concentration_of_hypobromous_acid_in_air", "mole_concentration_of_hypochlorous_acid_in_air", "mole_concentration_of_inorganic_bromine_in_air", "mole_concentration_of_inorganic_chlorine_in_air", "mole_concentration_of_isoprene_in_air", "mole_concentration_of_limonene_in_air", "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_methane_in_air", "mole_concentration_of_methanol_in_air", "mole_concentration_of_methyl_bromide_in_air", "mole_concentration_of_methyl_chloride_in_air", "mole_concentration_of_methyl_hydroperoxide_in_air", "mole_concentration_of_methyl_peroxy_radical_in_air", "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_molecular_hydrogen_in_air", "mole_concentration_of_nitrate_and_nitrite_in_sea_water", "mole_concentration_of_nitrate_in_sea_water", "mole_concentration_of_nitrate_radical_in_air", "mole_concentration_of_nitric_acid_in_air", "mole_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_concentration_of_nitrite_in_sea_water", "mole_concentration_of_nitrogen_dioxide_in_air", "mole_concentration_of_nitrogen_monoxide_in_air", "mole_concentration_of_nitrous_acid_in_air", "mole_concentration_of_nitrous_oxide_in_air", "mole_concentration_of_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_nox_expressed_as_nitrogen_in_air", "mole_concentration_of_noy_expressed_as_nitrogen_in_air", "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water", "mole_concentration_of_ozone_in_air", "mole_concentration_of_particulate_matter_expressed_as_carbon_in_sea_water", "mole_concentration_of_particulate_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_nitrogen_in_sea_water", "mole_concentration_of_peroxyacetyl_nitrate_in_air", "mole_concentration_of_peroxynitric_acid_in_air", "mole_concentration_of_phosphate_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water", "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_propane_in_air", "mole_concentration_of_propene_in_air", "mole_concentration_of_radon_in_air", "mole_concentration_of_silicate_in_sea_water", "mole_concentration_of_sulfur_dioxide_in_air", "mole_concentration_of_sulfur_hexafluoride_in_sea_water", "mole_concentration_of_toluene_in_air", "mole_concentration_of_water_vapor_in_air", "mole_concentration_of_xylene_in_air", "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water", "mole_content_of_carbon_monoxide_in_atmosphere_layer", "mole_content_of_methane_in_atmosphere_layer", "mole_content_of_nitrogen_dioxide_in_atmosphere_layer", "mole_content_of_ozone_in_atmosphere_layer", "mole_fraction_of_acetaldehyde_in_air", "mole_fraction_of_acetic_acid_in_air", "mole_fraction_of_acetone_in_air", "mole_fraction_of_aceto_nitrile_in_air", "mole_fraction_of_aldehydes_in_air", "mole_fraction_of_alkanes_in_air", "mole_fraction_of_alkenes_in_air", "mole_fraction_of_alpha_hexachlorocyclohexane_in_air", "mole_fraction_of_alpha_pinene_in_air", "mole_fraction_of_ammonia_in_air", "mole_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_artificial_tracer_with_fixed_lifetime_in_air", "mole_fraction_of_atomic_bromine_in_air", "mole_fraction_of_atomic_chlorine_in_air", "mole_fraction_of_atomic_nitrogen_in_air", "mole_fraction_of_benzene_in_air", "mole_fraction_of_beta_pinene_in_air", "mole_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_bromine_chloride_in_air", "mole_fraction_of_bromine_monoxide_in_air", "mole_fraction_of_bromine_nitrate_in_air", "mole_fraction_of_brox_expressed_as_bromine_in_air", "mole_fraction_of_butane_in_air", "mole_fraction_of_carbon_dioxide_in_air", "mole_fraction_of_carbon_monoxide_in_air", "mole_fraction_of_carbon_tetrachloride_in_air", "mole_fraction_of_carbon_tetrafluoride_in_air", "mole_fraction_of_carbonyl_fluoride_in_air", "mole_fraction_of_carbonyl_sulfide_in_air", "mole_fraction_of_cfc113a_in_air", "mole_fraction_of_cfc113_in_air", "mole_fraction_of_cfc114_in_air", "mole_fraction_of_cfc115_in_air", "mole_fraction_of_cfc11_in_air", "mole_fraction_of_cfc12_in_air", "mole_fraction_of_chlorine_dioxide_in_air", "mole_fraction_of_chlorine_monoxide_in_air", "mole_fraction_of_chlorine_nitrate_in_air", "mole_fraction_of_chloroform_in_air", "mole_fraction_of_clox_expressed_as_chlorine_in_air", "mole_fraction_of_dichlorine_in_air", "mole_fraction_of_dichlorine_peroxide_in_air", "mole_fraction_of_dichloromethane_in_air", "mole_fraction_of_dimethyl_sulfide_in_air", "mole_fraction_of_dinitrogen_pentoxide_in_air", "mole_fraction_of_ethane_in_air", "mole_fraction_of_ethanol_in_air", "mole_fraction_of_ethene_in_air", "mole_fraction_of_ethyne_in_air", "mole_fraction_of_formaldehyde_in_air", "mole_fraction_of_formic_acid_in_air", "mole_fraction_of_gaseous_divalent_mercury_in_air", "mole_fraction_of_gaseous_elemental_mercury_in_air", "mole_fraction_of_glyoxal_in_air", "mole_fraction_of_halon1202_in_air", "mole_fraction_of_halon1211_in_air", "mole_fraction_of_halon1301_in_air", "mole_fraction_of_halon2402_in_air", "mole_fraction_of_hcc140a_in_air", "mole_fraction_of_hcfc124_in_air", "mole_fraction_of_hcfc141b_in_air", "mole_fraction_of_hcfc142b_in_air", "mole_fraction_of_hcfc22_in_air", "mole_fraction_of_hexachlorobiphenyl_in_air", "mole_fraction_of_hfc125_in_air", "mole_fraction_of_hfc134a_in_air", "mole_fraction_of_hfc143a_in_air", "mole_fraction_of_hfc152a_in_air", "mole_fraction_of_hfc227ea_in_air", "mole_fraction_of_hfc236fa_in_air", "mole_fraction_of_hfc23_in_air", "mole_fraction_of_hfc245fa_in_air", "mole_fraction_of_hfc32_in_air", "mole_fraction_of_hfc365mfc_in_air", "mole_fraction_of_hfc4310mee_in_air", "mole_fraction_of_hox_expressed_as_hydrogen_in_air", "mole_fraction_of_hydrogen_bromide_in_air", "mole_fraction_of_hydrogen_chloride_in_air", "mole_fraction_of_hydrogen_cyanide_in_air", "mole_fraction_of_hydrogen_peroxide_in_air", "mole_fraction_of_hydrogen_sulfide_in_air", "mole_fraction_of_hydroperoxyl_radical_in_air", "mole_fraction_of_hydroxyl_radical_in_air", "mole_fraction_of_hypobromous_acid_in_air", "mole_fraction_of_hypochlorous_acid_in_air", "mole_fraction_of_inorganic_bromine_in_air", "mole_fraction_of_inorganic_chlorine_in_air", "mole_fraction_of_isoprene_in_air", "mole_fraction_of_limonene_in_air", "mole_fraction_of_methane_in_air", "mole_fraction_of_methanol_in_air", "mole_fraction_of_methyl_bromide_in_air", "mole_fraction_of_methyl_chloride_in_air", "mole_fraction_of_methylglyoxal_in_air", "mole_fraction_of_methyl_hydroperoxide_in_air", "mole_fraction_of_methyl_peroxy_radical_in_air", "mole_fraction_of_molecular_hydrogen_in_air", "mole_fraction_of_nitrate_radical_in_air", "mole_fraction_of_nitric_acid_in_air", "mole_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_fraction_of_nitrogen_dioxide_in_air", "mole_fraction_of_nitrogen_monoxide_in_air", "mole_fraction_of_nitrogen_trifluoride_in_air", "mole_fraction_of_nitrous_acid_in_air", "mole_fraction_of_nitrous_oxide_in_air", "mole_fraction_of_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_nox_expressed_as_nitrogen_in_air", "mole_fraction_of_noy_expressed_as_nitrogen_in_air", "mole_fraction_of_organic_nitrates_in_air", "mole_fraction_of_ox_in_air", "mole_fraction_of_ozone_in_air", "mole_fraction_of_perchloroethene_in_air", "mole_fraction_of_peroxyacetyl_nitrate_in_air", "mole_fraction_of_peroxynitric_acid_in_air", "mole_fraction_of_pfc116_in_air", "mole_fraction_of_pfc218_in_air", "mole_fraction_of_pfc318_in_air", "mole_fraction_of_propane_in_air", "mole_fraction_of_propene_in_air", "mole_fraction_of_radon_in_air", "mole_fraction_of_sulfur_dioxide_in_air", "mole_fraction_of_sulfur_hexafluoride_in_air", "mole_fraction_of_sulfuryl_fluoride_in_air", "mole_fraction_of_toluene_in_air", "mole_fraction_of_water_vapor_in_air", "mole_fraction_of_xylene_in_air", "mole_ratio_of_nitrate_to_phosphate_in_sea_water", "moles_of_cfc11_per_unit_mass_in_sea_water", "moles_of_dissolved_inorganic_carbon_per_unit_mass_in_sea_water", "moles_of_nitrate_and_nitrite_per_unit_mass_in_sea_water", "moles_of_nitrate_per_unit_mass_in_sea_water", "moles_of_nitrite_per_unit_mass_in_sea_water", "moles_of_oxygen_per_unit_mass_in_sea_water", "moles_of_phosphate_per_unit_mass_in_sea_water", "moles_of_silicate_per_unit_mass_in_sea_water", "multi_variate_test_quality_flag", "neighbor_test_quality_flag", "net_downward_longwave_flux_in_air", "net_downward_longwave_flux_in_air_assuming_clear_sky", "net_downward_radiative_flux_at_top_of_atmosphere_model", "net_downward_shortwave_flux_at_sea_water_surface", "net_downward_shortwave_flux_in_air", "net_downward_shortwave_flux_in_air_assuming_clear_sky", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_calcareous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diatoms", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diazotrophic_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_miscellaneous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_picophytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_due_to_nitrate_utilization", "net_primary_production_of_biomass_expressed_as_carbon_per_unit_volume_in_sea_water", "net_primary_productivity_of_biomass_expressed_as_carbon", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_leaves", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_miscellaneous_living_matter", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_roots", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_wood", "net_rate_of_absorption_of_longwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_ocean_layer", "net_upward_longwave_flux_in_air", "net_upward_longwave_flux_in_air_assuming_clear_sky", "net_upward_shortwave_flux_in_air", "net_upward_shortwave_flux_in_air_assuming_clear_sky", "nitrogen_growth_limitation_of_calcareous_phytoplankton", "nitrogen_growth_limitation_of_diatoms", "nitrogen_growth_limitation_of_diazotrophic_phytoplankton", "nitrogen_growth_limitation_of_miscellaneous_phytoplankton", "nitrogen_growth_limitation_of_picophytoplankton", "nitrogen_mass_content_of_forestry_and_agricultural_products", "nitrogen_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "nitrogen_mass_flux_into_litter_from_vegetation", "nitrogen_mass_flux_into_soil_from_litter", "nitrogen_mass_flux_into_soil_from_vegetation_excluding_litter", "non_tidal_elevation_of_sea_surface_height", "normalized_difference_vegetation_index", "northward_air_velocity_relative_to_sea_water", "northward_atmosphere_dry_static_energy_transport_across_unit_distance", "northward_atmosphere_heat_transport", "northward_atmosphere_water_transport_across_unit_distance", "northward_atmosphere_water_vapor_transport_across_unit_distance", "northward_derivative_of_eastward_sea_ice_velocity", "northward_derivative_of_eastward_wind", "northward_derivative_of_northward_wind", "northward_derivative_of_wind_from_direction", "northward_eliassen_palm_flux_in_air", "northward_flood_water_velocity", "northward_friction_velocity_in_air", "northward_heat_flux_in_air_due_to_eddy_advection", "northward_land_ice_velocity", "northward_mass_flux_of_air", "northward_momentum_flux_correction", "northward_northward_derivative_of_geopotential", "northward_ocean_freshwater_transport", "northward_ocean_freshwater_transport_due_to_diffusion", "northward_ocean_freshwater_transport_due_to_gyre", "northward_ocean_freshwater_transport_due_to_overturning", "northward_ocean_freshwater_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport", "northward_ocean_heat_transport_due_to_diffusion", "northward_ocean_heat_transport_due_to_gyre", "northward_ocean_heat_transport_due_to_overturning", "northward_ocean_heat_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_diffusion", "northward_ocean_heat_transport_due_to_parameterized_submesoscale_eddy_advection", "northward_ocean_salt_transport", "northward_ocean_salt_transport_due_to_diffusion", "northward_ocean_salt_transport_due_to_gyre", "northward_ocean_salt_transport_due_to_overturning", "northward_ocean_salt_transport_due_to_parameterized_eddy_advection", "northward_sea_ice_displacement", "northward_sea_ice_velocity", "northward_sea_water_velocity", "northward_sea_water_velocity_assuming_no_tide", "northward_sea_water_velocity_at_sea_floor", "northward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "northward_sea_water_velocity_due_to_tides", "northward_transformed_eulerian_mean_air_velocity", "northward_upward_derivative_of_geopotential", "northward_water_vapor_flux_in_air", "northward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "northward_westward_derivative_of_geopotential", "northward_wind", "northward_wind_shear", "nudging_increment_in_mass_content_of_water_in_soil", "nudging_increment_in_snow_and_ice_amount_on_land", "number_concentration_of_aerosol_particles_at_stp_in_air", "number_concentration_of_ambient_aerosol_particles_in_air", "number_concentration_of_biological_taxon_in_sea_water", "number_concentration_of_cloud_condensation_nuclei_at_stp_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air_at_liquid_water_cloud_top", "number_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "number_concentration_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "number_concentration_of_ice_crystals_in_air", "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top", "number_concentration_of_nucleation_mode_ambient_aerosol_particles_in_air", "number_concentration_of_ozone_molecules_in_air", "number_concentration_of_pm10_aerosol_particles_in_air", "number_concentration_of_pm2p5_aerosol_particles_in_air", "number_concentration_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "number_of_days_with_air_temperature_above_threshold", "number_of_days_with_air_temperature_below_threshold", "number_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "number_of_days_with_surface_temperature_below_threshold", "number_of_days_with_wind_speed_above_threshold", "number_of_icebergs_per_unit_area", "number_of_missing_observations", "number_of_observations", "ocean_barotropic_mass_streamfunction", "ocean_barotropic_streamfunction", "ocean_double_sigma_coordinate", "ocean_heat_x_transport", "ocean_heat_x_transport_due_to_diffusion", "ocean_heat_x_transport_due_to_parameterized_eddy_advection", "ocean_heat_y_transport", "ocean_heat_y_transport_due_to_diffusion", "ocean_heat_y_transport_due_to_parameterized_eddy_advection", "ocean_isopycnal_layer_thickness_diffusivity", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_vertical_friction", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_xy_friction", "ocean_mass_content_of_dissolved_inorganic_carbon", "ocean_mass_content_of_dissolved_organic_carbon", "ocean_mass_content_of_particulate_organic_matter_expressed_as_carbon", "ocean_mass_x_transport", "ocean_mass_x_transport_due_to_advection", "ocean_mass_x_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_mass_y_transport", "ocean_mass_y_transport_due_to_advection", "ocean_mass_y_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "ocean_meridional_overturning_streamfunction", "ocean_mixed_layer_thickness", "ocean_mixed_layer_thickness_defined_by_mixing_scheme", "ocean_mixed_layer_thickness_defined_by_sigma_t", "ocean_mixed_layer_thickness_defined_by_sigma_theta", "ocean_mixed_layer_thickness_defined_by_temperature", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_deficit", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_threshold", "ocean_momentum_xy_biharmonic_diffusivity", "ocean_momentum_xy_laplacian_diffusivity", "ocean_montgomery_potential", "ocean_relative_vorticity", "ocean_rigid_lid_pressure", "ocean_rigid_lid_pressure_expressed_as_sea_surface_height_above_geoid", "ocean_salt_x_transport", "ocean_salt_y_transport", "ocean_s_coordinate", "ocean_s_coordinate_g1", "ocean_s_coordinate_g2", "ocean_sigma_coordinate", "ocean_sigma_z_coordinate", "ocean_tracer_biharmonic_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_epineutral_biharmonic_diffusivity", "ocean_tracer_epineutral_laplacian_diffusivity", "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_xy_biharmonic_diffusivity", "ocean_tracer_xy_laplacian_diffusivity", "ocean_vertical_diffusivity", "ocean_vertical_heat_diffusivity", "ocean_vertical_momentum_diffusivity", "ocean_vertical_momentum_diffusivity_due_to_background", "ocean_vertical_momentum_diffusivity_due_to_convection", "ocean_vertical_momentum_diffusivity_due_to_form_drag", "ocean_vertical_momentum_diffusivity_due_to_tides", "ocean_vertical_salt_diffusivity", "ocean_vertical_tracer_diffusivity", "ocean_vertical_tracer_diffusivity_due_to_background", "ocean_vertical_tracer_diffusivity_due_to_convection", "ocean_vertical_tracer_diffusivity_due_to_tides", "ocean_vertical_tracer_diffusivity_due_to_wind_mixing", "ocean_volume", "ocean_volume_fraction", "ocean_volume_transport_across_line", "ocean_volume_x_transport", "ocean_volume_y_transport", "ocean_y_overturning_mass_streamfunction", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "omnidirectional_photosynthetic_spherical_irradiance_in_sea_water", "omnidirectional_spherical_irradiance_per_unit_wavelength_in_sea_water", "optical_thickness_of_atmosphere_layer_due_to_ambient_aerosol_particles", "original_air_pressure_of_lifted_parcel", "outgoing_water_volume_transport_along_river_channel", "partial_pressure_of_carbon_dioxide_in_sea_water", "partial_pressure_of_methane_in_sea_water", "permafrost_active_layer_thickness", "permafrost_area_fraction", "permafrost_layer_thickness", "phase_of_global_average_sea_level_change", "photolysis_rate_of_molecular_oxygen", "photolysis_rate_of_nitrogen_dioxide", "photolysis_rate_of_ozone", "photolysis_rate_of_ozone_to_1D_oxygen_atom", "planetary_albedo", "platform_azimuth_angle", "platform_course", "platform_heave", "platform_heave_down", "platform_heave_rate", "platform_heave_rate_down", "platform_heave_rate_up", "platform_heave_up", "platform_id", "platform_name", "platform_orientation", "platform_pitch", "platform_pitch_fore_down", "platform_pitch_fore_up", "platform_pitch_rate", "platform_pitch_rate_fore_down", "platform_pitch_rate_fore_up", "platform_roll", "platform_roll_rate", "platform_roll_rate_starboard_down", "platform_roll_rate_starboard_up", "platform_roll_starboard_down", "platform_roll_starboard_up", "platform_speed_wrt_air", "platform_speed_wrt_ground", "platform_speed_wrt_sea_water", "platform_surge", "platform_surge_aft", "platform_surge_fore", "platform_surge_rate", "platform_surge_rate_aft", "platform_surge_rate_fore", "platform_sway", "platform_sway_port", "platform_sway_rate", "platform_sway_rate_port", "platform_sway_rate_starboard", "platform_sway_starboard", "platform_view_angle", "platform_yaw", "platform_yaw_fore_port", "platform_yaw_fore_starboard", "platform_yaw_rate", "platform_yaw_rate_fore_port", "platform_yaw_rate_fore_starboard", "platform_zenith_angle", "potential_energy_content_of_atmosphere_layer", "potential_vorticity_of_atmosphere_layer", "potential_vorticity_of_ocean_layer", "precipitation_amount", "precipitation_flux", "precipitation_flux_containing_17O", "precipitation_flux_containing_18O", "precipitation_flux_containing_single_2H", "precipitation_flux_onto_canopy", "predominant_precipitation_type_at_surface", "pressure_at_effective_cloud_top_defined_by_infrared_radiation", "probability_distribution_of_wind_from_direction_over_time", "product_of_air_temperature_and_specific_humidity", "product_of_eastward_sea_water_velocity_and_salinity", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_eastward_wind_and_air_temperature", "product_of_eastward_wind_and_geopotential_height", "product_of_eastward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_eastward_wind_and_northward_wind", "product_of_eastward_wind_and_specific_humidity", "product_of_eastward_wind_and_upward_air_velocity", "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", "product_of_lagrangian_tendency_of_air_pressure_and_geopotential_height", "product_of_lagrangian_tendency_of_air_pressure_and_specific_humidity", "product_of_northward_sea_water_velocity_and_salinity", "product_of_northward_sea_water_velocity_and_temperature", "product_of_northward_wind_and_air_temperature", "product_of_northward_wind_and_geopotential_height", "product_of_northward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_northward_wind_and_specific_humidity", "product_of_northward_wind_and_upward_air_velocity", "product_of_upward_air_velocity_and_air_temperature", "product_of_upward_air_velocity_and_specific_humidity", "projection_x_angular_coordinate", "projection_x_coordinate", "projection_y_angular_coordinate", "projection_y_coordinate", "proportion_of_acceptable_signal_returns_from_acoustic_instrument_in_sea_water", "quality_flag", "radial_sea_water_velocity_away_from_instrument", "radial_sea_water_velocity_toward_instrument", "radial_velocity_of_scatterers_away_from_instrument", "radial_velocity_of_scatterers_toward_instrument", "radiation_frequency", "radiation_wavelength", "radioactivity_concentration_in_air", "radioactivity_concentration_of_101Mo_in_air", "radioactivity_concentration_of_101Tc_in_air", "radioactivity_concentration_of_102Mo_in_air", "radioactivity_concentration_of_102mTc_in_air", "radioactivity_concentration_of_102Tc_in_air", "radioactivity_concentration_of_103mRh_in_air", "radioactivity_concentration_of_103Ru_in_air", "radioactivity_concentration_of_104Tc_in_air", "radioactivity_concentration_of_105mRh_in_air", "radioactivity_concentration_of_105Rh_in_air", "radioactivity_concentration_of_105Ru_in_air", "radioactivity_concentration_of_106mRh_in_air", "radioactivity_concentration_of_106Rh_in_air", "radioactivity_concentration_of_106Ru_in_air", "radioactivity_concentration_of_107mPd_in_air", "radioactivity_concentration_of_107Pd_in_air", "radioactivity_concentration_of_107Rh_in_air", "radioactivity_concentration_of_109mAg_in_air", "radioactivity_concentration_of_109Pd_in_air", "radioactivity_concentration_of_110mAg_in_air", "radioactivity_concentration_of_111Ag_in_air", "radioactivity_concentration_of_111mAg_in_air", "radioactivity_concentration_of_111mCd_in_air", "radioactivity_concentration_of_111mPd_in_air", "radioactivity_concentration_of_111Pd_in_air", "radioactivity_concentration_of_112Ag_in_air", "radioactivity_concentration_of_112Pd_in_air", "radioactivity_concentration_of_113Ag_in_air", "radioactivity_concentration_of_113Cd_in_air", "radioactivity_concentration_of_113mAg_in_air", "radioactivity_concentration_of_113mCd_in_air", "radioactivity_concentration_of_113mIn_in_air", "radioactivity_concentration_of_115Ag_in_air", "radioactivity_concentration_of_115Cd_in_air", "radioactivity_concentration_of_115In_in_air", "radioactivity_concentration_of_115mAg_in_air", "radioactivity_concentration_of_115mCd_in_air", "radioactivity_concentration_of_115mIn_in_air", "radioactivity_concentration_of_116In_in_air", "radioactivity_concentration_of_116mIn_in_air", "radioactivity_concentration_of_117Cd_in_air", "radioactivity_concentration_of_117In_in_air", "radioactivity_concentration_of_117mCd_in_air", "radioactivity_concentration_of_117mIn_in_air", "radioactivity_concentration_of_117mSn_in_air", "radioactivity_concentration_of_118Cd_in_air", "radioactivity_concentration_of_118In_in_air", "radioactivity_concentration_of_118mIn_in_air", "radioactivity_concentration_of_119In_in_air", "radioactivity_concentration_of_119mIn_in_air", "radioactivity_concentration_of_119mSn_in_air", "radioactivity_concentration_of_11C_in_air", "radioactivity_concentration_of_121mSn_in_air", "radioactivity_concentration_of_121Sn_in_air", "radioactivity_concentration_of_123mSn_in_air", "radioactivity_concentration_of_123Sn_in_air", "radioactivity_concentration_of_124mSb_in_air", "radioactivity_concentration_of_124Sb_in_air", "radioactivity_concentration_of_125mTe_in_air", "radioactivity_concentration_of_125Sb_in_air", "radioactivity_concentration_of_125Sn_in_air", "radioactivity_concentration_of_126mSb_in_air", "radioactivity_concentration_of_126Sb_in_air", "radioactivity_concentration_of_126Sn_in_air", "radioactivity_concentration_of_127mTe_in_air", "radioactivity_concentration_of_127Sb_in_air", "radioactivity_concentration_of_127Sn_in_air", "radioactivity_concentration_of_127Te_in_air", "radioactivity_concentration_of_128mSb_in_air", "radioactivity_concentration_of_128Sb_in_air", "radioactivity_concentration_of_128Sn_in_air", "radioactivity_concentration_of_129I_in_air", "radioactivity_concentration_of_129mTe_in_air", "radioactivity_concentration_of_129mXe_in_air", "radioactivity_concentration_of_129Sb_in_air", "radioactivity_concentration_of_129Te_in_air", "radioactivity_concentration_of_130I_in_air", "radioactivity_concentration_of_130mI_in_air", "radioactivity_concentration_of_130mSb_in_air", "radioactivity_concentration_of_130Sb_in_air", "radioactivity_concentration_of_130Sn_in_air", "radioactivity_concentration_of_131I_in_air", "radioactivity_concentration_of_131mTe_in_air", "radioactivity_concentration_of_131mXe_in_air", "radioactivity_concentration_of_131Sb_in_air", "radioactivity_concentration_of_131Te_in_air", "radioactivity_concentration_of_132I_in_air", "radioactivity_concentration_of_132Te_in_air", "radioactivity_concentration_of_133I_in_air", "radioactivity_concentration_of_133mI_in_air", "radioactivity_concentration_of_133mTe_in_air", "radioactivity_concentration_of_133mXe_in_air", "radioactivity_concentration_of_133Te_in_air", "radioactivity_concentration_of_133Xe_in_air", "radioactivity_concentration_of_134Cs_in_air", "radioactivity_concentration_of_134I_in_air", "radioactivity_concentration_of_134mCs_in_air", "radioactivity_concentration_of_134mI_in_air", "radioactivity_concentration_of_134mXe_in_air", "radioactivity_concentration_of_134Te_in_air", "radioactivity_concentration_of_135Cs_in_air", "radioactivity_concentration_of_135I_in_air", "radioactivity_concentration_of_135mBa_in_air", "radioactivity_concentration_of_135mCs_in_air", "radioactivity_concentration_of_135mXe_in_air", "radioactivity_concentration_of_135Xe_in_air", "radioactivity_concentration_of_136Cs_in_air", "radioactivity_concentration_of_137Cs_in_air", "radioactivity_concentration_of_137mBa_in_air", "radioactivity_concentration_of_137Xe_in_air", "radioactivity_concentration_of_138Cs_in_air", "radioactivity_concentration_of_138Xe_in_air", "radioactivity_concentration_of_139Ba_in_air", "radioactivity_concentration_of_13N_in_air", "radioactivity_concentration_of_140Ba_in_air", "radioactivity_concentration_of_140La_in_air", "radioactivity_concentration_of_141Ce_in_air", "radioactivity_concentration_of_141La_in_air", "radioactivity_concentration_of_142Ce_in_air", "radioactivity_concentration_of_142La_in_air", "radioactivity_concentration_of_142mPr_in_air", "radioactivity_concentration_of_142Pr_in_air", "radioactivity_concentration_of_143Ce_in_air", "radioactivity_concentration_of_143La_in_air", "radioactivity_concentration_of_143Pr_in_air", "radioactivity_concentration_of_144Ce_in_air", "radioactivity_concentration_of_144mPr_in_air", "radioactivity_concentration_of_144Nd_in_air", "radioactivity_concentration_of_144Pr_in_air", "radioactivity_concentration_of_145Pr_in_air", "radioactivity_concentration_of_146Ce_in_air", "radioactivity_concentration_of_146Pr_in_air", "radioactivity_concentration_of_147Nd_in_air", "radioactivity_concentration_of_147Pm_in_air", "radioactivity_concentration_of_147Pr_in_air", "radioactivity_concentration_of_147Sm_in_air", "radioactivity_concentration_of_148mPm_in_air", "radioactivity_concentration_of_148Pm_in_air", "radioactivity_concentration_of_148Sm_in_air", "radioactivity_concentration_of_149Nd_in_air", "radioactivity_concentration_of_149Pm_in_air", "radioactivity_concentration_of_149Sm_in_air", "radioactivity_concentration_of_150Pm_in_air", "radioactivity_concentration_of_151Nd_in_air", "radioactivity_concentration_of_151Pm_in_air", "radioactivity_concentration_of_151Sm_in_air", "radioactivity_concentration_of_152mPm_in_air", "radioactivity_concentration_of_152Nd_in_air", "radioactivity_concentration_of_152Pm_in_air", "radioactivity_concentration_of_153Sm_in_air", "radioactivity_concentration_of_154Eu_in_air", "radioactivity_concentration_of_155Eu_in_air", "radioactivity_concentration_of_155Sm_in_air", "radioactivity_concentration_of_156Eu_in_air", "radioactivity_concentration_of_156Sm_in_air", "radioactivity_concentration_of_157Eu_in_air", "radioactivity_concentration_of_158Eu_in_air", "radioactivity_concentration_of_159Eu_in_air", "radioactivity_concentration_of_159Gd_in_air", "radioactivity_concentration_of_15O_in_air", "radioactivity_concentration_of_160Tb_in_air", "radioactivity_concentration_of_161Tb_in_air", "radioactivity_concentration_of_162Gd_in_air", "radioactivity_concentration_of_162mTb_in_air", "radioactivity_concentration_of_162Tb_in_air", "radioactivity_concentration_of_163Tb_in_air", "radioactivity_concentration_of_165Dy_in_air", "radioactivity_concentration_of_18F_in_air", "radioactivity_concentration_of_206Hg_in_air", "radioactivity_concentration_of_206Tl_in_air", "radioactivity_concentration_of_207mPb_in_air", "radioactivity_concentration_of_207Tl_in_air", "radioactivity_concentration_of_208Tl_in_air", "radioactivity_concentration_of_209Bi_in_air", "radioactivity_concentration_of_209Pb_in_air", "radioactivity_concentration_of_209Tl_in_air", "radioactivity_concentration_of_210Bi_in_air", "radioactivity_concentration_of_210Pb_in_air", "radioactivity_concentration_of_210Po_in_air", "radioactivity_concentration_of_210Tl_in_air", "radioactivity_concentration_of_211Bi_in_air", "radioactivity_concentration_of_211Pb_in_air", "radioactivity_concentration_of_211Po_in_air", "radioactivity_concentration_of_212Bi_in_air", "radioactivity_concentration_of_212Pb_in_air", "radioactivity_concentration_of_212Po_in_air", "radioactivity_concentration_of_213Bi_in_air", "radioactivity_concentration_of_213Pb_in_air", "radioactivity_concentration_of_213Po_in_air", "radioactivity_concentration_of_214Bi_in_air", "radioactivity_concentration_of_214Pb_in_air", "radioactivity_concentration_of_214Po_in_air", "radioactivity_concentration_of_215At_in_air", "radioactivity_concentration_of_215Bi_in_air", "radioactivity_concentration_of_215Po_in_air", "radioactivity_concentration_of_216At_in_air", "radioactivity_concentration_of_216Po_in_air", "radioactivity_concentration_of_217At_in_air", "radioactivity_concentration_of_217Po_in_air", "radioactivity_concentration_of_218At_in_air", "radioactivity_concentration_of_218Po_in_air", "radioactivity_concentration_of_218Rn_in_air", "radioactivity_concentration_of_219At_in_air", "radioactivity_concentration_of_219Rn_in_air", "radioactivity_concentration_of_220Rn_in_air", "radioactivity_concentration_of_221Fr_in_air", "radioactivity_concentration_of_221Rn_in_air", "radioactivity_concentration_of_222Fr_in_air", "radioactivity_concentration_of_222Ra_in_air", "radioactivity_concentration_of_222Rn_in_air", "radioactivity_concentration_of_223Fr_in_air", "radioactivity_concentration_of_223Ra_in_air", "radioactivity_concentration_of_223Rn_in_air", "radioactivity_concentration_of_224Ra_in_air", "radioactivity_concentration_of_225Ac_in_air", "radioactivity_concentration_of_225Ra_in_air", "radioactivity_concentration_of_226Ac_in_air", "radioactivity_concentration_of_226Ra_in_air", "radioactivity_concentration_of_226Th_in_air", "radioactivity_concentration_of_227Ac_in_air", "radioactivity_concentration_of_227Ra_in_air", "radioactivity_concentration_of_227Th_in_air", "radioactivity_concentration_of_228Ac_in_air", "radioactivity_concentration_of_228Ra_in_air", "radioactivity_concentration_of_228Th_in_air", "radioactivity_concentration_of_229Ac_in_air", "radioactivity_concentration_of_229Ra_in_air", "radioactivity_concentration_of_229Th_in_air", "radioactivity_concentration_of_230Pa_in_air", "radioactivity_concentration_of_230Th_in_air", "radioactivity_concentration_of_230U_in_air", "radioactivity_concentration_of_231Pa_in_air", "radioactivity_concentration_of_231Th_in_air", "radioactivity_concentration_of_231U_in_air", "radioactivity_concentration_of_232Pa_in_air", "radioactivity_concentration_of_232Th_in_air", "radioactivity_concentration_of_232U_in_air", "radioactivity_concentration_of_233Pa_in_air", "radioactivity_concentration_of_233Th_in_air", "radioactivity_concentration_of_233U_in_air", "radioactivity_concentration_of_234mPa_in_air", "radioactivity_concentration_of_234Pa_in_air", "radioactivity_concentration_of_234Th_in_air", "radioactivity_concentration_of_234U_in_air", "radioactivity_concentration_of_235Np_in_air", "radioactivity_concentration_of_235Pu_in_air", "radioactivity_concentration_of_235U_in_air", "radioactivity_concentration_of_236mNp_in_air", "radioactivity_concentration_of_236Np_in_air", "radioactivity_concentration_of_236Pu_in_air", "radioactivity_concentration_of_236U_in_air", "radioactivity_concentration_of_237Np_in_air", "radioactivity_concentration_of_237Pu_in_air", "radioactivity_concentration_of_237U_in_air", "radioactivity_concentration_of_238Np_in_air", "radioactivity_concentration_of_238Pu_in_air", "radioactivity_concentration_of_238U_in_air", "radioactivity_concentration_of_239Np_in_air", "radioactivity_concentration_of_239Pu_in_air", "radioactivity_concentration_of_239U_in_air", "radioactivity_concentration_of_240Am_in_air", "radioactivity_concentration_of_240mNp_in_air", "radioactivity_concentration_of_240Np_in_air", "radioactivity_concentration_of_240Pu_in_air", "radioactivity_concentration_of_240U_in_air", "radioactivity_concentration_of_241Am_in_air", "radioactivity_concentration_of_241Cm_in_air", "radioactivity_concentration_of_241Pu_in_air", "radioactivity_concentration_of_242Am_in_air", "radioactivity_concentration_of_242Cm_in_air", "radioactivity_concentration_of_242m1Am_in_air", "radioactivity_concentration_of_242m2Am_in_air", "radioactivity_concentration_of_242Pu_in_air", "radioactivity_concentration_of_243Am_in_air", "radioactivity_concentration_of_243Cm_in_air", "radioactivity_concentration_of_243Pu_in_air", "radioactivity_concentration_of_244Am_in_air", "radioactivity_concentration_of_244Cm_in_air", "radioactivity_concentration_of_244mAm_in_air", "radioactivity_concentration_of_244Pu_in_air", "radioactivity_concentration_of_245Am_in_air", "radioactivity_concentration_of_245Cm_in_air", "radioactivity_concentration_of_245Pu_in_air", "radioactivity_concentration_of_246Cm_in_air", "radioactivity_concentration_of_247Cm_in_air", "radioactivity_concentration_of_248Cm_in_air", "radioactivity_concentration_of_249Bk_in_air", "radioactivity_concentration_of_249Cf_in_air", "radioactivity_concentration_of_249Cm_in_air", "radioactivity_concentration_of_24Na_in_air", "radioactivity_concentration_of_250Bk_in_air", "radioactivity_concentration_of_250Cf_in_air", "radioactivity_concentration_of_250Cm_in_air", "radioactivity_concentration_of_251Cf_in_air", "radioactivity_concentration_of_252Cf_in_air", "radioactivity_concentration_of_253Cf_in_air", "radioactivity_concentration_of_253Es_in_air", "radioactivity_concentration_of_254Cf_in_air", "radioactivity_concentration_of_254Es_in_air", "radioactivity_concentration_of_254mEs_in_air", "radioactivity_concentration_of_255Es_in_air", "radioactivity_concentration_of_3H_in_air", "radioactivity_concentration_of_41Ar_in_air", "radioactivity_concentration_of_54Mn_in_air", "radioactivity_concentration_of_58Co_in_air", "radioactivity_concentration_of_60Co_in_air", "radioactivity_concentration_of_72Ga_in_air", "radioactivity_concentration_of_72Zn_in_air", "radioactivity_concentration_of_73Ga_in_air", "radioactivity_concentration_of_75Ge_in_air", "radioactivity_concentration_of_77As_in_air", "radioactivity_concentration_of_77Ge_in_air", "radioactivity_concentration_of_77mGe_in_air", "radioactivity_concentration_of_78As_in_air", "radioactivity_concentration_of_78Ge_in_air", "radioactivity_concentration_of_79Se_in_air", "radioactivity_concentration_of_81mSe_in_air", "radioactivity_concentration_of_81Se_in_air", "radioactivity_concentration_of_82Br_in_air", "radioactivity_concentration_of_82mBr_in_air", "radioactivity_concentration_of_83Br_in_air", "radioactivity_concentration_of_83mKr_in_air", "radioactivity_concentration_of_83mSe_in_air", "radioactivity_concentration_of_83Se_in_air", "radioactivity_concentration_of_84Br_in_air", "radioactivity_concentration_of_84mBr_in_air", "radioactivity_concentration_of_85Kr_in_air", "radioactivity_concentration_of_85mKr_in_air", "radioactivity_concentration_of_86mRb_in_air", "radioactivity_concentration_of_86Rb_in_air", "radioactivity_concentration_of_87Kr_in_air", "radioactivity_concentration_of_87Rb_in_air", "radioactivity_concentration_of_88Kr_in_air", "radioactivity_concentration_of_88Rb_in_air", "radioactivity_concentration_of_89Kr_in_air", "radioactivity_concentration_of_89Rb_in_air", "radioactivity_concentration_of_89Sr_in_air", "radioactivity_concentration_of_90mY_in_air", "radioactivity_concentration_of_90Sr_in_air", "radioactivity_concentration_of_90Y_in_air", "radioactivity_concentration_of_91mY_in_air", "radioactivity_concentration_of_91Sr_in_air", "radioactivity_concentration_of_91Y_in_air", "radioactivity_concentration_of_92Sr_in_air", "radioactivity_concentration_of_92Y_in_air", "radioactivity_concentration_of_93Y_in_air", "radioactivity_concentration_of_93Zr_in_air", "radioactivity_concentration_of_94mNb_in_air", "radioactivity_concentration_of_94Nb_in_air", "radioactivity_concentration_of_94Y_in_air", "radioactivity_concentration_of_95mNb_in_air", "radioactivity_concentration_of_95Nb_in_air", "radioactivity_concentration_of_95Y_in_air", "radioactivity_concentration_of_95Zr_in_air", "radioactivity_concentration_of_96Nb_in_air", "radioactivity_concentration_of_97mNb_in_air", "radioactivity_concentration_of_97Nb_in_air", "radioactivity_concentration_of_97Zr_in_air", "radioactivity_concentration_of_98Nb_in_air", "radioactivity_concentration_of_99Mo_in_air", "radioactivity_concentration_of_99mTc_in_air", "radioactivity_concentration_of_99Tc_in_air", "radius_of_tropical_cyclone_central_dense_overcast_region", "radius_of_tropical_cyclone_eye", "radius_of_tropical_cyclone_maximum_sustained_wind_speed", "rainfall_amount", "rainfall_flux", "rainfall_rate", "rate_of_change_test_quality_flag", "rate_of_hydroxyl_radical_destruction_due_to_reaction_with_nmvoc", "ratio_of_ice_volume_in_frozen_ground_to_pore_volume_in_unfrozen_ground", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "ratio_of_sea_water_practical_salinity_anomaly_to_relaxation_timescale", "ratio_of_x_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "ratio_of_y_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "realization", "reference_air_pressure_for_atmosphere_vertical_coordinate", "reference_epoch", "reference_pressure", "reference_sea_water_density_for_boussinesq_approximation", "region", "relative_humidity", "relative_humidity_for_aerosol_particle_size_selection", "relative_platform_azimuth_angle", "relative_sensor_azimuth_angle", "richardson_number_in_sea_water", "root_depth", "root_mass_content_of_carbon", "root_mass_content_of_nitrogen", "runoff_amount", "runoff_amount_excluding_baseflow", "runoff_flux", "salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "salt_flux_into_sea_water_from_rivers", "scattering_angle", "scene_type_of_dvorak_tropical_cyclone_cloud_region", "scene_type_of_dvorak_tropical_cyclone_eye_region", "sea_area", "sea_area_fraction", "sea_binary_mask", "sea_floor_depth_below_geoid", "sea_floor_depth_below_geopotential_datum", "sea_floor_depth_below_mean_sea_level", "sea_floor_depth_below_reference_ellipsoid", "sea_floor_depth_below_sea_surface", "sea_floor_sediment_grain_size", "sea_ice_albedo", "sea_ice_amount", "sea_ice_and_surface_snow_amount", "sea_ice_area", "sea_ice_area_fraction", "sea_ice_area_transport_across_line", "sea_ice_average_normal_horizontal_stress", "sea_ice_basal_drag_coefficient_for_momentum_in_sea_water", "sea_ice_basal_temperature", "sea_ice_classification", "sea_ice_draft", "sea_ice_extent", "sea_ice_floe_diameter", "sea_ice_freeboard", "sea_ice_mass", "sea_ice_mass_content_of_salt", "sea_ice_melt_pond_thickness", "sea_ice_salinity", "sea_ice_speed", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_ice_thickness", "sea_ice_transport_across_line", "sea_ice_volume", "sea_ice_x_displacement", "sea_ice_x_force_per_unit_area_due_to_coriolis_effect", "sea_ice_x_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_x_internal_stress", "sea_ice_x_transport", "sea_ice_x_velocity", "sea_ice_y_displacement", "sea_ice_y_force_per_unit_area_due_to_coriolis_effect", "sea_ice_y_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_y_internal_stress", "sea_ice_y_transport", "sea_ice_y_velocity", "sea_surface_density", "sea_surface_downward_eastward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_downward_northward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_foundation_temperature", "sea_surface_height_above_geoid", "sea_surface_height_above_geopotential_datum", "sea_surface_height_above_mean_sea_level", "sea_surface_height_above_reference_ellipsoid", "sea_surface_height_amplitude_due_to_earth_tide", "sea_surface_height_amplitude_due_to_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_geocentric_ocean_tide", "sea_surface_height_amplitude_due_to_non_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_pole_tide", "sea_surface_height_bias_due_to_sea_surface_roughness", "sea_surface_height_correction_due_to_air_pressure_and_wind_at_high_frequency", "sea_surface_height_correction_due_to_air_pressure_at_low_frequency", "sea_surface_mean_square_crosswave_slope", "sea_surface_mean_square_upwave_slope", "sea_surface_mean_square_upwave_slope_direction", "sea_surface_primary_swell_wave_directional_spread", "sea_surface_primary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_from_direction", "sea_surface_primary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_mean_period", "sea_surface_primary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_significant_height", "sea_surface_salinity", "sea_surface_secondary_swell_wave_directional_spread", "sea_surface_secondary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_from_direction", "sea_surface_secondary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_mean_period", "sea_surface_secondary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_significant_height", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_swell_wave_directional_spread", "sea_surface_swell_wave_from_direction", "sea_surface_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_swell_wave_mean_period", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_swell_wave_period", "sea_surface_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_swell_wave_significant_height", "sea_surface_swell_wave_to_direction", "sea_surface_temperature", "sea_surface_tertiary_swell_wave_directional_spread", "sea_surface_tertiary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_from_direction", "sea_surface_tertiary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_mean_period", "sea_surface_tertiary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_significant_height", "sea_surface_wave_directional_spread", "sea_surface_wave_directional_spread_at_variance_spectral_density_maximum", "sea_surface_wave_directional_variance_spectral_density", "sea_surface_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wave_from_direction", "sea_surface_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wave_maximum_crest_height", "sea_surface_wave_maximum_height", "sea_surface_wave_maximum_period", "sea_surface_wave_maximum_steepness", "sea_surface_wave_maximum_trough_depth", "sea_surface_wave_mean_height", "sea_surface_wave_mean_height_of_highest_tenth", "sea_surface_wave_mean_period", "sea_surface_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wave_mean_period_of_highest_tenth", "sea_surface_wave_mean_square_slope", "sea_surface_wave_mean_square_x_slope", "sea_surface_wave_mean_square_y_slope", "sea_surface_wave_mean_wavenumber_from_variance_spectral_density_first_wavenumber_moment", "sea_surface_wave_period_at_variance_spectral_density_maximum", "sea_surface_wave_period_of_highest_wave", "sea_surface_wave_significant_height", "sea_surface_wave_significant_period", "sea_surface_wave_stokes_drift_eastward_velocity", "sea_surface_wave_stokes_drift_northward_velocity", "sea_surface_wave_stokes_drift_speed", "sea_surface_wave_stokes_drift_to_direction", "sea_surface_wave_stokes_drift_x_velocity", "sea_surface_wave_stokes_drift_y_velocity", "sea_surface_wave_to_direction", "sea_surface_wave_variance_spectral_density", "sea_surface_wave_xx_radiation_stress", "sea_surface_wave_xy_radiation_stress", "sea_surface_wave_yy_radiation_stress", "sea_surface_wind_wave_directional_spread", "sea_surface_wind_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wind_wave_from_direction", "sea_surface_wind_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wind_wave_mean_period", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wind_wave_period", "sea_surface_wind_wave_period_at_variance_spectral_density_maximum", "sea_surface_wind_wave_significant_height", "sea_surface_wind_wave_to_direction", "sea_water_absolute_salinity", "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", "sea_water_age_since_surface_contact", "sea_water_alkalinity_expressed_as_mole_equivalent", "sea_water_alkalinity_natural_analogue_expressed_as_mole_equivalent", "sea_water_conservative_temperature", "sea_water_cox_salinity", "sea_water_density", "sea_water_electrical_conductivity", "sea_water_knudsen_salinity", "sea_water_mass", "sea_water_mass_per_unit_area", "sea_water_mass_per_unit_area_expressed_as_thickness", "sea_water_neutral_density", "sea_water_ph_abiotic_analogue_reported_on_total_scale", "sea_water_ph_natural_analogue_reported_on_total_scale", "sea_water_ph_reported_on_total_scale", "sea_water_potential_density", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_practical_salinity", "sea_water_practical_salinity_at_sea_floor", "sea_water_preformed_salinity", "sea_water_pressure", "sea_water_pressure_at_sea_floor", "sea_water_pressure_at_sea_water_surface", "sea_water_pressure_due_to_sea_water", "sea_water_redistributed_conservative_temperature", "sea_water_redistributed_potential_temperature", "sea_water_reference_salinity", "sea_water_salinity", "sea_water_salinity_at_sea_floor", "sea_water_sigma_t", "sea_water_sigma_t_difference", "sea_water_sigma_theta", "sea_water_sigma_theta_difference", "sea_water_specific_potential_enthalpy", "sea_water_speed", "sea_water_speed_at_sea_floor", "sea_water_speed_due_to_tides", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "sea_water_transport_across_line", "sea_water_turbidity", "sea_water_velocity_from_direction", "sea_water_velocity_to_direction", "sea_water_velocity_to_direction_at_sea_floor", "sea_water_velocity_to_direction_due_to_tides", "sea_water_volume", "sea_water_x_velocity", "sea_water_x_velocity_due_to_parameterized_mesoscale_eddies", "sea_water_y_velocity", "sea_water_y_velocity_due_to_parameterized_mesoscale_eddies", "secchi_depth_of_sea_water", "sensor_azimuth_angle", "sensor_band_central_radiation_frequency", "sensor_band_central_radiation_wavelength", "sensor_band_central_radiation_wavenumber", "sensor_band_identifier", "sensor_view_angle", "sensor_zenith_angle", "shallow_convection_time_fraction", "shallow_convective_cloud_base_altitude", "shallow_convective_cloud_top_altitude", "shallow_convective_precipitation_flux", "signal_intensity_from_multibeam_acoustic_doppler_velocity_sensor_in_sea_water", "single_scattering_albedo_in_air_due_to_ambient_aerosol_particles", "sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_iron_in_sea_water", "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_organic_nitrogen_in_sea_water", "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", "sinking_mole_flux_of_particulate_silicon_in_sea_water", "slow_soil_pool_mass_content_of_carbon", "snow_area_fraction_viewable_from_above", "snowfall_amount", "snowfall_flux", "snow_grain_size", "snow_transport_across_line_due_to_sea_ice_dynamics", "soil_albedo", "soil_frozen_water_content", "soil_hydraulic_conductivity_at_saturation", "soil_mass_content_of_13C", "soil_mass_content_of_14C", "soil_mass_content_of_carbon", "soil_mass_content_of_inorganic_ammonium_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrate_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", "soil_mass_content_of_nitrogen", "soil_moisture_content_at_field_capacity", "soil_pool", "soil_pool_carbon_decay_rate", "soil_porosity", "soil_suction_at_saturation", "soil_temperature", "soil_thermal_capacity", "soil_thermal_conductivity", "soil_type", "soil_water_ph", "solar_azimuth_angle", "solar_elevation_angle", "solar_irradiance", "solar_irradiance_per_unit_wavelength", "solar_zenith_angle", "solid_precipitation_flux", "solid_precipitation_flux_containing_17O", "solid_precipitation_flux_containing_18O", "solid_precipitation_flux_containing_single_2H", "soot_content_of_surface_snow", "sound_frequency", "sound_intensity_in_air", "sound_intensity_in_water", "sound_intensity_level_in_air", "sound_intensity_level_in_water", "sound_pressure_in_air", "sound_pressure_in_water", "sound_pressure_level_in_air", "sound_pressure_level_in_water", "source", "specific_dry_energy_of_air", "specific_gravitational_potential_energy", "specific_heat_capacity_of_frozen_ground", "specific_heat_capacity_of_sea_water", "specific_humidity", "specific_kinetic_energy_of_air", "specific_kinetic_energy_of_sea_water", "specific_turbulent_kinetic_energy_dissipation_in_sea_water", "specific_turbulent_kinetic_energy_of_sea_water", "speed_of_sound_in_air", "speed_of_sound_in_sea_water", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_below_threshold", "spike_test_quality_flag", "square_of_air_temperature", "square_of_brunt_vaisala_frequency_in_air", "square_of_brunt_vaisala_frequency_in_sea_water", "square_of_eastward_wind", "square_of_geopotential_height", "square_of_lagrangian_tendency_of_air_pressure", "square_of_northward_wind", "square_of_ocean_mixed_layer_thickness_defined_by_sigma_t", "square_of_sea_surface_height_above_geoid", "square_of_sea_surface_salinity", "square_of_sea_surface_temperature", "square_of_upward_air_velocity", "square_of_upward_ocean_mass_transport", "status_flag", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "steric_change_in_mean_sea_level", "steric_change_in_sea_surface_height", "storm_motion_speed", "stratiform_cloud_area_fraction", "stratiform_cloud_area_fraction_in_atmosphere_layer", "stratiform_cloud_longwave_emissivity", "stratiform_graupel_fall_amount", "stratiform_graupel_flux", "stratiform_precipitation_amount", "stratiform_precipitation_flux", "stratiform_rainfall_amount", "stratiform_rainfall_flux", "stratiform_rainfall_rate", "stratiform_snowfall_amount", "stratiform_snowfall_flux", "stratosphere_mole_content_of_nitrogen_dioxide", "stratosphere_optical_thickness_due_to_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_volcanic_ambient_aerosol_particles", "subsurface_litter_mass_content_of_carbon", "subsurface_litter_mass_content_of_nitrogen", "subsurface_runoff_amount", "subsurface_runoff_flux", "sunglint_angle", "sunlit_binary_mask", "surface_air_pressure", "surface_albedo", "surface_albedo_assuming_deep_snow", "surface_albedo_assuming_no_snow", "surface_altitude", "surface_backwards_scattering_coefficient_of_radar_wave", "surface_bidirectional_reflectance", "surface_brightness_temperature", "surface_carbon_dioxide_abiotic_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_natural_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_partial_pressure_difference_between_air_and_sea_water", "surface_carbon_dioxide_partial_pressure_difference_between_sea_water_and_air", "surface_diffuse_downwelling_photosynthetic_radiative_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_diffuse_shortwave_hemispherical_reflectance", "surface_direct_along_beam_shortwave_flux_in_air", "surface_direct_downwelling_shortwave_flux_in_air", "surface_direct_shortwave_hemispherical_reflectance", "surface_downward_eastward_stress", "surface_downward_eastward_stress_due_to_boundary_layer_mixing", "surface_downward_eastward_stress_due_to_ocean_viscous_dissipation", "surface_downward_eastward_stress_due_to_sea_surface_waves", "surface_downward_heat_flux_in_air", "surface_downward_heat_flux_in_sea_ice", "surface_downward_heat_flux_in_sea_water", "surface_downward_heat_flux_in_snow", "surface_downward_latent_heat_flux", "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_ammonia", "surface_downward_mass_flux_of_carbon_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_natural_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_methane_due_to_wetland_biological_consumption", "surface_downward_mass_flux_of_water_due_to_irrigation", "surface_downward_mole_flux_of_carbon_dioxide", "surface_downward_mole_flux_of_cfc11", "surface_downward_mole_flux_of_cfc12", "surface_downward_mole_flux_of_molecular_oxygen", "surface_downward_mole_flux_of_sulfur_hexafluoride", "surface_downward_northward_stress", "surface_downward_northward_stress_due_to_boundary_layer_mixing", "surface_downward_northward_stress_due_to_ocean_viscous_dissipation", "surface_downward_northward_stress_due_to_sea_surface_waves", "surface_downward_sensible_heat_flux", "surface_downward_water_flux", "surface_downward_x_stress", "surface_downward_x_stress_correction", "surface_downward_y_stress", "surface_downward_y_stress_correction", "surface_downwelling_longwave_flux_in_air", "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", "surface_downwelling_longwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_photon_flux_in_sea_water", "surface_downwelling_photon_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_radiance_in_sea_water", "surface_downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photosynthetic_photon_flux_in_air", "surface_downwelling_photosynthetic_photon_flux_in_sea_water", "surface_downwelling_photosynthetic_photon_radiance_in_sea_water", "surface_downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photosynthetic_radiance_in_sea_water", "surface_downwelling_photosynthetic_radiative_flux_in_air", "surface_downwelling_photosynthetic_radiative_flux_in_sea_water", "surface_downwelling_photosynthetic_spherical_irradiance_in_sea_water", "surface_downwelling_radiance_in_sea_water", "surface_downwelling_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_radiative_flux_in_sea_water", "surface_downwelling_radiative_flux_per_unit_wavelength_in_air", "surface_downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_shortwave_flux_in_air", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_downwelling_shortwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_spherical_irradiance_in_sea_water", "surface_downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_drag_coefficient_for_heat_in_air", "surface_drag_coefficient_for_momentum_in_air", "surface_drag_coefficient_in_air", "surface_eastward_sea_water_velocity", "surface_frozen_carbon_dioxide_amount", "surface_geopotential", "surface_geostrophic_eastward_sea_water_velocity", "surface_geostrophic_eastward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_northward_sea_water_velocity", "surface_geostrophic_northward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_x_velocity", "surface_geostrophic_sea_water_x_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_y_velocity", "surface_geostrophic_sea_water_y_velocity_assuming_mean_sea_level_for_geoid", "surface_height_above_geopotential_datum", "surface_litter_mass_content_of_carbon", "surface_litter_mass_content_of_nitrogen", "surface_longwave_emissivity", "surface_microwave_emissivity", "surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_longwave_flux", "surface_net_downward_longwave_flux_assuming_clear_sky", "surface_net_downward_mass_flux_of_ammonia_due_to_bidirectional_surface_exchange", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change", "surface_net_downward_radiative_flux", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_shortwave_flux", "surface_net_downward_shortwave_flux_assuming_clear_sky", "surface_net_upward_longwave_flux", "surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change", "surface_net_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_processes", "surface_net_upward_radiative_flux", "surface_net_upward_shortwave_flux", "surface_northward_sea_water_velocity", "surface_partial_pressure_of_carbon_dioxide_abiotic_analogue_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_in_air", "surface_partial_pressure_of_carbon_dioxide_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_natural_analogue_in_sea_water", "surface_radioactivity_content", "surface_radioactivity_content_of_101Mo", "surface_radioactivity_content_of_101Tc", "surface_radioactivity_content_of_102Mo", "surface_radioactivity_content_of_102mTc", "surface_radioactivity_content_of_102Tc", "surface_radioactivity_content_of_103mRh", "surface_radioactivity_content_of_103Ru", "surface_radioactivity_content_of_104Tc", "surface_radioactivity_content_of_105mRh", "surface_radioactivity_content_of_105Rh", "surface_radioactivity_content_of_105Ru", "surface_radioactivity_content_of_106mRh", "surface_radioactivity_content_of_106Rh", "surface_radioactivity_content_of_106Ru", "surface_radioactivity_content_of_107mPd", "surface_radioactivity_content_of_107Pd", "surface_radioactivity_content_of_107Rh", "surface_radioactivity_content_of_109mAg", "surface_radioactivity_content_of_109Pd", "surface_radioactivity_content_of_110mAg", "surface_radioactivity_content_of_111Ag", "surface_radioactivity_content_of_111mAg", "surface_radioactivity_content_of_111mCd", "surface_radioactivity_content_of_111mPd", "surface_radioactivity_content_of_111Pd", "surface_radioactivity_content_of_112Ag", "surface_radioactivity_content_of_112Pd", "surface_radioactivity_content_of_113Ag", "surface_radioactivity_content_of_113Cd", "surface_radioactivity_content_of_113mAg", "surface_radioactivity_content_of_113mCd", "surface_radioactivity_content_of_113mIn", "surface_radioactivity_content_of_115Ag", "surface_radioactivity_content_of_115Cd", "surface_radioactivity_content_of_115In", "surface_radioactivity_content_of_115mAg", "surface_radioactivity_content_of_115mCd", "surface_radioactivity_content_of_115mIn", "surface_radioactivity_content_of_116In", "surface_radioactivity_content_of_116mIn", "surface_radioactivity_content_of_117Cd", "surface_radioactivity_content_of_117In", "surface_radioactivity_content_of_117mCd", "surface_radioactivity_content_of_117mIn", "surface_radioactivity_content_of_117mSn", "surface_radioactivity_content_of_118Cd", "surface_radioactivity_content_of_118In", "surface_radioactivity_content_of_118mIn", "surface_radioactivity_content_of_119In", "surface_radioactivity_content_of_119mIn", "surface_radioactivity_content_of_119mSn", "surface_radioactivity_content_of_11C", "surface_radioactivity_content_of_121mSn", "surface_radioactivity_content_of_121Sn", "surface_radioactivity_content_of_123mSn", "surface_radioactivity_content_of_123Sn", "surface_radioactivity_content_of_124mSb", "surface_radioactivity_content_of_124Sb", "surface_radioactivity_content_of_125mTe", "surface_radioactivity_content_of_125Sb", "surface_radioactivity_content_of_125Sn", "surface_radioactivity_content_of_126mSb", "surface_radioactivity_content_of_126Sb", "surface_radioactivity_content_of_126Sn", "surface_radioactivity_content_of_127mTe", "surface_radioactivity_content_of_127Sb", "surface_radioactivity_content_of_127Sn", "surface_radioactivity_content_of_127Te", "surface_radioactivity_content_of_128mSb", "surface_radioactivity_content_of_128Sb", "surface_radioactivity_content_of_128Sn", "surface_radioactivity_content_of_129I", "surface_radioactivity_content_of_129mTe", "surface_radioactivity_content_of_129mXe", "surface_radioactivity_content_of_129Sb", "surface_radioactivity_content_of_129Te", "surface_radioactivity_content_of_130I", "surface_radioactivity_content_of_130mI", "surface_radioactivity_content_of_130mSb", "surface_radioactivity_content_of_130Sb", "surface_radioactivity_content_of_130Sn", "surface_radioactivity_content_of_131I", "surface_radioactivity_content_of_131mTe", "surface_radioactivity_content_of_131mXe", "surface_radioactivity_content_of_131Sb", "surface_radioactivity_content_of_131Te", "surface_radioactivity_content_of_132I", "surface_radioactivity_content_of_132Te", "surface_radioactivity_content_of_133I", "surface_radioactivity_content_of_133mI", "surface_radioactivity_content_of_133mTe", "surface_radioactivity_content_of_133mXe", "surface_radioactivity_content_of_133Te", "surface_radioactivity_content_of_133Xe", "surface_radioactivity_content_of_134Cs", "surface_radioactivity_content_of_134I", "surface_radioactivity_content_of_134mCs", "surface_radioactivity_content_of_134mI", "surface_radioactivity_content_of_134mXe", "surface_radioactivity_content_of_134Te", "surface_radioactivity_content_of_135Cs", "surface_radioactivity_content_of_135I", "surface_radioactivity_content_of_135mBa", "surface_radioactivity_content_of_135mCs", "surface_radioactivity_content_of_135mXe", "surface_radioactivity_content_of_135Xe", "surface_radioactivity_content_of_136Cs", "surface_radioactivity_content_of_137Cs", "surface_radioactivity_content_of_137mBa", "surface_radioactivity_content_of_137Xe", "surface_radioactivity_content_of_138Cs", "surface_radioactivity_content_of_138Xe", "surface_radioactivity_content_of_139Ba", "surface_radioactivity_content_of_13N", "surface_radioactivity_content_of_140Ba", "surface_radioactivity_content_of_140La", "surface_radioactivity_content_of_141Ce", "surface_radioactivity_content_of_141La", "surface_radioactivity_content_of_142Ce", "surface_radioactivity_content_of_142La", "surface_radioactivity_content_of_142mPr", "surface_radioactivity_content_of_142Pr", "surface_radioactivity_content_of_143Ce", "surface_radioactivity_content_of_143La", "surface_radioactivity_content_of_143Pr", "surface_radioactivity_content_of_144Ce", "surface_radioactivity_content_of_144mPr", "surface_radioactivity_content_of_144Nd", "surface_radioactivity_content_of_144Pr", "surface_radioactivity_content_of_145Pr", "surface_radioactivity_content_of_146Ce", "surface_radioactivity_content_of_146Pr", "surface_radioactivity_content_of_147Nd", "surface_radioactivity_content_of_147Pm", "surface_radioactivity_content_of_147Pr", "surface_radioactivity_content_of_147Sm", "surface_radioactivity_content_of_148mPm", "surface_radioactivity_content_of_148Pm", "surface_radioactivity_content_of_148Sm", "surface_radioactivity_content_of_149Nd", "surface_radioactivity_content_of_149Pm", "surface_radioactivity_content_of_149Sm", "surface_radioactivity_content_of_150Pm", "surface_radioactivity_content_of_151Nd", "surface_radioactivity_content_of_151Pm", "surface_radioactivity_content_of_151Sm", "surface_radioactivity_content_of_152mPm", "surface_radioactivity_content_of_152Nd", "surface_radioactivity_content_of_152Pm", "surface_radioactivity_content_of_153Sm", "surface_radioactivity_content_of_154Eu", "surface_radioactivity_content_of_155Eu", "surface_radioactivity_content_of_155Sm", "surface_radioactivity_content_of_156Eu", "surface_radioactivity_content_of_156Sm", "surface_radioactivity_content_of_157Eu", "surface_radioactivity_content_of_158Eu", "surface_radioactivity_content_of_159Eu", "surface_radioactivity_content_of_159Gd", "surface_radioactivity_content_of_15O", "surface_radioactivity_content_of_160Tb", "surface_radioactivity_content_of_161Tb", "surface_radioactivity_content_of_162Gd", "surface_radioactivity_content_of_162mTb", "surface_radioactivity_content_of_162Tb", "surface_radioactivity_content_of_163Tb", "surface_radioactivity_content_of_165Dy", "surface_radioactivity_content_of_18F", "surface_radioactivity_content_of_206Hg", "surface_radioactivity_content_of_206Tl", "surface_radioactivity_content_of_207mPb", "surface_radioactivity_content_of_207Tl", "surface_radioactivity_content_of_208Tl", "surface_radioactivity_content_of_209Bi", "surface_radioactivity_content_of_209Pb", "surface_radioactivity_content_of_209Tl", "surface_radioactivity_content_of_210Bi", "surface_radioactivity_content_of_210Pb", "surface_radioactivity_content_of_210Po", "surface_radioactivity_content_of_210Tl", "surface_radioactivity_content_of_211Bi", "surface_radioactivity_content_of_211Pb", "surface_radioactivity_content_of_211Po", "surface_radioactivity_content_of_212Bi", "surface_radioactivity_content_of_212Pb", "surface_radioactivity_content_of_212Po", "surface_radioactivity_content_of_213Bi", "surface_radioactivity_content_of_213Pb", "surface_radioactivity_content_of_213Po", "surface_radioactivity_content_of_214Bi", "surface_radioactivity_content_of_214Pb", "surface_radioactivity_content_of_214Po", "surface_radioactivity_content_of_215At", "surface_radioactivity_content_of_215Bi", "surface_radioactivity_content_of_215Po", "surface_radioactivity_content_of_216At", "surface_radioactivity_content_of_216Po", "surface_radioactivity_content_of_217At", "surface_radioactivity_content_of_217Po", "surface_radioactivity_content_of_218At", "surface_radioactivity_content_of_218Po", "surface_radioactivity_content_of_218Rn", "surface_radioactivity_content_of_219At", "surface_radioactivity_content_of_219Rn", "surface_radioactivity_content_of_220Rn", "surface_radioactivity_content_of_221Fr", "surface_radioactivity_content_of_221Rn", "surface_radioactivity_content_of_222Fr", "surface_radioactivity_content_of_222Ra", "surface_radioactivity_content_of_222Rn", "surface_radioactivity_content_of_223Fr", "surface_radioactivity_content_of_223Ra", "surface_radioactivity_content_of_223Rn", "surface_radioactivity_content_of_224Ra", "surface_radioactivity_content_of_225Ac", "surface_radioactivity_content_of_225Ra", "surface_radioactivity_content_of_226Ac", "surface_radioactivity_content_of_226Ra", "surface_radioactivity_content_of_226Th", "surface_radioactivity_content_of_227Ac", "surface_radioactivity_content_of_227Ra", "surface_radioactivity_content_of_227Th", "surface_radioactivity_content_of_228Ac", "surface_radioactivity_content_of_228Ra", "surface_radioactivity_content_of_228Th", "surface_radioactivity_content_of_229Ac", "surface_radioactivity_content_of_229Ra", "surface_radioactivity_content_of_229Th", "surface_radioactivity_content_of_230Pa", "surface_radioactivity_content_of_230Th", "surface_radioactivity_content_of_230U", "surface_radioactivity_content_of_231Pa", "surface_radioactivity_content_of_231Th", "surface_radioactivity_content_of_231U", "surface_radioactivity_content_of_232Pa", "surface_radioactivity_content_of_232Th", "surface_radioactivity_content_of_232U", "surface_radioactivity_content_of_233Pa", "surface_radioactivity_content_of_233Th", "surface_radioactivity_content_of_233U", "surface_radioactivity_content_of_234mPa", "surface_radioactivity_content_of_234Pa", "surface_radioactivity_content_of_234Th", "surface_radioactivity_content_of_234U", "surface_radioactivity_content_of_235Np", "surface_radioactivity_content_of_235Pu", "surface_radioactivity_content_of_235U", "surface_radioactivity_content_of_236mNp", "surface_radioactivity_content_of_236Np", "surface_radioactivity_content_of_236Pu", "surface_radioactivity_content_of_236U", "surface_radioactivity_content_of_237Np", "surface_radioactivity_content_of_237Pu", "surface_radioactivity_content_of_237U", "surface_radioactivity_content_of_238Np", "surface_radioactivity_content_of_238Pu", "surface_radioactivity_content_of_238U", "surface_radioactivity_content_of_239Np", "surface_radioactivity_content_of_239Pu", "surface_radioactivity_content_of_239U", "surface_radioactivity_content_of_240Am", "surface_radioactivity_content_of_240mNp", "surface_radioactivity_content_of_240Np", "surface_radioactivity_content_of_240Pu", "surface_radioactivity_content_of_240U", "surface_radioactivity_content_of_241Am", "surface_radioactivity_content_of_241Cm", "surface_radioactivity_content_of_241Pu", "surface_radioactivity_content_of_242Am", "surface_radioactivity_content_of_242Cm", "surface_radioactivity_content_of_242m1Am", "surface_radioactivity_content_of_242m2Am", "surface_radioactivity_content_of_242Pu", "surface_radioactivity_content_of_243Am", "surface_radioactivity_content_of_243Cm", "surface_radioactivity_content_of_243Pu", "surface_radioactivity_content_of_244Am", "surface_radioactivity_content_of_244Cm", "surface_radioactivity_content_of_244mAm", "surface_radioactivity_content_of_244Pu", "surface_radioactivity_content_of_245Am", "surface_radioactivity_content_of_245Cm", "surface_radioactivity_content_of_245Pu", "surface_radioactivity_content_of_246Cm", "surface_radioactivity_content_of_247Cm", "surface_radioactivity_content_of_248Cm", "surface_radioactivity_content_of_249Bk", "surface_radioactivity_content_of_249Cf", "surface_radioactivity_content_of_249Cm", "surface_radioactivity_content_of_24Na", "surface_radioactivity_content_of_250Bk", "surface_radioactivity_content_of_250Cf", "surface_radioactivity_content_of_250Cm", "surface_radioactivity_content_of_251Cf", "surface_radioactivity_content_of_252Cf", "surface_radioactivity_content_of_253Cf", "surface_radioactivity_content_of_253Es", "surface_radioactivity_content_of_254Cf", "surface_radioactivity_content_of_254Es", "surface_radioactivity_content_of_254mEs", "surface_radioactivity_content_of_255Es", "surface_radioactivity_content_of_3H", "surface_radioactivity_content_of_41Ar", "surface_radioactivity_content_of_54Mn", "surface_radioactivity_content_of_58Co", "surface_radioactivity_content_of_60Co", "surface_radioactivity_content_of_72Ga", "surface_radioactivity_content_of_72Zn", "surface_radioactivity_content_of_73Ga", "surface_radioactivity_content_of_75Ge", "surface_radioactivity_content_of_77As", "surface_radioactivity_content_of_77Ge", "surface_radioactivity_content_of_77mGe", "surface_radioactivity_content_of_78As", "surface_radioactivity_content_of_78Ge", "surface_radioactivity_content_of_79Se", "surface_radioactivity_content_of_81mSe", "surface_radioactivity_content_of_81Se", "surface_radioactivity_content_of_82Br", "surface_radioactivity_content_of_82mBr", "surface_radioactivity_content_of_83Br", "surface_radioactivity_content_of_83mKr", "surface_radioactivity_content_of_83mSe", "surface_radioactivity_content_of_83Se", "surface_radioactivity_content_of_84Br", "surface_radioactivity_content_of_84mBr", "surface_radioactivity_content_of_85Kr", "surface_radioactivity_content_of_85mKr", "surface_radioactivity_content_of_86mRb", "surface_radioactivity_content_of_86Rb", "surface_radioactivity_content_of_87Kr", "surface_radioactivity_content_of_87Rb", "surface_radioactivity_content_of_88Kr", "surface_radioactivity_content_of_88Rb", "surface_radioactivity_content_of_89Kr", "surface_radioactivity_content_of_89Rb", "surface_radioactivity_content_of_89Sr", "surface_radioactivity_content_of_90mY", "surface_radioactivity_content_of_90Sr", "surface_radioactivity_content_of_90Y", "surface_radioactivity_content_of_91mY", "surface_radioactivity_content_of_91Sr", "surface_radioactivity_content_of_91Y", "surface_radioactivity_content_of_92Sr", "surface_radioactivity_content_of_92Y", "surface_radioactivity_content_of_93Y", "surface_radioactivity_content_of_93Zr", "surface_radioactivity_content_of_94mNb", "surface_radioactivity_content_of_94Nb", "surface_radioactivity_content_of_94Y", "surface_radioactivity_content_of_95mNb", "surface_radioactivity_content_of_95Nb", "surface_radioactivity_content_of_95Y", "surface_radioactivity_content_of_95Zr", "surface_radioactivity_content_of_96Nb", "surface_radioactivity_content_of_97mNb", "surface_radioactivity_content_of_97Nb", "surface_radioactivity_content_of_97Zr", "surface_radioactivity_content_of_98Nb", "surface_radioactivity_content_of_99Mo", "surface_radioactivity_content_of_99mTc", "surface_radioactivity_content_of_99Tc", "surface_ratio_of_upwelling_radiance_emerging_from_sea_water_to_downwelling_radiative_flux_in_air", "surface_roughness_length", "surface_roughness_length_for_heat_in_air", "surface_roughness_length_for_humidity_in_air", "surface_roughness_length_for_momentum_in_air", "surface_runoff_amount", "surface_runoff_flux", "surface_snow_amount", "surface_snow_and_ice_melt_flux", "surface_snow_and_ice_melt_heat_flux", "surface_snow_and_ice_refreezing_flux", "surface_snow_area_fraction", "surface_snow_binary_mask", "surface_snow_density", "surface_snow_melt_amount", "surface_snow_melt_and_sublimation_heat_flux", "surface_snow_melt_flux", "surface_snow_melt_heat_flux", "surface_snow_sublimation_amount", "surface_snow_sublimation_heat_flux", "surface_snow_thickness", "surface_specific_humidity", "surface_temperature", "surface_temperature_anomaly", "surface_upward_eastward_stress_due_to_sea_surface_waves", "surface_upward_heat_flux_due_to_anthropogenic_energy_consumption", "surface_upward_heat_flux_in_air", "surface_upward_latent_heat_flux", "surface_upward_latent_heat_flux_due_to_sublimation", "surface_upward_mass_flux_of_ammonia", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change_excluding_forestry_and_agricultural_products", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_grazing", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_litter_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_vegetation_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_growth", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_maintenance", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_leaves", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_miscellaneous_living_matter", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_roots", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_respiration_in_soil", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_litter", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_soil", "surface_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_production", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_all_land_processes_excluding_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_emission_from_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mole_flux_of_carbon_dioxide", "surface_upward_mole_flux_of_dimethyl_sulfide", "surface_upward_northward_stress_due_to_sea_surface_waves", "surface_upward_sensible_heat_flux", "surface_upward_water_flux", "surface_upward_water_vapor_flux_in_air", "surface_upwelling_longwave_flux_in_air", "surface_upwelling_longwave_flux_in_air_assuming_clear_sky", "surface_upwelling_photosynthetic_photon_flux_in_air", "surface_upwelling_radiance_in_air", "surface_upwelling_radiance_in_air_emerging_from_sea_water", "surface_upwelling_radiance_in_air_reflected_by_sea_water", "surface_upwelling_radiance_in_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air", "surface_upwelling_radiance_per_unit_wavelength_in_air_emerging_from_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air_reflected_by_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_sea_water", "surface_upwelling_radiative_flux_per_unit_wavelength_in_air", "surface_upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_upwelling_shortwave_flux_in_air", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_water_amount", "surface_water_evaporation_flux", "syntax_test_quality_flag", "temperature_at_base_of_ice_sheet_model", "temperature_at_top_of_ice_sheet_model", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically_from_the_surface", "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "tendency_of_air_density", "tendency_of_air_pressure", "tendency_of_air_temperature", "tendency_of_air_temperature_due_to_advection", "tendency_of_air_temperature_due_to_boundary_layer_mixing", "tendency_of_air_temperature_due_to_convection", "tendency_of_air_temperature_due_to_diabatic_processes", "tendency_of_air_temperature_due_to_diffusion", "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", "tendency_of_air_temperature_due_to_dry_convection", "tendency_of_air_temperature_due_to_longwave_heating", "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_model_physics", "tendency_of_air_temperature_due_to_moist_convection", "tendency_of_air_temperature_due_to_radiative_heating", "tendency_of_air_temperature_due_to_shortwave_heating", "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_air_temperature_due_to_stratiform_precipitation", "tendency_of_air_temperature_due_to_turbulence", "tendency_of_atmosphere_dry_energy_content", "tendency_of_atmosphere_enthalpy_content_due_to_advection", "tendency_of_atmosphere_kinetic_energy_content_due_to_advection", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetone_due_to_emission", "tendency_of_atmosphere_mass_content_of_aceto_nitrile_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alkanes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alkenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alpha_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_aromatic_compounds_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_beta_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_forestry_and_agricultural_products", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_tetrachloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113a_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc114_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc115_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc11_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc12_due_to_emission", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_halon1202_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1211_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1301_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon2402_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcc140a_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc141b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc142b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc22_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_emission", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_limonene_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_methanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_bromide_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_chloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_monoterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_land_use_or_land_cover_change", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_soil", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition_into_stomata", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_peroxyacetyl_nitrate_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_peroxynitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_radon_due_to_emission", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sesquiterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_aqueous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_gaseous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_trimethylbenzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_water_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_deep_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_shallow_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_turbulence", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_per_unit_area", "tendency_of_atmosphere_mass_per_unit_area_due_to_advection", "tendency_of_atmosphere_mole_concentration_of_carbon_monoxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_nitrous_oxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_production", "tendency_of_atmosphere_moles_of_acetic_acid", "tendency_of_atmosphere_moles_of_aceto_nitrile", "tendency_of_atmosphere_moles_of_alpha_hexachlorocyclohexane", "tendency_of_atmosphere_moles_of_alpha_pinene", "tendency_of_atmosphere_moles_of_ammonia", "tendency_of_atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_atomic_bromine", "tendency_of_atmosphere_moles_of_atomic_chlorine", "tendency_of_atmosphere_moles_of_atomic_nitrogen", "tendency_of_atmosphere_moles_of_benzene", "tendency_of_atmosphere_moles_of_beta_pinene", "tendency_of_atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_bromine_chloride", "tendency_of_atmosphere_moles_of_bromine_monoxide", "tendency_of_atmosphere_moles_of_bromine_nitrate", "tendency_of_atmosphere_moles_of_brox_expressed_as_bromine", "tendency_of_atmosphere_moles_of_butane", "tendency_of_atmosphere_moles_of_carbon_dioxide", "tendency_of_atmosphere_moles_of_carbon_monoxide", "tendency_of_atmosphere_moles_of_carbon_tetrachloride", "tendency_of_atmosphere_moles_of_cfc11", "tendency_of_atmosphere_moles_of_cfc113", "tendency_of_atmosphere_moles_of_cfc113a", "tendency_of_atmosphere_moles_of_cfc114", "tendency_of_atmosphere_moles_of_cfc115", "tendency_of_atmosphere_moles_of_cfc12", "tendency_of_atmosphere_moles_of_chlorine_dioxide", "tendency_of_atmosphere_moles_of_chlorine_monoxide", "tendency_of_atmosphere_moles_of_chlorine_nitrate", "tendency_of_atmosphere_moles_of_clox_expressed_as_chlorine", "tendency_of_atmosphere_moles_of_dichlorine_peroxide", "tendency_of_atmosphere_moles_of_dimethyl_sulfide", "tendency_of_atmosphere_moles_of_dinitrogen_pentoxide", "tendency_of_atmosphere_moles_of_ethane", "tendency_of_atmosphere_moles_of_ethanol", "tendency_of_atmosphere_moles_of_ethene", "tendency_of_atmosphere_moles_of_ethyne", "tendency_of_atmosphere_moles_of_formaldehyde", "tendency_of_atmosphere_moles_of_formic_acid", "tendency_of_atmosphere_moles_of_gaseous_divalent_mercury", "tendency_of_atmosphere_moles_of_gaseous_elemental_mercury", "tendency_of_atmosphere_moles_of_halon1202", "tendency_of_atmosphere_moles_of_halon1211", "tendency_of_atmosphere_moles_of_halon1301", "tendency_of_atmosphere_moles_of_halon2402", "tendency_of_atmosphere_moles_of_hcc140a", "tendency_of_atmosphere_moles_of_hcfc141b", "tendency_of_atmosphere_moles_of_hcfc142b", "tendency_of_atmosphere_moles_of_hcfc22", "tendency_of_atmosphere_moles_of_hexachlorobiphenyl", "tendency_of_atmosphere_moles_of_hox_expressed_as_hydrogen", "tendency_of_atmosphere_moles_of_hydrogen_bromide", "tendency_of_atmosphere_moles_of_hydrogen_chloride", "tendency_of_atmosphere_moles_of_hydrogen_cyanide", "tendency_of_atmosphere_moles_of_hydrogen_peroxide", "tendency_of_atmosphere_moles_of_hydroperoxyl_radical", "tendency_of_atmosphere_moles_of_hydroxyl_radical", "tendency_of_atmosphere_moles_of_hypobromous_acid", "tendency_of_atmosphere_moles_of_hypochlorous_acid", "tendency_of_atmosphere_moles_of_inorganic_bromine", "tendency_of_atmosphere_moles_of_inorganic_chlorine", "tendency_of_atmosphere_moles_of_isoprene", "tendency_of_atmosphere_moles_of_limonene", "tendency_of_atmosphere_moles_of_methane", "tendency_of_atmosphere_moles_of_methanol", "tendency_of_atmosphere_moles_of_methyl_bromide", "tendency_of_atmosphere_moles_of_methyl_chloride", "tendency_of_atmosphere_moles_of_methyl_hydroperoxide", "tendency_of_atmosphere_moles_of_methyl_peroxy_radical", "tendency_of_atmosphere_moles_of_molecular_hydrogen", "tendency_of_atmosphere_moles_of_nitrate_radical", "tendency_of_atmosphere_moles_of_nitric_acid", "tendency_of_atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "tendency_of_atmosphere_moles_of_nitrogen_dioxide", "tendency_of_atmosphere_moles_of_nitrogen_monoxide", "tendency_of_atmosphere_moles_of_nitrous_acid", "tendency_of_atmosphere_moles_of_nitrous_oxide", "tendency_of_atmosphere_moles_of_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_nox_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_noy_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_ozone", "tendency_of_atmosphere_moles_of_peroxyacetyl_nitrate", "tendency_of_atmosphere_moles_of_peroxynitric_acid", "tendency_of_atmosphere_moles_of_propane", "tendency_of_atmosphere_moles_of_propene", "tendency_of_atmosphere_moles_of_radon", "tendency_of_atmosphere_moles_of_sulfate_dry_aerosol_particles", "tendency_of_atmosphere_moles_of_sulfur_dioxide", "tendency_of_atmosphere_moles_of_toluene", "tendency_of_atmosphere_moles_of_water_vapor", "tendency_of_atmosphere_moles_of_xylene", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_potential_energy_content_due_to_advection", "tendency_of_bedrock_altitude", "tendency_of_canopy_water_amount_due_to_evaporation_of_intercepted_precipitation", "tendency_of_change_in_land_ice_amount", "tendency_of_dry_energy_content_of_atmosphere_layer", "tendency_of_dry_static_energy_content_of_atmosphere_layer", "tendency_of_eastward_wind", "tendency_of_eastward_wind_due_to_advection", "tendency_of_eastward_wind_due_to_advection_by_northward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_advection_by_upward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_convection", "tendency_of_eastward_wind_due_to_diffusion", "tendency_of_eastward_wind_due_to_eliassen_palm_flux_divergence", "tendency_of_eastward_wind_due_to_gravity_wave_drag", "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_eastward_wind_due_to_numerical_artefacts", "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_enthalpy_content_of_atmosphere_layer_due_to_advection", "tendency_of_global_average_sea_level_change", "tendency_of_kinetic_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_land_ice_mass", "tendency_of_land_ice_mass_due_to_basal_mass_balance", "tendency_of_land_ice_mass_due_to_calving", "tendency_of_land_ice_mass_due_to_surface_mass_balance", "tendency_of_land_ice_thickness", "tendency_of_mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_dioxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nox_expressed_as_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_deep_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_shallow_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_turbulence", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_convective_cloud_ice_in_air", "tendency_of_mass_fraction_of_convective_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_aggregation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_bergeron_findeisen_process_from_cloud_liquid", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_deposition_and_sublimation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_evaporation_of_melting_ice", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_water_vapor", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_autoconversion", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_bergeron_findeisen_process_to_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_convection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_longwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_pressure_change", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_shortwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_turbulence", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_heterogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_melting_from_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_riming", "tendency_of_middle_atmosphere_moles_of_carbon_monoxide", "tendency_of_middle_atmosphere_moles_of_hcc140a", "tendency_of_middle_atmosphere_moles_of_methane", "tendency_of_middle_atmosphere_moles_of_methyl_bromide", "tendency_of_middle_atmosphere_moles_of_methyl_chloride", "tendency_of_middle_atmosphere_moles_of_molecular_hydrogen", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_dissolved_inorganic_carbon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_iron_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_silicon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_dissolution_from_inorganic_particles", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_scavenging_by_inorganic_particles", "tendency_of_mole_concentration_of_iron_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_and_photolytic_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_destruction", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_calcareous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diatoms", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diazotrophic_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_miscellaneous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_picophytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_nitrate_utilization", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_remineralization", "tendency_of_mole_concentration_of_silicon_in_sea_water_due_to_biological_production", "tendency_of_northward_wind", "tendency_of_northward_wind_due_to_advection", "tendency_of_northward_wind_due_to_convection", "tendency_of_northward_wind_due_to_diffusion", "tendency_of_northward_wind_due_to_gravity_wave_drag", "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_northward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_ocean_barotropic_streamfunction", "tendency_of_ocean_eddy_kinetic_energy_content_due_to_parameterized_eddy_advection", "tendency_of_ocean_mole_content_of_aragonite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_calcite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_deposition_and_fixation_and_runoff", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_fixation", "tendency_of_ocean_mole_content_of_inorganic_carbon", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_iron_due_to_biological_production", "tendency_of_ocean_mole_content_of_iron_due_to_deposition_and_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "tendency_of_ocean_mole_content_of_nitrogen_due_to_biological_production", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_phosphorus_due_to_biological_production", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_silicon_due_to_biological_production", "tendency_of_ocean_potential_energy_content", "tendency_of_ocean_potential_energy_content_due_to_background", "tendency_of_ocean_potential_energy_content_due_to_tides", "tendency_of_potential_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_convection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_diffusion", "tendency_of_sea_ice_amount_due_to_basal_melting", "tendency_of_sea_ice_amount_due_to_congelation_ice_accumulation", "tendency_of_sea_ice_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_sea_ice_amount_due_to_frazil_ice_accumulation_in_leads", "tendency_of_sea_ice_amount_due_to_lateral_growth_of_ice_floes", "tendency_of_sea_ice_amount_due_to_lateral_melting", "tendency_of_sea_ice_amount_due_to_sea_ice_dynamics", "tendency_of_sea_ice_amount_due_to_sea_ice_thermodynamics", "tendency_of_sea_ice_amount_due_to_surface_melting", "tendency_of_sea_ice_area_fraction_due_to_dynamics", "tendency_of_sea_ice_area_fraction_due_to_ridging", "tendency_of_sea_ice_area_fraction_due_to_thermodynamics", "tendency_of_sea_ice_thickness_due_to_dynamics", "tendency_of_sea_ice_thickness_due_to_thermodynamics", "tendency_of_sea_surface_height_above_mean_sea_level", "tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_salinity", "tendency_of_sea_water_salinity_due_to_advection", "tendency_of_sea_water_salinity_due_to_horizontal_mixing", "tendency_of_sea_water_salinity_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_due_to_sea_ice_thermodynamics", "tendency_of_sea_water_salinity_due_to_vertical_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_residual_mean_advection", "tendency_of_sea_water_temperature", "tendency_of_sea_water_temperature_due_to_advection", "tendency_of_sea_water_temperature_due_to_horizontal_mixing", "tendency_of_sea_water_temperature_due_to_parameterized_eddy_advection", "tendency_of_sea_water_temperature_due_to_vertical_mixing", "tendency_of_soil_and_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_soil_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fertilization", "tendency_of_specific_humidity", "tendency_of_specific_humidity_due_to_advection", "tendency_of_specific_humidity_due_to_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_convection", "tendency_of_specific_humidity_due_to_diffusion", "tendency_of_specific_humidity_due_to_model_physics", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_stratiform_precipitation", "tendency_of_surface_air_pressure", "tendency_of_surface_snow_amount", "tendency_of_surface_snow_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_surface_snow_amount_due_to_drifting_into_sea", "tendency_of_surface_snow_amount_due_to_sea_ice_dynamics", "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", "tendency_of_troposphere_moles_of_carbon_monoxide", "tendency_of_troposphere_moles_of_hcc140a", "tendency_of_troposphere_moles_of_hcfc22", "tendency_of_troposphere_moles_of_methane", "tendency_of_troposphere_moles_of_methyl_bromide", "tendency_of_troposphere_moles_of_methyl_chloride", "tendency_of_troposphere_moles_of_molecular_hydrogen", "tendency_of_upward_air_velocity", "tendency_of_upward_air_velocity_due_to_advection", "tendency_of_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_wind_speed_due_to_convection", "tendency_of_wind_speed_due_to_gravity_wave_drag", "thermal_conductivity_of_frozen_ground", "thermal_energy_content_of_surface_snow", "thermodynamic_phase_of_cloud_water_particles_at_cloud_top", "thermosteric_change_in_mean_sea_level", "thermosteric_change_in_sea_surface_height", "thickness_of_convective_rainfall_amount", "thickness_of_convective_snowfall_amount", "thickness_of_ice_on_sea_ice_melt_pond", "thickness_of_liquid_water_cloud", "thickness_of_rainfall_amount", "thickness_of_snowfall_amount", "thickness_of_stratiform_rainfall_amount", "thickness_of_stratiform_snowfall_amount", "thunderstorm_probability", "tidal_sea_surface_height_above_lowest_astronomical_tide", "tidal_sea_surface_height_above_mean_higher_high_water", "tidal_sea_surface_height_above_mean_lower_low_water", "tidal_sea_surface_height_above_mean_low_water_springs", "tidal_sea_surface_height_above_mean_sea_level", "time", "time_of_maximum_flood_depth", "time_sample_difference_due_to_collocation", "time_when_flood_water_falls_below_threshold", "time_when_flood_water_rises_above_threshold", "toa_adjusted_longwave_forcing", "toa_adjusted_radiative_forcing", "toa_adjusted_shortwave_forcing", "toa_bidirectional_reflectance", "toa_brightness_temperature", "toa_brightness_temperature_assuming_clear_sky", "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", "toa_brightness_temperature_of_standard_scene", "toa_cloud_radiative_effect", "toa_incoming_shortwave_flux", "toa_instantaneous_longwave_forcing", "toa_instantaneous_radiative_forcing", "toa_instantaneous_shortwave_forcing", "toa_longwave_cloud_radiative_effect", "toa_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "toa_net_downward_longwave_flux", "toa_net_downward_longwave_flux_assuming_clear_sky", "toa_net_downward_radiative_flux", "toa_net_downward_shortwave_flux", "toa_net_downward_shortwave_flux_assuming_clear_sky", "toa_net_upward_longwave_flux", "toa_net_upward_longwave_flux_assuming_clear_sky", "toa_net_upward_shortwave_flux", "toa_outgoing_longwave_flux", "toa_outgoing_longwave_flux_assuming_clear_sky", "toa_outgoing_longwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_outgoing_radiance_per_unit_wavelength", "toa_outgoing_radiance_per_unit_wavelength_due_to_solar_induced_fluorescence", "toa_outgoing_radiance_per_unit_wavenumber", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_target", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_target", "toa_outgoing_shortwave_flux", "toa_outgoing_shortwave_flux_assuming_clear_sky", "toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol", "toa_outgoing_shortwave_flux_assuming_no_aerosol", "toa_outgoing_shortwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_shortwave_cloud_radiative_effect", "to_direction_of_air_velocity_relative_to_sea_water", "to_direction_of_surface_downward_stress", "tracer_lifetime", "transpiration_amount", "transpiration_flux", "tropical_cyclone_eye_brightness_temperature", "tropical_cyclone_maximum_sustained_wind_speed", "tropopause_adjusted_longwave_forcing", "tropopause_adjusted_radiative_forcing", "tropopause_adjusted_shortwave_forcing", "tropopause_air_pressure", "tropopause_air_temperature", "tropopause_altitude", "tropopause_downwelling_longwave_flux", "tropopause_instantaneous_longwave_forcing", "tropopause_instantaneous_radiative_forcing", "tropopause_instantaneous_shortwave_forcing", "tropopause_net_downward_longwave_flux", "tropopause_net_downward_shortwave_flux", "tropopause_upwelling_shortwave_flux", "troposphere_mole_content_of_bromine_monoxide", "troposphere_mole_content_of_formaldehyde", "troposphere_mole_content_of_glyoxal", "troposphere_mole_content_of_iodine_monoxide", "troposphere_mole_content_of_nitrogen_dioxide", "troposphere_mole_content_of_ozone", "troposphere_mole_content_of_sulfur_dioxide", "turbulent_mixing_length_of_sea_water", "ultraviolet_index", "ultraviolet_index_assuming_clear_sky", "ultraviolet_index_assuming_overcast_sky", "upward_air_velocity", "upward_derivative_of_eastward_wind", "upward_derivative_of_northward_wind", "upward_derivative_of_wind_from_direction", "upward_dry_static_energy_flux_due_to_diffusion", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_eastward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_westward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_orographic_gravity_waves", "upward_eastward_stress_at_sea_ice_base", "upward_eliassen_palm_flux_in_air", "upward_geothermal_heat_flux_at_ground_level_in_land_ice", "upward_geothermal_heat_flux_at_sea_floor", "upward_heat_flux_at_ground_level_in_snow", "upward_heat_flux_at_ground_level_in_soil", "upward_heat_flux_in_air", "upward_heat_flux_in_sea_water_due_to_convection", "upward_latent_heat_flux_in_air", "upward_mass_flux_of_air", "upward_northward_stress_at_sea_ice_base", "upward_ocean_mass_transport", "upward_sea_ice_basal_heat_flux", "upward_sea_water_velocity", "upward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "upward_sensible_heat_flux_in_air", "upward_transformed_eulerian_mean_air_velocity", "upward_upward_derivative_of_geopotential", "upward_water_vapor_flux_in_air", "upward_water_vapor_flux_in_air_due_to_diffusion", "upward_x_stress_at_sea_ice_base", "upward_y_stress_at_sea_ice_base", "upwelling_longwave_flux_in_air", "upwelling_longwave_flux_in_air_assuming_clear_sky", "upwelling_longwave_radiance_in_air", "upwelling_radiance_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "upwelling_shortwave_flux_in_air", "upwelling_shortwave_flux_in_air_assuming_clear_sky", "upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "upwelling_shortwave_radiance_in_air", "vegetation_area_fraction", "vegetation_carbon_content", "vegetation_mass_content_of_13C", "vegetation_mass_content_of_14C", "vegetation_mass_content_of_nitrogen", "vertical_component_of_ocean_xy_tracer_diffusivity", "vertical_navigation_clearance_above_waterway_surface", "virtual_salt_flux_correction", "virtual_salt_flux_into_sea_water", "virtual_salt_flux_into_sea_water_due_to_evaporation", "virtual_salt_flux_into_sea_water_due_to_newtonian_relaxation", "virtual_salt_flux_into_sea_water_due_to_rainfall", "virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "virtual_salt_flux_into_sea_water_from_rivers", "virtual_temperature", "visibility_in_air", "volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles", "volume_absorption_coefficient_of_radiative_flux_in_sea_water", "volume_absorption_coefficient_of_radiative_flux_in_sea_water_due_to_dissolved_organic_matter", "volume_attenuated_backwards_scattering_function_in_air", "volume_attenuated_backwards_scattering_function_in_air_assuming_no_aerosol_or_cloud", "volume_attenuation_coefficient_of_downwelling_radiative_flux_in_sea_water", "volume_backwards_scattering_coefficient_in_air_due_to_dried_aerosol_particles", "volume_backwards_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water_corrected_for_pure_water_attenuance", "volume_extinction_coefficient_in_air_due_to_ambient_aerosol_particles", "volume_extinction_coefficient_in_air_due_to_cloud_particles", "volume_fraction_of_clay_in_soil", "volume_fraction_of_condensed_water_in_soil", "volume_fraction_of_condensed_water_in_soil_at_critical_point", "volume_fraction_of_condensed_water_in_soil_at_field_capacity", "volume_fraction_of_condensed_water_in_soil_at_wilting_point", "volume_fraction_of_condensed_water_in_soil_pores", "volume_fraction_of_frozen_water_in_soil", "volume_fraction_of_oxygen_in_sea_water", "volume_fraction_of_sand_in_soil", "volume_fraction_of_silt_in_soil", "volume_mixing_ratio_of_oxygen_at_stp_in_sea_water", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_dried_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_scattering_function_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_function_of_radiative_flux_in_sea_water", "water_evaporation_amount", "water_evaporation_amount_from_canopy", "water_evaporation_flux_from_canopy", "water_evaporation_flux_from_soil", "water_evapotranspiration_flux", "water_flux_correction", "water_flux_into_sea_water", "water_flux_into_sea_water_due_to_sea_ice_thermodynamics", "water_flux_into_sea_water_due_to_surface_drainage", "water_flux_into_sea_water_from_icebergs", "water_flux_into_sea_water_from_land_ice", "water_flux_into_sea_water_from_rivers", "water_flux_into_sea_water_from_rivers_and_surface_downward_water_flux", "water_flux_into_sea_water_without_flux_correction", "water_flux_out_of_sea_ice_and_sea_water", "water_flux_out_of_sea_water", "water_flux_out_of_sea_water_due_to_newtonian_relaxation", "water_flux_out_of_sea_water_due_to_sea_ice_thermodynamics", "water_potential_evaporation_amount", "water_potential_evaporation_flux", "water_sublimation_flux", "water_surface_height_above_reference_datum", "water_surface_reference_datum_altitude", "water_table_depth", "water_vapor_partial_pressure_in_air", "water_vapor_saturation_deficit_in_air", "water_volume_transport_in_river_channel", "water_volume_transport_into_sea_water_from_rivers", "wave_frequency", "westward_upward_derivative_of_geopotential", "westward_westward_derivative_of_geopotential", "wet_bulb_potential_temperature", "wet_bulb_temperature", "wind_chill_of_air_temperature", "wind_from_direction", "wind_gust_from_direction", "wind_mixing_energy_flux_into_sea_water", "wind_speed", "wind_speed_of_gust", "wind_speed_shear", "wind_to_direction", "wood_debris_mass_content_of_carbon", "wood_debris_mass_content_of_nitrogen", "x_derivative_of_ocean_rigid_lid_pressure", "x_heat_flux_in_sea_water_due_to_advection", "x_wind", "x_wind_gust", "y_derivative_of_ocean_rigid_lid_pressure", "y_heat_flux_in_sea_water_due_to_advection", "y_wind", "y_wind_gust", "zenith_angle"], "description": "Options", "index": [0], "layout": "IPY_MODEL_42f6ddd93b5544d7a37da119fb161a53", "rows": 10, "style": "IPY_MODEL_7dc4660948c34e7e80561b715c36912a"}}, "38bd870dcf00479d886592bf109c7f5f": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "3e8c370fca6d4ac2b58bdf8c71f0df57": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextStyleModel", "state": {"description_width": "", "font_size": null, "text_color": null}}, "3fa144624b1740199c7e9ac474dc78c1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["acoustic_signal_roundtrip_travel_time_in_sea_water", "aerodynamic_particle_diameter", "aerodynamic_resistance", "age_of_sea_ice", "age_of_stratospheric_air", "age_of_surface_snow", "aggregate_quality_flag", "air_density", "air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", "air_pressure", "air_pressure_anomaly", "air_pressure_at_cloud_base", "air_pressure_at_cloud_top", "air_pressure_at_convective_cloud_base", "air_pressure_at_convective_cloud_top", "air_pressure_at_freezing_level", "air_pressure_at_mean_sea_level", "air_pressure_at_top_of_atmosphere_model", "air_pseudo_equivalent_potential_temperature", "air_pseudo_equivalent_temperature", "air_temperature", "air_temperature_anomaly", "air_temperature_at_cloud_top", "air_temperature_at_effective_cloud_top_defined_by_infrared_radiation", "air_temperature_lapse_rate", "air_temperature_threshold", "altimeter_range", "altimeter_range_correction_due_to_dry_troposphere", "altimeter_range_correction_due_to_ionosphere", "altimeter_range_correction_due_to_wet_troposphere", "altitude", "altitude_at_top_of_atmosphere_model", "altitude_at_top_of_dry_convection", "amplitude_of_global_average_sea_level_change", "angle_of_emergence", "angle_of_incidence", "angle_of_rotation_from_east_to_x", "angle_of_rotation_from_east_to_y", "angle_of_rotation_from_solar_azimuth_to_platform_azimuth", "angstrom_exponent_of_ambient_aerosol_in_air", "apparent_air_temperature", "apparent_oxygen_utilization", "area_fraction", "area_fraction_below_surface", "area_fraction_of_day_defined_by_solar_zenith_angle", "area_fraction_of_night_defined_by_solar_zenith_angle", "area_fraction_of_twilight_defined_by_solar_zenith_angle", "area_type", "asymmetry_factor_of_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_absorption_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_boundary_layer_thickness", "atmosphere_convective_available_potential_energy", "atmosphere_convective_available_potential_energy_wrt_surface", "atmosphere_convective_inhibition", "atmosphere_convective_inhibition_wrt_surface", "atmosphere_downdraft_convective_mass_flux", "atmosphere_dry_energy_content", "atmosphere_dry_static_energy_content", "atmosphere_eastward_stress_due_to_gravity_wave_drag", "atmosphere_energy_content", "atmosphere_enthalpy_content", "atmosphere_heat_diffusivity", "atmosphere_helicity", "atmosphere_horizontal_streamfunction", "atmosphere_horizontal_velocity_potential", "atmosphere_hybrid_height_coordinate", "atmosphere_hybrid_sigma_pressure_coordinate", "atmosphere_kinetic_energy_content", "atmosphere_layer_thickness_expressed_as_geopotential_height_difference", "atmosphere_level_of_free_convection", "atmosphere_level_of_free_convection_wrt_surface", "atmosphere_lifting_condensation_level", "atmosphere_lifting_condensation_level_wrt_surface", "atmosphere_ln_pressure_coordinate", "atmosphere_mass_content_of_acetic_acid", "atmosphere_mass_content_of_aceto_nitrile", "atmosphere_mass_content_of_alkanes", "atmosphere_mass_content_of_alkenes", "atmosphere_mass_content_of_alpha_hexachlorocyclohexane", "atmosphere_mass_content_of_alpha_pinene", "atmosphere_mass_content_of_ammonia", "atmosphere_mass_content_of_ammonium_dry_aerosol_particles", "atmosphere_mass_content_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_aromatic_compounds", "atmosphere_mass_content_of_atomic_bromine", "atmosphere_mass_content_of_atomic_chlorine", "atmosphere_mass_content_of_atomic_nitrogen", "atmosphere_mass_content_of_benzene", "atmosphere_mass_content_of_beta_pinene", "atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_bromine_chloride", "atmosphere_mass_content_of_bromine_monoxide", "atmosphere_mass_content_of_bromine_nitrate", "atmosphere_mass_content_of_brox_expressed_as_bromine", "atmosphere_mass_content_of_butane", "atmosphere_mass_content_of_carbon_dioxide", "atmosphere_mass_content_of_carbon_monoxide", "atmosphere_mass_content_of_carbon_tetrachloride", "atmosphere_mass_content_of_cfc11", "atmosphere_mass_content_of_cfc113", "atmosphere_mass_content_of_cfc113a", "atmosphere_mass_content_of_cfc114", "atmosphere_mass_content_of_cfc115", "atmosphere_mass_content_of_cfc12", "atmosphere_mass_content_of_chlorine_dioxide", "atmosphere_mass_content_of_chlorine_monoxide", "atmosphere_mass_content_of_chlorine_nitrate", "atmosphere_mass_content_of_cloud_condensed_water", "atmosphere_mass_content_of_cloud_ice", "atmosphere_mass_content_of_cloud_liquid_water", "atmosphere_mass_content_of_clox_expressed_as_chlorine", "atmosphere_mass_content_of_convective_cloud_condensed_water", "atmosphere_mass_content_of_convective_cloud_ice", "atmosphere_mass_content_of_convective_cloud_liquid_water", "atmosphere_mass_content_of_dichlorine_peroxide", "atmosphere_mass_content_of_dimethyl_sulfide", "atmosphere_mass_content_of_dinitrogen_pentoxide", "atmosphere_mass_content_of_dust_dry_aerosol_particles", "atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles", "atmosphere_mass_content_of_ethane", "atmosphere_mass_content_of_ethanol", "atmosphere_mass_content_of_ethene", "atmosphere_mass_content_of_ethyne", "atmosphere_mass_content_of_formaldehyde", "atmosphere_mass_content_of_formic_acid", "atmosphere_mass_content_of_gaseous_divalent_mercury", "atmosphere_mass_content_of_gaseous_elemental_mercury", "atmosphere_mass_content_of_graupel", "atmosphere_mass_content_of_graupel_and_hail", "atmosphere_mass_content_of_hail", "atmosphere_mass_content_of_halon1202", "atmosphere_mass_content_of_halon1211", "atmosphere_mass_content_of_halon1301", "atmosphere_mass_content_of_halon2402", "atmosphere_mass_content_of_hcc140a", "atmosphere_mass_content_of_hcfc141b", "atmosphere_mass_content_of_hcfc142b", "atmosphere_mass_content_of_hcfc22", "atmosphere_mass_content_of_hexachlorobiphenyl", "atmosphere_mass_content_of_hox_expressed_as_hydrogen", "atmosphere_mass_content_of_hydrogen_bromide", "atmosphere_mass_content_of_hydrogen_chloride", "atmosphere_mass_content_of_hydrogen_cyanide", "atmosphere_mass_content_of_hydrogen_peroxide", "atmosphere_mass_content_of_hydroperoxyl_radical", "atmosphere_mass_content_of_hydroxyl_radical", "atmosphere_mass_content_of_hypobromous_acid", "atmosphere_mass_content_of_hypochlorous_acid", "atmosphere_mass_content_of_inorganic_bromine", "atmosphere_mass_content_of_inorganic_chlorine", "atmosphere_mass_content_of_isoprene", "atmosphere_mass_content_of_limonene", "atmosphere_mass_content_of_liquid_precipitation", "atmosphere_mass_content_of_mercury_dry_aerosol_particles", "atmosphere_mass_content_of_methane", "atmosphere_mass_content_of_methanol", "atmosphere_mass_content_of_methyl_bromide", "atmosphere_mass_content_of_methyl_chloride", "atmosphere_mass_content_of_methyl_hydroperoxide", "atmosphere_mass_content_of_methyl_peroxy_radical", "atmosphere_mass_content_of_molecular_hydrogen", "atmosphere_mass_content_of_nitrate_dry_aerosol_particles", "atmosphere_mass_content_of_nitrate_radical", "atmosphere_mass_content_of_nitric_acid", "atmosphere_mass_content_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_mass_content_of_nitrogen_monoxide", "atmosphere_mass_content_of_nitrous_acid", "atmosphere_mass_content_of_nitrous_oxide", "atmosphere_mass_content_of_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_nox_expressed_as_nitrogen", "atmosphere_mass_content_of_noy_expressed_as_nitrogen", "atmosphere_mass_content_of_oxygenated_hydrocarbons", "atmosphere_mass_content_of_ozone", "atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_peroxyacetyl_nitrate", "atmosphere_mass_content_of_peroxynitric_acid", "atmosphere_mass_content_of_peroxy_radicals", "atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_propane", "atmosphere_mass_content_of_propene", "atmosphere_mass_content_of_radon", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_expressed_as_cations", "atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_snow", "atmosphere_mass_content_of_sulfate", "atmosphere_mass_content_of_sulfate_ambient_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur", "atmosphere_mass_content_of_sulfur_dioxide", "atmosphere_mass_content_of_terpenes", "atmosphere_mass_content_of_toluene", "atmosphere_mass_content_of_volcanic_ash", "atmosphere_mass_content_of_water", "atmosphere_mass_content_of_water_in_ambient_aerosol_particles", "atmosphere_mass_content_of_water_vapor", "atmosphere_mass_content_of_xylene", "atmosphere_mass_of_air_per_unit_area", "atmosphere_mass_of_carbon_dioxide", "atmosphere_mass_per_unit_area", "atmosphere_mole_content_of_carbon_monoxide", "atmosphere_mole_content_of_methane", "atmosphere_mole_content_of_nitrogen_dioxide", "atmosphere_mole_content_of_ozone", "atmosphere_mole_content_of_water_vapor", "atmosphere_moles_of_acetic_acid", "atmosphere_moles_of_aceto_nitrile", "atmosphere_moles_of_alpha_hexachlorocyclohexane", "atmosphere_moles_of_alpha_pinene", "atmosphere_moles_of_ammonia", "atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_atomic_bromine", "atmosphere_moles_of_atomic_chlorine", "atmosphere_moles_of_atomic_nitrogen", "atmosphere_moles_of_benzene", "atmosphere_moles_of_beta_pinene", "atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_bromine_chloride", "atmosphere_moles_of_bromine_monoxide", "atmosphere_moles_of_bromine_nitrate", "atmosphere_moles_of_brox_expressed_as_bromine", "atmosphere_moles_of_butane", "atmosphere_moles_of_carbon_dioxide", "atmosphere_moles_of_carbon_monoxide", "atmosphere_moles_of_carbon_tetrachloride", "atmosphere_moles_of_cfc11", "atmosphere_moles_of_cfc113", "atmosphere_moles_of_cfc113a", "atmosphere_moles_of_cfc114", "atmosphere_moles_of_cfc115", "atmosphere_moles_of_cfc12", "atmosphere_moles_of_chlorine_dioxide", "atmosphere_moles_of_chlorine_monoxide", "atmosphere_moles_of_chlorine_nitrate", "atmosphere_moles_of_clox_expressed_as_chlorine", "atmosphere_moles_of_dichlorine_peroxide", "atmosphere_moles_of_dimethyl_sulfide", "atmosphere_moles_of_dinitrogen_pentoxide", "atmosphere_moles_of_ethane", "atmosphere_moles_of_ethanol", "atmosphere_moles_of_ethene", "atmosphere_moles_of_ethyne", "atmosphere_moles_of_formaldehyde", "atmosphere_moles_of_formic_acid", "atmosphere_moles_of_gaseous_divalent_mercury", "atmosphere_moles_of_gaseous_elemental_mercury", "atmosphere_moles_of_halon1202", "atmosphere_moles_of_halon1211", "atmosphere_moles_of_halon1301", "atmosphere_moles_of_halon2402", "atmosphere_moles_of_hcc140a", "atmosphere_moles_of_hcfc141b", "atmosphere_moles_of_hcfc142b", "atmosphere_moles_of_hcfc22", "atmosphere_moles_of_hexachlorobiphenyl", "atmosphere_moles_of_hox_expressed_as_hydrogen", "atmosphere_moles_of_hydrogen_bromide", "atmosphere_moles_of_hydrogen_chloride", "atmosphere_moles_of_hydrogen_cyanide", "atmosphere_moles_of_hydrogen_peroxide", "atmosphere_moles_of_hydroperoxyl_radical", "atmosphere_moles_of_hydroxyl_radical", "atmosphere_moles_of_hypobromous_acid", "atmosphere_moles_of_hypochlorous_acid", "atmosphere_moles_of_inorganic_bromine", "atmosphere_moles_of_inorganic_chlorine", "atmosphere_moles_of_isoprene", "atmosphere_moles_of_limonene", "atmosphere_moles_of_methane", "atmosphere_moles_of_methanol", "atmosphere_moles_of_methyl_bromide", "atmosphere_moles_of_methyl_chloride", "atmosphere_moles_of_methyl_hydroperoxide", "atmosphere_moles_of_methyl_peroxy_radical", "atmosphere_moles_of_molecular_hydrogen", "atmosphere_moles_of_nitrate_radical", "atmosphere_moles_of_nitric_acid", "atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_moles_of_nitrogen_dioxide", "atmosphere_moles_of_nitrogen_monoxide", "atmosphere_moles_of_nitrous_acid", "atmosphere_moles_of_nitrous_oxide", "atmosphere_moles_of_nmvoc_expressed_as_carbon", "atmosphere_moles_of_nox_expressed_as_nitrogen", "atmosphere_moles_of_noy_expressed_as_nitrogen", "atmosphere_moles_of_ozone", "atmosphere_moles_of_peroxyacetyl_nitrate", "atmosphere_moles_of_peroxynitric_acid", "atmosphere_moles_of_propane", "atmosphere_moles_of_propene", "atmosphere_moles_of_radon", "atmosphere_moles_of_sulfur_dioxide", "atmosphere_moles_of_toluene", "atmosphere_moles_of_water_vapor", "atmosphere_moles_of_xylene", "atmosphere_momentum_diffusivity", "atmosphere_net_rate_of_absorption_of_longwave_energy", "atmosphere_net_rate_of_absorption_of_shortwave_energy", "atmosphere_net_upward_convective_mass_flux", "atmosphere_net_upward_deep_convective_mass_flux", "atmosphere_net_upward_shallow_convective_mass_flux", "atmosphere_northward_stress_due_to_gravity_wave_drag", "atmosphere_number_content_of_aerosol_particles", "atmosphere_number_content_of_cloud_droplets", "atmosphere_number_content_of_ice_crystals", "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_ammonium_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_optical_thickness_due_to_cloud", "atmosphere_optical_thickness_due_to_convective_cloud", "atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_dust_dry_aerosol_particles", "atmosphere_optical_thickness_due_to_nitrate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm10_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm1_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm2p5_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_stratiform_cloud", "atmosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_water_in_ambient_aerosol_particles", "atmosphere_potential_energy_content", "atmosphere_sigma_coordinate", "atmosphere_sleve_coordinate", "atmosphere_stability_k_index", "atmosphere_stability_showalter_index", "atmosphere_stability_total_totals_index", "atmosphere_transformed_eulerian_mean_meridional_overturning_mass_streamfunction", "atmosphere_updraft_convective_mass_flux", "atmosphere_upward_absolute_vorticity", "atmosphere_upward_relative_vorticity", "atmosphere_x_relative_vorticity", "atmosphere_y_relative_vorticity", "attenuated_signal_test_quality_flag", "automated_tropical_cyclone_forecasting_system_storm_identifier", "backscattering_ratio_in_air", "baroclinic_eastward_sea_water_velocity", "baroclinic_northward_sea_water_velocity", "barometric_altitude", "barotropic_eastward_sea_water_velocity", "barotropic_northward_sea_water_velocity", "barotropic_sea_water_x_velocity", "barotropic_sea_water_y_velocity", "basal_downward_heat_flux_in_sea_ice", "baseflow_amount", "beam_consistency_indicator_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "beaufort_wind_force", "bedrock_altitude", "bedrock_altitude_change_due_to_isostatic_adjustment", "biological_taxon_lsid", "biological_taxon_name", "bioluminescent_photon_rate_in_sea_water", "biomass_burning_carbon_flux", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "brunt_vaisala_frequency_in_air", "burned_area", "burned_area_fraction", "canopy_albedo", "canopy_and_surface_water_amount", "canopy_height", "canopy_resistance_to_ozone_dry_deposition", "canopy_snow_amount", "canopy_temperature", "canopy_throughfall_flux", "canopy_water_amount", "carbon_mass_content_of_forestry_and_agricultural_products", "carbon_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_litter_and_soil_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_soil_from_litter", "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", "cell_area", "cell_thickness", "change_in_atmosphere_energy_content_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_energy_content_of_atmosphere_layer_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_land_ice_amount", "change_in_land_ice_mass", "change_over_time_in_amount_of_ice_and_snow_on_land", "change_over_time_in_atmosphere_mass_content_of_water_due_to_advection", "change_over_time_in_canopy_water_amount", "change_over_time_in_groundwater_amount", "change_over_time_in_land_surface_liquid_water_amount", "change_over_time_in_land_water_amount", "change_over_time_in_mass_content_of_water_in_soil", "change_over_time_in_river_water_amount", "change_over_time_in_sea_water_absolute_salinity", "change_over_time_in_sea_water_conservative_temperature", "change_over_time_in_sea_water_density", "change_over_time_in_sea_water_neutral_density", "change_over_time_in_sea_water_potential_density", "change_over_time_in_sea_water_potential_temperature", "change_over_time_in_sea_water_practical_salinity", "change_over_time_in_sea_water_preformed_salinity", "change_over_time_in_sea_water_salinity", "change_over_time_in_sea_water_specific_potential_enthalpy", "change_over_time_in_sea_water_temperature", "change_over_time_in_surface_snow_amount", "change_over_time_in_thermal_energy_content_of_ice_and_snow_on_land", "change_over_time_in_thermal_energy_content_of_vegetation_and_litter_and_soil", "charnock_coefficient_for_surface_roughness_length_for_momentum_in_air", "clear_sky_area_fraction", "climatology_test_quality_flag", "cloud_albedo", "cloud_area_fraction", "cloud_area_fraction_in_atmosphere_layer", "cloud_base_altitude", "cloud_binary_mask", "cloud_ice_mixing_ratio", "cloud_liquid_water_mixing_ratio", "cloud_top_altitude", "colony_forming_unit_number_concentration_of_biological_taxon_in_sea_water", "compressive_strength_of_sea_ice", "concentration_of_colored_dissolved_organic_matter_in_sea_water_expressed_as_equivalent_mass_fraction_of_quinine_sulfate_dihydrate", "convection_time_fraction", "convective_cloud_area_fraction", "convective_cloud_area_fraction_in_atmosphere_layer", "convective_cloud_base_altitude", "convective_cloud_base_height", "convective_cloud_longwave_emissivity", "convective_cloud_top_altitude", "convective_cloud_top_height", "convective_precipitation_amount", "convective_precipitation_flux", "convective_precipitation_rate", "convective_rainfall_amount", "convective_rainfall_flux", "convective_rainfall_rate", "convective_snowfall_amount", "convective_snowfall_flux", "coriolis_parameter", "correction_for_model_negative_specific_humidity", "covariance_over_longitude_of_northward_wind_and_air_temperature", "depth", "depth_at_base_of_unfrozen_ground", "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", "depth_at_shallowest_isotherm_defined_by_soil_temperature", "depth_at_shallowest_local_minimum_in_vertical_profile_of_mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "depth_below_geoid", "depth_below_sea_floor", "depth_of_isosurface_of_sea_water_potential_temperature", "dew_point_depression", "dew_point_temperature", "diameter_of_ambient_aerosol_particles", "difference_between_sea_surface_temperature_and_air_temperature", "difference_of_air_pressure_from_model_reference", "diffuse_downwelling_shortwave_flux_in_air", "diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "dimensionless_exner_function", "direct_downwelling_shortwave_flux_in_air", "direction_of_radial_vector_away_from_instrument", "direction_of_radial_vector_toward_instrument", "direction_of_sea_ice_displacement", "direction_of_sea_ice_velocity", "distance_from_geocenter", "distance_from_sun", "distance_from_tropical_cyclone_center_to_leading_edge_of_displaced_convection", "divergence_of_sea_ice_velocity", "divergence_of_wind", "downward_air_velocity", "downward_dry_static_energy_flux_due_to_diffusion", "downward_eastward_momentum_flux_in_air", "downward_eastward_momentum_flux_in_air_due_to_diffusion", "downward_eastward_stress_at_sea_ice_base", "downward_heat_flux_at_ground_level_in_snow", "downward_heat_flux_at_ground_level_in_soil", "downward_heat_flux_in_air", "downward_heat_flux_in_floating_ice", "downward_heat_flux_in_sea_ice", "downward_heat_flux_in_soil", "downward_liquid_water_mass_flux_into_groundwater", "downward_northward_momentum_flux_in_air", "downward_northward_momentum_flux_in_air_due_to_diffusion", "downward_northward_stress_at_sea_ice_base", "downward_sea_ice_basal_salt_flux", "downward_water_vapor_flux_in_air_due_to_diffusion", "downward_x_stress_at_sea_ice_base", "downward_x_stress_at_sea_water_surface", "downward_x_stress_correction_at_sea_water_surface", "downward_y_stress_at_sea_ice_base", "downward_y_stress_at_sea_water_surface", "downward_y_stress_correction_at_sea_water_surface", "downwelling_longwave_flux_in_air", "downwelling_longwave_flux_in_air_assuming_clear_sky", "downwelling_longwave_radiance_in_air", "downwelling_photon_flux_in_sea_water", "downwelling_photon_flux_per_unit_wavelength_in_sea_water", "downwelling_photon_radiance_in_sea_water", "downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "downwelling_photon_spherical_irradiance_in_sea_water", "downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "downwelling_photosynthetic_photon_flux_in_sea_water", "downwelling_photosynthetic_photon_radiance_in_sea_water", "downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "downwelling_photosynthetic_radiance_in_sea_water", "downwelling_photosynthetic_radiative_flux_in_sea_water", "downwelling_photosynthetic_spherical_irradiance_in_sea_water", "downwelling_radiance_in_sea_water", "downwelling_radiance_per_unit_wavelength_in_air", "downwelling_radiance_per_unit_wavelength_in_sea_water", "downwelling_radiative_flux_in_sea_water", "downwelling_radiative_flux_per_unit_wavelength_in_air", "downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "downwelling_shortwave_flux_in_air", "downwelling_shortwave_flux_in_air_assuming_clear_sky", "downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "downwelling_shortwave_flux_in_sea_water", "downwelling_shortwave_flux_in_sea_water_at_sea_ice_base", "downwelling_shortwave_radiance_in_air", "downwelling_spherical_irradiance_in_sea_water", "downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "dry_atmosphere_mole_fraction_of_carbon_dioxide", "dry_atmosphere_mole_fraction_of_methane", "dry_energy_content_of_atmosphere_layer", "dry_static_energy_content_of_atmosphere_layer", "duration_of_sunshine", "dvorak_tropical_cyclone_current_intensity_number", "dvorak_tropical_number", "dynamic_tropopause_potential_temperature", "eastward_air_velocity_relative_to_sea_water", "eastward_atmosphere_dry_static_energy_transport_across_unit_distance", "eastward_atmosphere_water_transport_across_unit_distance", "eastward_atmosphere_water_vapor_transport_across_unit_distance", "eastward_derivative_of_eastward_wind", "eastward_derivative_of_northward_sea_ice_velocity", "eastward_derivative_of_northward_wind", "eastward_derivative_of_wind_from_direction", "eastward_flood_water_velocity", "eastward_friction_velocity_in_air", "eastward_land_ice_velocity", "eastward_mass_flux_of_air", "eastward_momentum_flux_correction", "eastward_sea_ice_displacement", "eastward_sea_ice_velocity", "eastward_sea_water_velocity", "eastward_sea_water_velocity_assuming_no_tide", "eastward_sea_water_velocity_at_sea_floor", "eastward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "eastward_sea_water_velocity_due_to_tides", "eastward_transformed_eulerian_mean_air_velocity", "eastward_water_vapor_flux_in_air", "eastward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "eastward_wind", "eastward_wind_shear", "effective_radius_of_cloud_condensed_water_particles_at_cloud_top", "effective_radius_of_cloud_liquid_water_particles", "effective_radius_of_cloud_liquid_water_particles_at_liquid_water_cloud_top", "effective_radius_of_convective_cloud_ice_particles", "effective_radius_of_convective_cloud_liquid_water_particles", "effective_radius_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "effective_radius_of_convective_cloud_rain_particles", "effective_radius_of_convective_cloud_snow_particles", "effective_radius_of_stratiform_cloud_graupel_particles", "effective_radius_of_stratiform_cloud_ice_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "effective_radius_of_stratiform_cloud_rain_particles", "effective_radius_of_stratiform_cloud_snow_particles", "electrical_mobility_diameter_of_ambient_aerosol_particles", "enrichment_of_14C_in_carbon_dioxide_in_air_expressed_as_uppercase_delta_14C", "enthalpy_content_of_atmosphere_layer", "equilibrium_line_altitude", "equivalent_pressure_of_atmosphere_ozone_content", "equivalent_reflectivity_factor", "equivalent_thickness_at_stp_of_atmosphere_ozone_content", "ertel_potential_vorticity", "fast_soil_pool_mass_content_of_carbon", "final_air_pressure_of_lifted_parcel", "fire_area", "fire_radiative_power", "fire_temperature", "flat_line_test_quality_flag", "floating_ice_shelf_area", "floating_ice_shelf_area_fraction", "floating_ice_thickness", "flood_water_duration_above_threshold", "flood_water_speed", "flood_water_thickness", "fog_area_fraction", "forecast_period", "forecast_reference_time", "fractional_saturation_of_oxygen_in_sea_water", "fraction_of_surface_downwelling_photosynthetic_radiative_flux_absorbed_by_vegetation", "fraction_of_time_with_sea_ice_area_fraction_above_threshold", "freezing_level_altitude", "freezing_temperature_of_sea_water", "frequency_of_lightning_flashes_per_unit_area", "frozen_water_content_of_soil_layer", "fugacity_of_carbon_dioxide_in_sea_water", "gap_test_quality_flag", "geoid_height_above_reference_ellipsoid", "geopotential", "geopotential_height", "geopotential_height_anomaly", "geopotential_height_at_cloud_top", "geopotential_height_at_volcanic_ash_cloud_top", "geostrophic_eastward_sea_water_velocity", "geostrophic_eastward_wind", "geostrophic_northward_sea_water_velocity", "geostrophic_northward_wind", "global_average_sea_level_change", "global_average_steric_sea_level_change", "global_average_thermosteric_sea_level_change", "graupel_and_hail_fall_amount", "graupel_and_hail_fall_flux", "graupel_fall_amount", "graupel_fall_flux", "grid_latitude", "grid_longitude", "gross_primary_productivity_of_biomass_expressed_as_13C", "gross_primary_productivity_of_biomass_expressed_as_14C", "gross_primary_productivity_of_biomass_expressed_as_carbon", "gross_range_test_quality_flag", "gross_rate_of_decrease_in_area_fraction", "gross_rate_of_increase_in_area_fraction", "grounded_ice_sheet_area", "grounded_ice_sheet_area_fraction", "ground_level_altitude", "growth_limitation_of_calcareous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_diatoms_due_to_solar_irradiance", "growth_limitation_of_diazotrophic_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_miscellaneous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_picophytoplankton_due_to_solar_irradiance", "hail_fall_amount", "hail_fall_flux", "halosteric_change_in_mean_sea_level", "halosteric_change_in_sea_surface_height", "harmonic_period", "heat_flux_correction", "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", "heat_flux_into_sea_water_due_to_newtonian_relaxation", "heat_flux_into_sea_water_due_to_sea_ice_thermodynamics", "heat_flux_into_sea_water_due_to_snow_thermodynamics", "heat_index_of_air_temperature", "height", "height_above_geopotential_datum", "height_above_geopotential_datum_at_top_of_atmosphere_model", "height_above_mean_sea_level", "height_above_reference_ellipsoid", "height_above_sea_floor", "height_at_cloud_top", "height_at_effective_cloud_top_defined_by_infrared_radiation", "high_type_cloud_area_fraction", "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid", "histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid", "horizontal_atmosphere_dry_energy_transport", "horizontal_dry_energy_transport_in_atmosphere_layer", "humidity_mixing_ratio", "ice_cloud_area_fraction", "ice_cloud_area_fraction_in_atmosphere_layer", "ice_volume_in_frozen_ground_in_excess_of_pore_volume_in_unfrozen_ground_expressed_as_fraction_of_frozen_ground_volume", "incoming_water_volume_transport_along_river_channel", "indicative_error_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "institution", "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_salinity_and_sea_water_density", "integral_wrt_depth_of_sea_water_practical_salinity", "integral_wrt_depth_of_sea_water_temperature", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "integral_wrt_height_of_product_of_eastward_wind_and_specific_humidity", "integral_wrt_height_of_product_of_northward_wind_and_specific_humidity", "integral_wrt_time_of_air_temperature_deficit", "integral_wrt_time_of_air_temperature_excess", "integral_wrt_time_of_mole_stomatal_uptake_of_ozone", "integral_wrt_time_of_radioactivity_concentration_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_104Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_110mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_11C_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_136Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_139Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_13N_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_145Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_150Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_153Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_154Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_157Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_158Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_15O_in_air", "integral_wrt_time_of_radioactivity_concentration_of_160Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_161Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162mTb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_163Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_165Dy_in_air", "integral_wrt_time_of_radioactivity_concentration_of_18F_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Hg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207mPb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_208Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_220Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_224Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234mPa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m1Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m2Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244mAm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_246Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_247Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_248Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_24Na_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_251Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_252Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254mEs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_255Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_3H_in_air", "integral_wrt_time_of_radioactivity_concentration_of_41Ar_in_air", "integral_wrt_time_of_radioactivity_concentration_of_54Mn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_58Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_60Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Zn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_73Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_75Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77mGe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_79Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86mRb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_96Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_98Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Tc_in_air", "integral_wrt_time_of_surface_downward_eastward_stress", "integral_wrt_time_of_surface_downward_latent_heat_flux", "integral_wrt_time_of_surface_downward_northward_stress", "integral_wrt_time_of_surface_downward_sensible_heat_flux", "integral_wrt_time_of_surface_downwelling_longwave_flux_in_air", "integral_wrt_time_of_surface_downwelling_shortwave_flux_in_air", "integral_wrt_time_of_surface_net_downward_longwave_flux", "integral_wrt_time_of_surface_net_downward_shortwave_flux", "integral_wrt_time_of_toa_net_downward_shortwave_flux", "integral_wrt_time_of_toa_outgoing_longwave_flux", "iron_growth_limitation_of_calcareous_phytoplankton", "iron_growth_limitation_of_diatoms", "iron_growth_limitation_of_diazotrophic_phytoplankton", "iron_growth_limitation_of_miscellaneous_phytoplankton", "iron_growth_limitation_of_picophytoplankton", "isccp_cloud_area_fraction", "isotope_ratio_of_17O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotope_ratio_of_18O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotropic_longwave_radiance_in_air", "isotropic_radiance_per_unit_wavelength_in_air", "isotropic_shortwave_radiance_in_air", "kinetic_energy_content_of_atmosphere_layer", "kinetic_energy_dissipation_in_atmosphere_boundary_layer", "lagrangian_tendency_of_air_pressure", "lagrangian_tendency_of_atmosphere_sigma_coordinate", "land_area_fraction", "land_binary_mask", "land_cover_lccs", "land_ice_area_fraction", "land_ice_basal_drag", "land_ice_basal_melt_rate", "land_ice_basal_specific_mass_balance_flux", "land_ice_basal_temperature", "land_ice_basal_upward_velocity", "land_ice_basal_x_velocity", "land_ice_basal_y_velocity", "land_ice_calving_rate", "land_ice_lwe_basal_melt_rate", "land_ice_lwe_calving_rate", "land_ice_lwe_surface_specific_mass_balance_rate", "land_ice_mass", "land_ice_mass_not_displacing_sea_water", "land_ice_runoff_flux", "land_ice_sigma_coordinate", "land_ice_specific_mass_flux_due_to_calving", "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", "land_ice_surface_melt_flux", "land_ice_surface_specific_mass_balance_flux", "land_ice_surface_specific_mass_balance_rate", "land_ice_surface_upward_velocity", "land_ice_surface_x_velocity", "land_ice_surface_y_velocity", "land_ice_temperature", "land_ice_thickness", "land_ice_vertical_mean_x_velocity", "land_ice_vertical_mean_y_velocity", "land_ice_x_velocity", "land_ice_y_velocity", "land_surface_liquid_water_amount", "land_water_amount", "latitude", "leaf_area_index", "leaf_mass_content_of_carbon", "leaf_mass_content_of_nitrogen", "lightning_potential_index", "lightning_radiant_energy", "liquid_water_cloud_area_fraction", "liquid_water_cloud_area_fraction_in_atmosphere_layer", "liquid_water_content_of_permafrost_layer", "liquid_water_content_of_soil_layer", "liquid_water_content_of_surface_snow", "liquid_water_mass_flux_into_soil_due_to_surface_snow_melt", "litter_mass_content_of_13C", "litter_mass_content_of_14C", "litter_mass_content_of_carbon", "litter_mass_content_of_nitrogen", "location_test_quality_flag", "log10_size_interval_based_number_size_distribution_of_cloud_condensation_nuclei_at_stp_in_air", "longitude", "low_type_cloud_area_fraction", "lwe_convective_precipitation_rate", "lwe_convective_snowfall_rate", "lwe_precipitation_rate", "lwe_snowfall_rate", "lwe_stratiform_precipitation_rate", "lwe_stratiform_snowfall_rate", "lwe_thickness_of_atmosphere_mass_content_of_water_vapor", "lwe_thickness_of_canopy_water_amount", "lwe_thickness_of_convective_precipitation_amount", "lwe_thickness_of_convective_snowfall_amount", "lwe_thickness_of_frozen_water_content_of_soil_layer", "lwe_thickness_of_moisture_content_of_soil_layer", "lwe_thickness_of_precipitation_amount", "lwe_thickness_of_snowfall_amount", "lwe_thickness_of_soil_moisture_content", "lwe_thickness_of_stratiform_precipitation_amount", "lwe_thickness_of_stratiform_snowfall_amount", "lwe_thickness_of_surface_snow_amount", "lwe_thickness_of_water_evaporation_amount", "lwe_water_evaporation_rate", "magnitude_of_air_velocity_relative_to_sea_water", "magnitude_of_derivative_of_position_wrt_model_level_number", "magnitude_of_derivative_of_position_wrt_x_coordinate_index", "magnitude_of_derivative_of_position_wrt_y_coordinate_index", "magnitude_of_heat_flux_in_sea_water_due_to_advection", "magnitude_of_sea_ice_displacement", "magnitude_of_surface_downward_stress", "mass_concentration_of_19_butanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_19_hexanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_acetic_acid_in_air", "mass_concentration_of_aceto_nitrile_in_air", "mass_concentration_of_adenosine_triphosphate_in_sea_water", "mass_concentration_of_alkanes_in_air", "mass_concentration_of_alkenes_in_air", "mass_concentration_of_alpha_carotene_in_sea_water", "mass_concentration_of_alpha_hexachlorocyclohexane_in_air", "mass_concentration_of_alpha_pinene_in_air", "mass_concentration_of_ammonia_in_air", "mass_concentration_of_ammonium_dry_aerosol_particles_in_air", "mass_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_aromatic_compounds_in_air", "mass_concentration_of_atomic_bromine_in_air", "mass_concentration_of_atomic_chlorine_in_air", "mass_concentration_of_atomic_nitrogen_in_air", "mass_concentration_of_benzene_in_air", "mass_concentration_of_beta_carotene_in_sea_water", "mass_concentration_of_beta_pinene_in_air", "mass_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_biomass_burning_dry_aerosol_particles_in_air", "mass_concentration_of_bromine_chloride_in_air", "mass_concentration_of_bromine_monoxide_in_air", "mass_concentration_of_bromine_nitrate_in_air", "mass_concentration_of_brox_expressed_as_bromine_in_air", "mass_concentration_of_butane_in_air", "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_carbon_dioxide_in_air", "mass_concentration_of_carbon_monoxide_in_air", "mass_concentration_of_carbon_tetrachloride_in_air", "mass_concentration_of_carotene_in_sea_water", "mass_concentration_of_cfc113a_in_air", "mass_concentration_of_cfc113_in_air", "mass_concentration_of_cfc114_in_air", "mass_concentration_of_cfc115_in_air", "mass_concentration_of_cfc11_in_air", "mass_concentration_of_cfc12_in_air", "mass_concentration_of_chlorine_dioxide_in_air", "mass_concentration_of_chlorine_monoxide_in_air", "mass_concentration_of_chlorine_nitrate_in_air", "mass_concentration_of_chlorophyll_a_in_sea_water", "mass_concentration_of_chlorophyll_b_in_sea_water", "mass_concentration_of_chlorophyll_c1_and_chlorophyll_c2_in_sea_water", "mass_concentration_of_chlorophyll_c3_in_sea_water", "mass_concentration_of_chlorophyll_c_in_sea_water", "mass_concentration_of_chlorophyllide_a_in_sea_water", "mass_concentration_of_chlorophyll_in_sea_water", "mass_concentration_of_cloud_liquid_water_in_air", "mass_concentration_of_clox_expressed_as_chlorine_in_air", "mass_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "mass_concentration_of_condensed_water_in_soil", "mass_concentration_of_diadinoxanthin_in_sea_water", "mass_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_dichlorine_peroxide_in_air", "mass_concentration_of_dimethyl_sulfide_in_air", "mass_concentration_of_dinitrogen_pentoxide_in_air", "mass_concentration_of_divinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_drizzle_in_air", "mass_concentration_of_dust_dry_aerosol_particles_in_air", "mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_concentration_of_ethane_in_air", "mass_concentration_of_ethanol_in_air", "mass_concentration_of_ethene_in_air", "mass_concentration_of_ethyne_in_air", "mass_concentration_of_flagellates_expressed_as_carbon_in_sea_water", "mass_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_formaldehyde_in_air", "mass_concentration_of_formic_acid_in_air", "mass_concentration_of_fucoxanthin_in_sea_water", "mass_concentration_of_gaseous_divalent_mercury_in_air", "mass_concentration_of_gaseous_elemental_mercury_in_air", "mass_concentration_of_halon1202_in_air", "mass_concentration_of_halon1211_in_air", "mass_concentration_of_halon1301_in_air", "mass_concentration_of_halon2402_in_air", "mass_concentration_of_hcc140a_in_air", "mass_concentration_of_hcfc141b_in_air", "mass_concentration_of_hcfc142b_in_air", "mass_concentration_of_hcfc22_in_air", "mass_concentration_of_hexachlorobiphenyl_in_air", "mass_concentration_of_hox_expressed_as_hydrogen_in_air", "mass_concentration_of_hydrogen_bromide_in_air", "mass_concentration_of_hydrogen_chloride_in_air", "mass_concentration_of_hydrogen_cyanide_in_air", "mass_concentration_of_hydrogen_peroxide_in_air", "mass_concentration_of_hydroperoxyl_radical_in_air", "mass_concentration_of_hydroxyl_radical_in_air", "mass_concentration_of_hypobromous_acid_in_air", "mass_concentration_of_hypochlorous_acid_in_air", "mass_concentration_of_inorganic_bromine_in_air", "mass_concentration_of_inorganic_chlorine_in_air", "mass_concentration_of_inorganic_nitrogen_in_sea_water", "mass_concentration_of_isoprene_in_air", "mass_concentration_of_limonene_in_air", "mass_concentration_of_liquid_water_in_air", "mass_concentration_of_lutein_in_sea_water", "mass_concentration_of_mercury_dry_aerosol_particles_in_air", "mass_concentration_of_methane_in_air", "mass_concentration_of_methanol_in_air", "mass_concentration_of_methyl_bromide_in_air", "mass_concentration_of_methyl_chloride_in_air", "mass_concentration_of_methyl_hydroperoxide_in_air", "mass_concentration_of_methyl_peroxy_radical_in_air", "mass_concentration_of_microphytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_molecular_hydrogen_in_air", "mass_concentration_of_monovinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_nanophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_nitrate_dry_aerosol_particles_in_air", "mass_concentration_of_nitrate_radical_in_air", "mass_concentration_of_nitric_acid_in_air", "mass_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_concentration_of_nitrogen_dioxide_in_air", "mass_concentration_of_nitrogen_monoxide_in_air", "mass_concentration_of_nitrous_acid_in_air", "mass_concentration_of_nitrous_oxide_in_air", "mass_concentration_of_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_nox_expressed_as_nitrogen_in_air", "mass_concentration_of_noy_expressed_as_nitrogen_in_air", "mass_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mass_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_oxygenated_hydrocarbons_in_air", "mass_concentration_of_oxygen_in_sea_water", "mass_concentration_of_ozone_in_air", "mass_concentration_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_peridinin_in_sea_water", "mass_concentration_of_peroxyacetyl_nitrate_in_air", "mass_concentration_of_peroxynitric_acid_in_air", "mass_concentration_of_peroxy_radicals_in_air", "mass_concentration_of_petroleum_hydrocarbons_in_sea_water", "mass_concentration_of_phaeopigments_in_sea_water", "mass_concentration_of_phosphate_in_sea_water", "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_pm10_ambient_aerosol_particles_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_pm1_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_prasinoxanthin_in_sea_water", "mass_concentration_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_propane_in_air", "mass_concentration_of_propene_in_air", "mass_concentration_of_radon_in_air", "mass_concentration_of_rain_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_silicate_in_sea_water", "mass_concentration_of_sulfate_ambient_aerosol_particles_in_air", "mass_concentration_of_sulfate_dry_aerosol_particles_in_air", "mass_concentration_of_sulfur_dioxide_in_air", "mass_concentration_of_suspended_matter_in_sea_water", "mass_concentration_of_terpenes_in_air", "mass_concentration_of_toluene_in_air", "mass_concentration_of_violaxanthin_in_sea_water", "mass_concentration_of_volcanic_ash_in_air", "mass_concentration_of_water_in_ambient_aerosol_particles_in_air", "mass_concentration_of_water_vapor_in_air", "mass_concentration_of_xylene_in_air", "mass_concentration_of_zeaxanthin_in_sea_water", "mass_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mass_content_of_13C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_14C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_cloud_condensed_water_in_atmosphere_layer", "mass_content_of_cloud_ice_in_atmosphere_layer", "mass_content_of_cloud_liquid_water_in_atmosphere_layer", "mass_content_of_nitrogen_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_water_in_atmosphere_layer", "mass_content_of_water_in_soil", "mass_content_of_water_in_soil_layer", "mass_content_of_water_in_soil_layer_defined_by_root_depth", "mass_content_of_water_vapor_containing_17O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_18O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_single_2H_in_atmosphere_layer", "mass_content_of_water_vapor_in_atmosphere_layer", "mass_flux_of_carbon_into_forestry_and_agricultural_products_due_to_crop_harvesting", "mass_flux_of_carbon_into_litter_from_vegetation", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence", "mass_flux_of_carbon_into_sea_water_from_rivers", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_senescence", "mass_flux_of_carbon_out_of_soil_due_to_leaching_and_runoff", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_into_sea_from_rivers", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_litter_and_soil_due_to_immobilisation_and_remineralization", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil_due_to_leaching_and_runoff", "mass_fraction_of_acetic_acid_in_air", "mass_fraction_of_aceto_nitrile_in_air", "mass_fraction_of_alkanes_in_air", "mass_fraction_of_alkenes_in_air", "mass_fraction_of_alpha_hexachlorocyclohexane_in_air", "mass_fraction_of_alpha_pinene_in_air", "mass_fraction_of_ammonia_in_air", "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_aromatic_compounds_in_air", "mass_fraction_of_atomic_bromine_in_air", "mass_fraction_of_atomic_chlorine_in_air", "mass_fraction_of_atomic_nitrogen_in_air", "mass_fraction_of_benzene_in_air", "mass_fraction_of_beta_pinene_in_air", "mass_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_bromine_chloride_in_air", "mass_fraction_of_bromine_monoxide_in_air", "mass_fraction_of_bromine_nitrate_in_air", "mass_fraction_of_brox_expressed_as_bromine_in_air", "mass_fraction_of_butane_in_air", "mass_fraction_of_carbon_dioxide_in_air", "mass_fraction_of_carbon_dioxide_tracer_in_air", "mass_fraction_of_carbon_monoxide_in_air", "mass_fraction_of_carbon_tetrachloride_in_air", "mass_fraction_of_cfc113a_in_air", "mass_fraction_of_cfc113_in_air", "mass_fraction_of_cfc114_in_air", "mass_fraction_of_cfc115_in_air", "mass_fraction_of_cfc11_in_air", "mass_fraction_of_cfc12_in_air", "mass_fraction_of_chlorine_dioxide_in_air", "mass_fraction_of_chlorine_monoxide_in_air", "mass_fraction_of_chlorine_nitrate_in_air", "mass_fraction_of_chlorophyll_a_in_sea_water", "mass_fraction_of_clay_in_soil", "mass_fraction_of_cloud_condensed_water_in_air", "mass_fraction_of_cloud_ice_in_air", "mass_fraction_of_cloud_liquid_water_in_air", "mass_fraction_of_clox_expressed_as_chlorine_in_air", "mass_fraction_of_convective_cloud_condensed_water_in_air", "mass_fraction_of_convective_cloud_ice_in_air", "mass_fraction_of_convective_cloud_liquid_water_in_air", "mass_fraction_of_dichlorine_peroxide_in_air", "mass_fraction_of_dimethyl_sulfide_in_air", "mass_fraction_of_dinitrogen_pentoxide_in_air", "mass_fraction_of_dust_dry_aerosol_particles_in_air", "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_ethane_in_air", "mass_fraction_of_ethanol_in_air", "mass_fraction_of_ethene_in_air", "mass_fraction_of_ethyne_in_air", "mass_fraction_of_formaldehyde_in_air", "mass_fraction_of_formic_acid_in_air", "mass_fraction_of_frozen_water_in_soil_moisture", "mass_fraction_of_gaseous_divalent_mercury_in_air", "mass_fraction_of_gaseous_elemental_mercury_in_air", "mass_fraction_of_graupel_and_hail_in_air", "mass_fraction_of_graupel_in_air", "mass_fraction_of_gravel_in_soil", "mass_fraction_of_hail_in_air", "mass_fraction_of_halon1202_in_air", "mass_fraction_of_halon1211_in_air", "mass_fraction_of_halon1301_in_air", "mass_fraction_of_halon2402_in_air", "mass_fraction_of_hcc140a_in_air", "mass_fraction_of_hcfc141b_in_air", "mass_fraction_of_hcfc142b_in_air", "mass_fraction_of_hcfc22_in_air", "mass_fraction_of_hexachlorobiphenyl_in_air", "mass_fraction_of_hox_expressed_as_hydrogen_in_air", "mass_fraction_of_hydrogen_bromide_in_air", "mass_fraction_of_hydrogen_chloride_in_air", "mass_fraction_of_hydrogen_cyanide_in_air", "mass_fraction_of_hydrogen_peroxide_in_air", "mass_fraction_of_hydroperoxyl_radical_in_air", "mass_fraction_of_hydroxyl_radical_in_air", "mass_fraction_of_hypobromous_acid_in_air", "mass_fraction_of_hypochlorous_acid_in_air", "mass_fraction_of_inorganic_bromine_in_air", "mass_fraction_of_inorganic_chlorine_in_air", "mass_fraction_of_isoprene_in_air", "mass_fraction_of_limonene_in_air", "mass_fraction_of_liquid_precipitation_in_air", "mass_fraction_of_mercury_dry_aerosol_particles_in_air", "mass_fraction_of_methane_in_air", "mass_fraction_of_methanesulfonic_acid_dry_aerosol_particles_in_air", "mass_fraction_of_methanol_in_air", "mass_fraction_of_methyl_bromide_in_air", "mass_fraction_of_methyl_chloride_in_air", "mass_fraction_of_methyl_hydroperoxide_in_air", "mass_fraction_of_methyl_peroxy_radical_in_air", "mass_fraction_of_molecular_hydrogen_in_air", "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_nitrate_radical_in_air", "mass_fraction_of_nitric_acid_in_air", "mass_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_fraction_of_nitrogen_dioxide_in_air", "mass_fraction_of_nitrogen_monoxide_in_air", "mass_fraction_of_nitrous_acid_in_air", "mass_fraction_of_nitrous_oxide_in_air", "mass_fraction_of_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_nox_expressed_as_nitrogen_in_air", "mass_fraction_of_noy_expressed_as_nitrogen_in_air", "mass_fraction_of_organic_matter_in_soil", "mass_fraction_of_oxygenated_hydrocarbons_in_air", "mass_fraction_of_ozone_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_peroxyacetyl_nitrate_in_air", "mass_fraction_of_peroxynitric_acid_in_air", "mass_fraction_of_peroxy_radicals_in_air", "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_pm10_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_pm1_ambient_aerosol_particles_in_air", "mass_fraction_of_pm1_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_precipitation_in_air", "mass_fraction_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_propane_in_air", "mass_fraction_of_propene_in_air", "mass_fraction_of_radon_in_air", "mass_fraction_of_rainfall_falling_onto_surface_snow", "mass_fraction_of_sand_in_soil", "mass_fraction_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_shallow_convective_cloud_liquid_water_in_air", "mass_fraction_of_silt_in_soil", "mass_fraction_of_snow_in_air", "mass_fraction_of_solid_precipitation_falling_onto_surface_snow", "mass_fraction_of_stratiform_cloud_ice_in_air", "mass_fraction_of_stratiform_cloud_liquid_water_in_air", "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_sulfur_dioxide_in_air", "mass_fraction_of_sulfuric_acid_in_air", "mass_fraction_of_terpenes_in_air", "mass_fraction_of_toluene_in_air", "mass_fraction_of_unfrozen_water_in_soil_moisture", "mass_fraction_of_water_in_air", "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_xylene_in_air", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_strain_rate", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_stress", "medium_soil_pool_mass_content_of_carbon", "medium_type_cloud_area_fraction", "minimum_depth_of_aragonite_undersaturation_in_sea_water", "minimum_depth_of_calcite_undersaturation_in_sea_water", "minus_one_times_surface_upwelling_longwave_flux_in_air", "minus_one_times_surface_upwelling_shortwave_flux_in_air", "minus_one_times_toa_outgoing_shortwave_flux", "minus_one_times_water_flux_into_sea_water_from_rivers", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "minus_tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "minus_tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "miscellaneous_living_matter_mass_content_of_carbon", "miscellaneous_living_matter_mass_content_of_nitrogen", "model_level_number", "model_level_number_at_base_of_ocean_mixed_layer_defined_by_sigma_theta", "model_level_number_at_convective_cloud_base", "model_level_number_at_convective_cloud_top", "model_level_number_at_sea_floor", "model_level_number_at_top_of_atmosphere_boundary_layer", "moisture_content_of_soil_layer_at_field_capacity", "mole_concentration_of_acetic_acid_in_air", "mole_concentration_of_aceto_nitrile_in_air", "mole_concentration_of_adenosine_triphosphate_in_sea_water", "mole_concentration_of_alpha_hexachlorocyclohexane_in_air", "mole_concentration_of_alpha_pinene_in_air", "mole_concentration_of_ammonia_in_air", "mole_concentration_of_ammonium_in_sea_water", "mole_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_atomic_bromine_in_air", "mole_concentration_of_atomic_chlorine_in_air", "mole_concentration_of_atomic_nitrogen_in_air", "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", "mole_concentration_of_benzene_in_air", "mole_concentration_of_beta_pinene_in_air", "mole_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mole_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_bromine_chloride_in_air", "mole_concentration_of_bromine_monoxide_in_air", "mole_concentration_of_bromine_nitrate_in_air", "mole_concentration_of_brox_expressed_as_bromine_in_air", "mole_concentration_of_butane_in_air", "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_carbonate_abiotic_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_calcite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_natural_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbon_dioxide_in_air", "mole_concentration_of_carbon_monoxide_in_air", "mole_concentration_of_carbon_tetrachloride_in_air", "mole_concentration_of_cfc113a_in_air", "mole_concentration_of_cfc113_in_air", "mole_concentration_of_cfc114_in_air", "mole_concentration_of_cfc115_in_air", "mole_concentration_of_cfc11_in_air", "mole_concentration_of_cfc11_in_sea_water", "mole_concentration_of_cfc12_in_air", "mole_concentration_of_cfc12_in_sea_water", "mole_concentration_of_chlorine_dioxide_in_air", "mole_concentration_of_chlorine_monoxide_in_air", "mole_concentration_of_chlorine_nitrate_in_air", "mole_concentration_of_clox_expressed_as_chlorine_in_air", "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_dichlorine_peroxide_in_air", "mole_concentration_of_dimethyl_sulfide_in_air", "mole_concentration_of_dimethyl_sulfide_in_sea_water", "mole_concentration_of_dinitrogen_pentoxide_in_air", "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_abiotic_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_natural_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", "mole_concentration_of_dissolved_iron_in_sea_water", "mole_concentration_of_dissolved_molecular_nitrogen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile", "mole_concentration_of_dissolved_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_carbon_in_sea_water", "mole_concentration_of_dissolved_organic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_phosphorus_in_sea_water", "mole_concentration_of_ethane_in_air", "mole_concentration_of_ethanol_in_air", "mole_concentration_of_ethene_in_air", "mole_concentration_of_ethyne_in_air", "mole_concentration_of_formaldehyde_in_air", "mole_concentration_of_formic_acid_in_air", "mole_concentration_of_gaseous_divalent_mercury_in_air", "mole_concentration_of_gaseous_elemental_mercury_in_air", "mole_concentration_of_halon1202_in_air", "mole_concentration_of_halon1211_in_air", "mole_concentration_of_halon1301_in_air", "mole_concentration_of_halon2402_in_air", "mole_concentration_of_hcc140a_in_air", "mole_concentration_of_hcfc141b_in_air", "mole_concentration_of_hcfc142b_in_air", "mole_concentration_of_hcfc22_in_air", "mole_concentration_of_hexachlorobiphenyl_in_air", "mole_concentration_of_hox_expressed_as_hydrogen_in_air", "mole_concentration_of_hydrogen_bromide_in_air", "mole_concentration_of_hydrogen_chloride_in_air", "mole_concentration_of_hydrogen_cyanide_in_air", "mole_concentration_of_hydrogen_peroxide_in_air", "mole_concentration_of_hydrogen_sulfide_in_sea_water", "mole_concentration_of_hydroperoxyl_radical_in_air", "mole_concentration_of_hydroxyl_radical_in_air", "mole_concentration_of_hypobromous_acid_in_air", "mole_concentration_of_hypochlorous_acid_in_air", "mole_concentration_of_inorganic_bromine_in_air", "mole_concentration_of_inorganic_chlorine_in_air", "mole_concentration_of_isoprene_in_air", "mole_concentration_of_limonene_in_air", "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_methane_in_air", "mole_concentration_of_methanol_in_air", "mole_concentration_of_methyl_bromide_in_air", "mole_concentration_of_methyl_chloride_in_air", "mole_concentration_of_methyl_hydroperoxide_in_air", "mole_concentration_of_methyl_peroxy_radical_in_air", "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_molecular_hydrogen_in_air", "mole_concentration_of_nitrate_and_nitrite_in_sea_water", "mole_concentration_of_nitrate_in_sea_water", "mole_concentration_of_nitrate_radical_in_air", "mole_concentration_of_nitric_acid_in_air", "mole_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_concentration_of_nitrite_in_sea_water", "mole_concentration_of_nitrogen_dioxide_in_air", "mole_concentration_of_nitrogen_monoxide_in_air", "mole_concentration_of_nitrous_acid_in_air", "mole_concentration_of_nitrous_oxide_in_air", "mole_concentration_of_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_nox_expressed_as_nitrogen_in_air", "mole_concentration_of_noy_expressed_as_nitrogen_in_air", "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water", "mole_concentration_of_ozone_in_air", "mole_concentration_of_particulate_matter_expressed_as_carbon_in_sea_water", "mole_concentration_of_particulate_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_nitrogen_in_sea_water", "mole_concentration_of_peroxyacetyl_nitrate_in_air", "mole_concentration_of_peroxynitric_acid_in_air", "mole_concentration_of_phosphate_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water", "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_propane_in_air", "mole_concentration_of_propene_in_air", "mole_concentration_of_radon_in_air", "mole_concentration_of_silicate_in_sea_water", "mole_concentration_of_sulfur_dioxide_in_air", "mole_concentration_of_sulfur_hexafluoride_in_sea_water", "mole_concentration_of_toluene_in_air", "mole_concentration_of_water_vapor_in_air", "mole_concentration_of_xylene_in_air", "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water", "mole_content_of_carbon_monoxide_in_atmosphere_layer", "mole_content_of_methane_in_atmosphere_layer", "mole_content_of_nitrogen_dioxide_in_atmosphere_layer", "mole_content_of_ozone_in_atmosphere_layer", "mole_fraction_of_acetaldehyde_in_air", "mole_fraction_of_acetic_acid_in_air", "mole_fraction_of_acetone_in_air", "mole_fraction_of_aceto_nitrile_in_air", "mole_fraction_of_aldehydes_in_air", "mole_fraction_of_alkanes_in_air", "mole_fraction_of_alkenes_in_air", "mole_fraction_of_alpha_hexachlorocyclohexane_in_air", "mole_fraction_of_alpha_pinene_in_air", "mole_fraction_of_ammonia_in_air", "mole_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_artificial_tracer_with_fixed_lifetime_in_air", "mole_fraction_of_atomic_bromine_in_air", "mole_fraction_of_atomic_chlorine_in_air", "mole_fraction_of_atomic_nitrogen_in_air", "mole_fraction_of_benzene_in_air", "mole_fraction_of_beta_pinene_in_air", "mole_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_bromine_chloride_in_air", "mole_fraction_of_bromine_monoxide_in_air", "mole_fraction_of_bromine_nitrate_in_air", "mole_fraction_of_brox_expressed_as_bromine_in_air", "mole_fraction_of_butane_in_air", "mole_fraction_of_carbon_dioxide_in_air", "mole_fraction_of_carbon_monoxide_in_air", "mole_fraction_of_carbon_tetrachloride_in_air", "mole_fraction_of_carbon_tetrafluoride_in_air", "mole_fraction_of_carbonyl_fluoride_in_air", "mole_fraction_of_carbonyl_sulfide_in_air", "mole_fraction_of_cfc113a_in_air", "mole_fraction_of_cfc113_in_air", "mole_fraction_of_cfc114_in_air", "mole_fraction_of_cfc115_in_air", "mole_fraction_of_cfc11_in_air", "mole_fraction_of_cfc12_in_air", "mole_fraction_of_chlorine_dioxide_in_air", "mole_fraction_of_chlorine_monoxide_in_air", "mole_fraction_of_chlorine_nitrate_in_air", "mole_fraction_of_chloroform_in_air", "mole_fraction_of_clox_expressed_as_chlorine_in_air", "mole_fraction_of_dichlorine_in_air", "mole_fraction_of_dichlorine_peroxide_in_air", "mole_fraction_of_dichloromethane_in_air", "mole_fraction_of_dimethyl_sulfide_in_air", "mole_fraction_of_dinitrogen_pentoxide_in_air", "mole_fraction_of_ethane_in_air", "mole_fraction_of_ethanol_in_air", "mole_fraction_of_ethene_in_air", "mole_fraction_of_ethyne_in_air", "mole_fraction_of_formaldehyde_in_air", "mole_fraction_of_formic_acid_in_air", "mole_fraction_of_gaseous_divalent_mercury_in_air", "mole_fraction_of_gaseous_elemental_mercury_in_air", "mole_fraction_of_glyoxal_in_air", "mole_fraction_of_halon1202_in_air", "mole_fraction_of_halon1211_in_air", "mole_fraction_of_halon1301_in_air", "mole_fraction_of_halon2402_in_air", "mole_fraction_of_hcc140a_in_air", "mole_fraction_of_hcfc124_in_air", "mole_fraction_of_hcfc141b_in_air", "mole_fraction_of_hcfc142b_in_air", "mole_fraction_of_hcfc22_in_air", "mole_fraction_of_hexachlorobiphenyl_in_air", "mole_fraction_of_hfc125_in_air", "mole_fraction_of_hfc134a_in_air", "mole_fraction_of_hfc143a_in_air", "mole_fraction_of_hfc152a_in_air", "mole_fraction_of_hfc227ea_in_air", "mole_fraction_of_hfc236fa_in_air", "mole_fraction_of_hfc23_in_air", "mole_fraction_of_hfc245fa_in_air", "mole_fraction_of_hfc32_in_air", "mole_fraction_of_hfc365mfc_in_air", "mole_fraction_of_hfc4310mee_in_air", "mole_fraction_of_hox_expressed_as_hydrogen_in_air", "mole_fraction_of_hydrogen_bromide_in_air", "mole_fraction_of_hydrogen_chloride_in_air", "mole_fraction_of_hydrogen_cyanide_in_air", "mole_fraction_of_hydrogen_peroxide_in_air", "mole_fraction_of_hydrogen_sulfide_in_air", "mole_fraction_of_hydroperoxyl_radical_in_air", "mole_fraction_of_hydroxyl_radical_in_air", "mole_fraction_of_hypobromous_acid_in_air", "mole_fraction_of_hypochlorous_acid_in_air", "mole_fraction_of_inorganic_bromine_in_air", "mole_fraction_of_inorganic_chlorine_in_air", "mole_fraction_of_isoprene_in_air", "mole_fraction_of_limonene_in_air", "mole_fraction_of_methane_in_air", "mole_fraction_of_methanol_in_air", "mole_fraction_of_methyl_bromide_in_air", "mole_fraction_of_methyl_chloride_in_air", "mole_fraction_of_methylglyoxal_in_air", "mole_fraction_of_methyl_hydroperoxide_in_air", "mole_fraction_of_methyl_peroxy_radical_in_air", "mole_fraction_of_molecular_hydrogen_in_air", "mole_fraction_of_nitrate_radical_in_air", "mole_fraction_of_nitric_acid_in_air", "mole_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_fraction_of_nitrogen_dioxide_in_air", "mole_fraction_of_nitrogen_monoxide_in_air", "mole_fraction_of_nitrogen_trifluoride_in_air", "mole_fraction_of_nitrous_acid_in_air", "mole_fraction_of_nitrous_oxide_in_air", "mole_fraction_of_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_nox_expressed_as_nitrogen_in_air", "mole_fraction_of_noy_expressed_as_nitrogen_in_air", "mole_fraction_of_organic_nitrates_in_air", "mole_fraction_of_ox_in_air", "mole_fraction_of_ozone_in_air", "mole_fraction_of_perchloroethene_in_air", "mole_fraction_of_peroxyacetyl_nitrate_in_air", "mole_fraction_of_peroxynitric_acid_in_air", "mole_fraction_of_pfc116_in_air", "mole_fraction_of_pfc218_in_air", "mole_fraction_of_pfc318_in_air", "mole_fraction_of_propane_in_air", "mole_fraction_of_propene_in_air", "mole_fraction_of_radon_in_air", "mole_fraction_of_sulfur_dioxide_in_air", "mole_fraction_of_sulfur_hexafluoride_in_air", "mole_fraction_of_sulfuryl_fluoride_in_air", "mole_fraction_of_toluene_in_air", "mole_fraction_of_water_vapor_in_air", "mole_fraction_of_xylene_in_air", "mole_ratio_of_nitrate_to_phosphate_in_sea_water", "moles_of_cfc11_per_unit_mass_in_sea_water", "moles_of_dissolved_inorganic_carbon_per_unit_mass_in_sea_water", "moles_of_nitrate_and_nitrite_per_unit_mass_in_sea_water", "moles_of_nitrate_per_unit_mass_in_sea_water", "moles_of_nitrite_per_unit_mass_in_sea_water", "moles_of_oxygen_per_unit_mass_in_sea_water", "moles_of_phosphate_per_unit_mass_in_sea_water", "moles_of_silicate_per_unit_mass_in_sea_water", "multi_variate_test_quality_flag", "neighbor_test_quality_flag", "net_downward_longwave_flux_in_air", "net_downward_longwave_flux_in_air_assuming_clear_sky", "net_downward_radiative_flux_at_top_of_atmosphere_model", "net_downward_shortwave_flux_at_sea_water_surface", "net_downward_shortwave_flux_in_air", "net_downward_shortwave_flux_in_air_assuming_clear_sky", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_calcareous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diatoms", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diazotrophic_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_miscellaneous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_picophytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_due_to_nitrate_utilization", "net_primary_production_of_biomass_expressed_as_carbon_per_unit_volume_in_sea_water", "net_primary_productivity_of_biomass_expressed_as_carbon", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_leaves", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_miscellaneous_living_matter", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_roots", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_wood", "net_rate_of_absorption_of_longwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_ocean_layer", "net_upward_longwave_flux_in_air", "net_upward_longwave_flux_in_air_assuming_clear_sky", "net_upward_shortwave_flux_in_air", "net_upward_shortwave_flux_in_air_assuming_clear_sky", "nitrogen_growth_limitation_of_calcareous_phytoplankton", "nitrogen_growth_limitation_of_diatoms", "nitrogen_growth_limitation_of_diazotrophic_phytoplankton", "nitrogen_growth_limitation_of_miscellaneous_phytoplankton", "nitrogen_growth_limitation_of_picophytoplankton", "nitrogen_mass_content_of_forestry_and_agricultural_products", "nitrogen_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "nitrogen_mass_flux_into_litter_from_vegetation", "nitrogen_mass_flux_into_soil_from_litter", "nitrogen_mass_flux_into_soil_from_vegetation_excluding_litter", "non_tidal_elevation_of_sea_surface_height", "normalized_difference_vegetation_index", "northward_air_velocity_relative_to_sea_water", "northward_atmosphere_dry_static_energy_transport_across_unit_distance", "northward_atmosphere_heat_transport", "northward_atmosphere_water_transport_across_unit_distance", "northward_atmosphere_water_vapor_transport_across_unit_distance", "northward_derivative_of_eastward_sea_ice_velocity", "northward_derivative_of_eastward_wind", "northward_derivative_of_northward_wind", "northward_derivative_of_wind_from_direction", "northward_eliassen_palm_flux_in_air", "northward_flood_water_velocity", "northward_friction_velocity_in_air", "northward_heat_flux_in_air_due_to_eddy_advection", "northward_land_ice_velocity", "northward_mass_flux_of_air", "northward_momentum_flux_correction", "northward_northward_derivative_of_geopotential", "northward_ocean_freshwater_transport", "northward_ocean_freshwater_transport_due_to_diffusion", "northward_ocean_freshwater_transport_due_to_gyre", "northward_ocean_freshwater_transport_due_to_overturning", "northward_ocean_freshwater_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport", "northward_ocean_heat_transport_due_to_diffusion", "northward_ocean_heat_transport_due_to_gyre", "northward_ocean_heat_transport_due_to_overturning", "northward_ocean_heat_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_diffusion", "northward_ocean_heat_transport_due_to_parameterized_submesoscale_eddy_advection", "northward_ocean_salt_transport", "northward_ocean_salt_transport_due_to_diffusion", "northward_ocean_salt_transport_due_to_gyre", "northward_ocean_salt_transport_due_to_overturning", "northward_ocean_salt_transport_due_to_parameterized_eddy_advection", "northward_sea_ice_displacement", "northward_sea_ice_velocity", "northward_sea_water_velocity", "northward_sea_water_velocity_assuming_no_tide", "northward_sea_water_velocity_at_sea_floor", "northward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "northward_sea_water_velocity_due_to_tides", "northward_transformed_eulerian_mean_air_velocity", "northward_upward_derivative_of_geopotential", "northward_water_vapor_flux_in_air", "northward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "northward_westward_derivative_of_geopotential", "northward_wind", "northward_wind_shear", "nudging_increment_in_mass_content_of_water_in_soil", "nudging_increment_in_snow_and_ice_amount_on_land", "number_concentration_of_aerosol_particles_at_stp_in_air", "number_concentration_of_ambient_aerosol_particles_in_air", "number_concentration_of_biological_taxon_in_sea_water", "number_concentration_of_cloud_condensation_nuclei_at_stp_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air_at_liquid_water_cloud_top", "number_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "number_concentration_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "number_concentration_of_ice_crystals_in_air", "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top", "number_concentration_of_nucleation_mode_ambient_aerosol_particles_in_air", "number_concentration_of_ozone_molecules_in_air", "number_concentration_of_pm10_aerosol_particles_in_air", "number_concentration_of_pm2p5_aerosol_particles_in_air", "number_concentration_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "number_of_days_with_air_temperature_above_threshold", "number_of_days_with_air_temperature_below_threshold", "number_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "number_of_days_with_surface_temperature_below_threshold", "number_of_days_with_wind_speed_above_threshold", "number_of_icebergs_per_unit_area", "number_of_missing_observations", "number_of_observations", "ocean_barotropic_mass_streamfunction", "ocean_barotropic_streamfunction", "ocean_double_sigma_coordinate", "ocean_heat_x_transport", "ocean_heat_x_transport_due_to_diffusion", "ocean_heat_x_transport_due_to_parameterized_eddy_advection", "ocean_heat_y_transport", "ocean_heat_y_transport_due_to_diffusion", "ocean_heat_y_transport_due_to_parameterized_eddy_advection", "ocean_isopycnal_layer_thickness_diffusivity", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_vertical_friction", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_xy_friction", "ocean_mass_content_of_dissolved_inorganic_carbon", "ocean_mass_content_of_dissolved_organic_carbon", "ocean_mass_content_of_particulate_organic_matter_expressed_as_carbon", "ocean_mass_x_transport", "ocean_mass_x_transport_due_to_advection", "ocean_mass_x_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_mass_y_transport", "ocean_mass_y_transport_due_to_advection", "ocean_mass_y_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "ocean_meridional_overturning_streamfunction", "ocean_mixed_layer_thickness", "ocean_mixed_layer_thickness_defined_by_mixing_scheme", "ocean_mixed_layer_thickness_defined_by_sigma_t", "ocean_mixed_layer_thickness_defined_by_sigma_theta", "ocean_mixed_layer_thickness_defined_by_temperature", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_deficit", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_threshold", "ocean_momentum_xy_biharmonic_diffusivity", "ocean_momentum_xy_laplacian_diffusivity", "ocean_montgomery_potential", "ocean_relative_vorticity", "ocean_rigid_lid_pressure", "ocean_rigid_lid_pressure_expressed_as_sea_surface_height_above_geoid", "ocean_salt_x_transport", "ocean_salt_y_transport", "ocean_s_coordinate", "ocean_s_coordinate_g1", "ocean_s_coordinate_g2", "ocean_sigma_coordinate", "ocean_sigma_z_coordinate", "ocean_tracer_biharmonic_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_epineutral_biharmonic_diffusivity", "ocean_tracer_epineutral_laplacian_diffusivity", "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_xy_biharmonic_diffusivity", "ocean_tracer_xy_laplacian_diffusivity", "ocean_vertical_diffusivity", "ocean_vertical_heat_diffusivity", "ocean_vertical_momentum_diffusivity", "ocean_vertical_momentum_diffusivity_due_to_background", "ocean_vertical_momentum_diffusivity_due_to_convection", "ocean_vertical_momentum_diffusivity_due_to_form_drag", "ocean_vertical_momentum_diffusivity_due_to_tides", "ocean_vertical_salt_diffusivity", "ocean_vertical_tracer_diffusivity", "ocean_vertical_tracer_diffusivity_due_to_background", "ocean_vertical_tracer_diffusivity_due_to_convection", "ocean_vertical_tracer_diffusivity_due_to_tides", "ocean_vertical_tracer_diffusivity_due_to_wind_mixing", "ocean_volume", "ocean_volume_fraction", "ocean_volume_transport_across_line", "ocean_volume_x_transport", "ocean_volume_y_transport", "ocean_y_overturning_mass_streamfunction", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "omnidirectional_photosynthetic_spherical_irradiance_in_sea_water", "omnidirectional_spherical_irradiance_per_unit_wavelength_in_sea_water", "optical_thickness_of_atmosphere_layer_due_to_ambient_aerosol_particles", "original_air_pressure_of_lifted_parcel", "outgoing_water_volume_transport_along_river_channel", "partial_pressure_of_carbon_dioxide_in_sea_water", "partial_pressure_of_methane_in_sea_water", "permafrost_active_layer_thickness", "permafrost_area_fraction", "permafrost_layer_thickness", "phase_of_global_average_sea_level_change", "photolysis_rate_of_molecular_oxygen", "photolysis_rate_of_nitrogen_dioxide", "photolysis_rate_of_ozone", "photolysis_rate_of_ozone_to_1D_oxygen_atom", "planetary_albedo", "platform_azimuth_angle", "platform_course", "platform_heave", "platform_heave_down", "platform_heave_rate", "platform_heave_rate_down", "platform_heave_rate_up", "platform_heave_up", "platform_id", "platform_name", "platform_orientation", "platform_pitch", "platform_pitch_fore_down", "platform_pitch_fore_up", "platform_pitch_rate", "platform_pitch_rate_fore_down", "platform_pitch_rate_fore_up", "platform_roll", "platform_roll_rate", "platform_roll_rate_starboard_down", "platform_roll_rate_starboard_up", "platform_roll_starboard_down", "platform_roll_starboard_up", "platform_speed_wrt_air", "platform_speed_wrt_ground", "platform_speed_wrt_sea_water", "platform_surge", "platform_surge_aft", "platform_surge_fore", "platform_surge_rate", "platform_surge_rate_aft", "platform_surge_rate_fore", "platform_sway", "platform_sway_port", "platform_sway_rate", "platform_sway_rate_port", "platform_sway_rate_starboard", "platform_sway_starboard", "platform_view_angle", "platform_yaw", "platform_yaw_fore_port", "platform_yaw_fore_starboard", "platform_yaw_rate", "platform_yaw_rate_fore_port", "platform_yaw_rate_fore_starboard", "platform_zenith_angle", "potential_energy_content_of_atmosphere_layer", "potential_vorticity_of_atmosphere_layer", "potential_vorticity_of_ocean_layer", "precipitation_amount", "precipitation_flux", "precipitation_flux_containing_17O", "precipitation_flux_containing_18O", "precipitation_flux_containing_single_2H", "precipitation_flux_onto_canopy", "predominant_precipitation_type_at_surface", "pressure_at_effective_cloud_top_defined_by_infrared_radiation", "probability_distribution_of_wind_from_direction_over_time", "product_of_air_temperature_and_specific_humidity", "product_of_eastward_sea_water_velocity_and_salinity", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_eastward_wind_and_air_temperature", "product_of_eastward_wind_and_geopotential_height", "product_of_eastward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_eastward_wind_and_northward_wind", "product_of_eastward_wind_and_specific_humidity", "product_of_eastward_wind_and_upward_air_velocity", "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", "product_of_lagrangian_tendency_of_air_pressure_and_geopotential_height", "product_of_lagrangian_tendency_of_air_pressure_and_specific_humidity", "product_of_northward_sea_water_velocity_and_salinity", "product_of_northward_sea_water_velocity_and_temperature", "product_of_northward_wind_and_air_temperature", "product_of_northward_wind_and_geopotential_height", "product_of_northward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_northward_wind_and_specific_humidity", "product_of_northward_wind_and_upward_air_velocity", "product_of_upward_air_velocity_and_air_temperature", "product_of_upward_air_velocity_and_specific_humidity", "projection_x_angular_coordinate", "projection_x_coordinate", "projection_y_angular_coordinate", "projection_y_coordinate", "proportion_of_acceptable_signal_returns_from_acoustic_instrument_in_sea_water", "quality_flag", "radial_sea_water_velocity_away_from_instrument", "radial_sea_water_velocity_toward_instrument", "radial_velocity_of_scatterers_away_from_instrument", "radial_velocity_of_scatterers_toward_instrument", "radiation_frequency", "radiation_wavelength", "radioactivity_concentration_in_air", "radioactivity_concentration_of_101Mo_in_air", "radioactivity_concentration_of_101Tc_in_air", "radioactivity_concentration_of_102Mo_in_air", "radioactivity_concentration_of_102mTc_in_air", "radioactivity_concentration_of_102Tc_in_air", "radioactivity_concentration_of_103mRh_in_air", "radioactivity_concentration_of_103Ru_in_air", "radioactivity_concentration_of_104Tc_in_air", "radioactivity_concentration_of_105mRh_in_air", "radioactivity_concentration_of_105Rh_in_air", "radioactivity_concentration_of_105Ru_in_air", "radioactivity_concentration_of_106mRh_in_air", "radioactivity_concentration_of_106Rh_in_air", "radioactivity_concentration_of_106Ru_in_air", "radioactivity_concentration_of_107mPd_in_air", "radioactivity_concentration_of_107Pd_in_air", "radioactivity_concentration_of_107Rh_in_air", "radioactivity_concentration_of_109mAg_in_air", "radioactivity_concentration_of_109Pd_in_air", "radioactivity_concentration_of_110mAg_in_air", "radioactivity_concentration_of_111Ag_in_air", "radioactivity_concentration_of_111mAg_in_air", "radioactivity_concentration_of_111mCd_in_air", "radioactivity_concentration_of_111mPd_in_air", "radioactivity_concentration_of_111Pd_in_air", "radioactivity_concentration_of_112Ag_in_air", "radioactivity_concentration_of_112Pd_in_air", "radioactivity_concentration_of_113Ag_in_air", "radioactivity_concentration_of_113Cd_in_air", "radioactivity_concentration_of_113mAg_in_air", "radioactivity_concentration_of_113mCd_in_air", "radioactivity_concentration_of_113mIn_in_air", "radioactivity_concentration_of_115Ag_in_air", "radioactivity_concentration_of_115Cd_in_air", "radioactivity_concentration_of_115In_in_air", "radioactivity_concentration_of_115mAg_in_air", "radioactivity_concentration_of_115mCd_in_air", "radioactivity_concentration_of_115mIn_in_air", "radioactivity_concentration_of_116In_in_air", "radioactivity_concentration_of_116mIn_in_air", "radioactivity_concentration_of_117Cd_in_air", "radioactivity_concentration_of_117In_in_air", "radioactivity_concentration_of_117mCd_in_air", "radioactivity_concentration_of_117mIn_in_air", "radioactivity_concentration_of_117mSn_in_air", "radioactivity_concentration_of_118Cd_in_air", "radioactivity_concentration_of_118In_in_air", "radioactivity_concentration_of_118mIn_in_air", "radioactivity_concentration_of_119In_in_air", "radioactivity_concentration_of_119mIn_in_air", "radioactivity_concentration_of_119mSn_in_air", "radioactivity_concentration_of_11C_in_air", "radioactivity_concentration_of_121mSn_in_air", "radioactivity_concentration_of_121Sn_in_air", "radioactivity_concentration_of_123mSn_in_air", "radioactivity_concentration_of_123Sn_in_air", "radioactivity_concentration_of_124mSb_in_air", "radioactivity_concentration_of_124Sb_in_air", "radioactivity_concentration_of_125mTe_in_air", "radioactivity_concentration_of_125Sb_in_air", "radioactivity_concentration_of_125Sn_in_air", "radioactivity_concentration_of_126mSb_in_air", "radioactivity_concentration_of_126Sb_in_air", "radioactivity_concentration_of_126Sn_in_air", "radioactivity_concentration_of_127mTe_in_air", "radioactivity_concentration_of_127Sb_in_air", "radioactivity_concentration_of_127Sn_in_air", "radioactivity_concentration_of_127Te_in_air", "radioactivity_concentration_of_128mSb_in_air", "radioactivity_concentration_of_128Sb_in_air", "radioactivity_concentration_of_128Sn_in_air", "radioactivity_concentration_of_129I_in_air", "radioactivity_concentration_of_129mTe_in_air", "radioactivity_concentration_of_129mXe_in_air", "radioactivity_concentration_of_129Sb_in_air", "radioactivity_concentration_of_129Te_in_air", "radioactivity_concentration_of_130I_in_air", "radioactivity_concentration_of_130mI_in_air", "radioactivity_concentration_of_130mSb_in_air", "radioactivity_concentration_of_130Sb_in_air", "radioactivity_concentration_of_130Sn_in_air", "radioactivity_concentration_of_131I_in_air", "radioactivity_concentration_of_131mTe_in_air", "radioactivity_concentration_of_131mXe_in_air", "radioactivity_concentration_of_131Sb_in_air", "radioactivity_concentration_of_131Te_in_air", "radioactivity_concentration_of_132I_in_air", "radioactivity_concentration_of_132Te_in_air", "radioactivity_concentration_of_133I_in_air", "radioactivity_concentration_of_133mI_in_air", "radioactivity_concentration_of_133mTe_in_air", "radioactivity_concentration_of_133mXe_in_air", "radioactivity_concentration_of_133Te_in_air", "radioactivity_concentration_of_133Xe_in_air", "radioactivity_concentration_of_134Cs_in_air", "radioactivity_concentration_of_134I_in_air", "radioactivity_concentration_of_134mCs_in_air", "radioactivity_concentration_of_134mI_in_air", "radioactivity_concentration_of_134mXe_in_air", "radioactivity_concentration_of_134Te_in_air", "radioactivity_concentration_of_135Cs_in_air", "radioactivity_concentration_of_135I_in_air", "radioactivity_concentration_of_135mBa_in_air", "radioactivity_concentration_of_135mCs_in_air", "radioactivity_concentration_of_135mXe_in_air", "radioactivity_concentration_of_135Xe_in_air", "radioactivity_concentration_of_136Cs_in_air", "radioactivity_concentration_of_137Cs_in_air", "radioactivity_concentration_of_137mBa_in_air", "radioactivity_concentration_of_137Xe_in_air", "radioactivity_concentration_of_138Cs_in_air", "radioactivity_concentration_of_138Xe_in_air", "radioactivity_concentration_of_139Ba_in_air", "radioactivity_concentration_of_13N_in_air", "radioactivity_concentration_of_140Ba_in_air", "radioactivity_concentration_of_140La_in_air", "radioactivity_concentration_of_141Ce_in_air", "radioactivity_concentration_of_141La_in_air", "radioactivity_concentration_of_142Ce_in_air", "radioactivity_concentration_of_142La_in_air", "radioactivity_concentration_of_142mPr_in_air", "radioactivity_concentration_of_142Pr_in_air", "radioactivity_concentration_of_143Ce_in_air", "radioactivity_concentration_of_143La_in_air", "radioactivity_concentration_of_143Pr_in_air", "radioactivity_concentration_of_144Ce_in_air", "radioactivity_concentration_of_144mPr_in_air", "radioactivity_concentration_of_144Nd_in_air", "radioactivity_concentration_of_144Pr_in_air", "radioactivity_concentration_of_145Pr_in_air", "radioactivity_concentration_of_146Ce_in_air", "radioactivity_concentration_of_146Pr_in_air", "radioactivity_concentration_of_147Nd_in_air", "radioactivity_concentration_of_147Pm_in_air", "radioactivity_concentration_of_147Pr_in_air", "radioactivity_concentration_of_147Sm_in_air", "radioactivity_concentration_of_148mPm_in_air", "radioactivity_concentration_of_148Pm_in_air", "radioactivity_concentration_of_148Sm_in_air", "radioactivity_concentration_of_149Nd_in_air", "radioactivity_concentration_of_149Pm_in_air", "radioactivity_concentration_of_149Sm_in_air", "radioactivity_concentration_of_150Pm_in_air", "radioactivity_concentration_of_151Nd_in_air", "radioactivity_concentration_of_151Pm_in_air", "radioactivity_concentration_of_151Sm_in_air", "radioactivity_concentration_of_152mPm_in_air", "radioactivity_concentration_of_152Nd_in_air", "radioactivity_concentration_of_152Pm_in_air", "radioactivity_concentration_of_153Sm_in_air", "radioactivity_concentration_of_154Eu_in_air", "radioactivity_concentration_of_155Eu_in_air", "radioactivity_concentration_of_155Sm_in_air", "radioactivity_concentration_of_156Eu_in_air", "radioactivity_concentration_of_156Sm_in_air", "radioactivity_concentration_of_157Eu_in_air", "radioactivity_concentration_of_158Eu_in_air", "radioactivity_concentration_of_159Eu_in_air", "radioactivity_concentration_of_159Gd_in_air", "radioactivity_concentration_of_15O_in_air", "radioactivity_concentration_of_160Tb_in_air", "radioactivity_concentration_of_161Tb_in_air", "radioactivity_concentration_of_162Gd_in_air", "radioactivity_concentration_of_162mTb_in_air", "radioactivity_concentration_of_162Tb_in_air", "radioactivity_concentration_of_163Tb_in_air", "radioactivity_concentration_of_165Dy_in_air", "radioactivity_concentration_of_18F_in_air", "radioactivity_concentration_of_206Hg_in_air", "radioactivity_concentration_of_206Tl_in_air", "radioactivity_concentration_of_207mPb_in_air", "radioactivity_concentration_of_207Tl_in_air", "radioactivity_concentration_of_208Tl_in_air", "radioactivity_concentration_of_209Bi_in_air", "radioactivity_concentration_of_209Pb_in_air", "radioactivity_concentration_of_209Tl_in_air", "radioactivity_concentration_of_210Bi_in_air", "radioactivity_concentration_of_210Pb_in_air", "radioactivity_concentration_of_210Po_in_air", "radioactivity_concentration_of_210Tl_in_air", "radioactivity_concentration_of_211Bi_in_air", "radioactivity_concentration_of_211Pb_in_air", "radioactivity_concentration_of_211Po_in_air", "radioactivity_concentration_of_212Bi_in_air", "radioactivity_concentration_of_212Pb_in_air", "radioactivity_concentration_of_212Po_in_air", "radioactivity_concentration_of_213Bi_in_air", "radioactivity_concentration_of_213Pb_in_air", "radioactivity_concentration_of_213Po_in_air", "radioactivity_concentration_of_214Bi_in_air", "radioactivity_concentration_of_214Pb_in_air", "radioactivity_concentration_of_214Po_in_air", "radioactivity_concentration_of_215At_in_air", "radioactivity_concentration_of_215Bi_in_air", "radioactivity_concentration_of_215Po_in_air", "radioactivity_concentration_of_216At_in_air", "radioactivity_concentration_of_216Po_in_air", "radioactivity_concentration_of_217At_in_air", "radioactivity_concentration_of_217Po_in_air", "radioactivity_concentration_of_218At_in_air", "radioactivity_concentration_of_218Po_in_air", "radioactivity_concentration_of_218Rn_in_air", "radioactivity_concentration_of_219At_in_air", "radioactivity_concentration_of_219Rn_in_air", "radioactivity_concentration_of_220Rn_in_air", "radioactivity_concentration_of_221Fr_in_air", "radioactivity_concentration_of_221Rn_in_air", "radioactivity_concentration_of_222Fr_in_air", "radioactivity_concentration_of_222Ra_in_air", "radioactivity_concentration_of_222Rn_in_air", "radioactivity_concentration_of_223Fr_in_air", "radioactivity_concentration_of_223Ra_in_air", "radioactivity_concentration_of_223Rn_in_air", "radioactivity_concentration_of_224Ra_in_air", "radioactivity_concentration_of_225Ac_in_air", "radioactivity_concentration_of_225Ra_in_air", "radioactivity_concentration_of_226Ac_in_air", "radioactivity_concentration_of_226Ra_in_air", "radioactivity_concentration_of_226Th_in_air", "radioactivity_concentration_of_227Ac_in_air", "radioactivity_concentration_of_227Ra_in_air", "radioactivity_concentration_of_227Th_in_air", "radioactivity_concentration_of_228Ac_in_air", "radioactivity_concentration_of_228Ra_in_air", "radioactivity_concentration_of_228Th_in_air", "radioactivity_concentration_of_229Ac_in_air", "radioactivity_concentration_of_229Ra_in_air", "radioactivity_concentration_of_229Th_in_air", "radioactivity_concentration_of_230Pa_in_air", "radioactivity_concentration_of_230Th_in_air", "radioactivity_concentration_of_230U_in_air", "radioactivity_concentration_of_231Pa_in_air", "radioactivity_concentration_of_231Th_in_air", "radioactivity_concentration_of_231U_in_air", "radioactivity_concentration_of_232Pa_in_air", "radioactivity_concentration_of_232Th_in_air", "radioactivity_concentration_of_232U_in_air", "radioactivity_concentration_of_233Pa_in_air", "radioactivity_concentration_of_233Th_in_air", "radioactivity_concentration_of_233U_in_air", "radioactivity_concentration_of_234mPa_in_air", "radioactivity_concentration_of_234Pa_in_air", "radioactivity_concentration_of_234Th_in_air", "radioactivity_concentration_of_234U_in_air", "radioactivity_concentration_of_235Np_in_air", "radioactivity_concentration_of_235Pu_in_air", "radioactivity_concentration_of_235U_in_air", "radioactivity_concentration_of_236mNp_in_air", "radioactivity_concentration_of_236Np_in_air", "radioactivity_concentration_of_236Pu_in_air", "radioactivity_concentration_of_236U_in_air", "radioactivity_concentration_of_237Np_in_air", "radioactivity_concentration_of_237Pu_in_air", "radioactivity_concentration_of_237U_in_air", "radioactivity_concentration_of_238Np_in_air", "radioactivity_concentration_of_238Pu_in_air", "radioactivity_concentration_of_238U_in_air", "radioactivity_concentration_of_239Np_in_air", "radioactivity_concentration_of_239Pu_in_air", "radioactivity_concentration_of_239U_in_air", "radioactivity_concentration_of_240Am_in_air", "radioactivity_concentration_of_240mNp_in_air", "radioactivity_concentration_of_240Np_in_air", "radioactivity_concentration_of_240Pu_in_air", "radioactivity_concentration_of_240U_in_air", "radioactivity_concentration_of_241Am_in_air", "radioactivity_concentration_of_241Cm_in_air", "radioactivity_concentration_of_241Pu_in_air", "radioactivity_concentration_of_242Am_in_air", "radioactivity_concentration_of_242Cm_in_air", "radioactivity_concentration_of_242m1Am_in_air", "radioactivity_concentration_of_242m2Am_in_air", "radioactivity_concentration_of_242Pu_in_air", "radioactivity_concentration_of_243Am_in_air", "radioactivity_concentration_of_243Cm_in_air", "radioactivity_concentration_of_243Pu_in_air", "radioactivity_concentration_of_244Am_in_air", "radioactivity_concentration_of_244Cm_in_air", "radioactivity_concentration_of_244mAm_in_air", "radioactivity_concentration_of_244Pu_in_air", "radioactivity_concentration_of_245Am_in_air", "radioactivity_concentration_of_245Cm_in_air", "radioactivity_concentration_of_245Pu_in_air", "radioactivity_concentration_of_246Cm_in_air", "radioactivity_concentration_of_247Cm_in_air", "radioactivity_concentration_of_248Cm_in_air", "radioactivity_concentration_of_249Bk_in_air", "radioactivity_concentration_of_249Cf_in_air", "radioactivity_concentration_of_249Cm_in_air", "radioactivity_concentration_of_24Na_in_air", "radioactivity_concentration_of_250Bk_in_air", "radioactivity_concentration_of_250Cf_in_air", "radioactivity_concentration_of_250Cm_in_air", "radioactivity_concentration_of_251Cf_in_air", "radioactivity_concentration_of_252Cf_in_air", "radioactivity_concentration_of_253Cf_in_air", "radioactivity_concentration_of_253Es_in_air", "radioactivity_concentration_of_254Cf_in_air", "radioactivity_concentration_of_254Es_in_air", "radioactivity_concentration_of_254mEs_in_air", "radioactivity_concentration_of_255Es_in_air", "radioactivity_concentration_of_3H_in_air", "radioactivity_concentration_of_41Ar_in_air", "radioactivity_concentration_of_54Mn_in_air", "radioactivity_concentration_of_58Co_in_air", "radioactivity_concentration_of_60Co_in_air", "radioactivity_concentration_of_72Ga_in_air", "radioactivity_concentration_of_72Zn_in_air", "radioactivity_concentration_of_73Ga_in_air", "radioactivity_concentration_of_75Ge_in_air", "radioactivity_concentration_of_77As_in_air", "radioactivity_concentration_of_77Ge_in_air", "radioactivity_concentration_of_77mGe_in_air", "radioactivity_concentration_of_78As_in_air", "radioactivity_concentration_of_78Ge_in_air", "radioactivity_concentration_of_79Se_in_air", "radioactivity_concentration_of_81mSe_in_air", "radioactivity_concentration_of_81Se_in_air", "radioactivity_concentration_of_82Br_in_air", "radioactivity_concentration_of_82mBr_in_air", "radioactivity_concentration_of_83Br_in_air", "radioactivity_concentration_of_83mKr_in_air", "radioactivity_concentration_of_83mSe_in_air", "radioactivity_concentration_of_83Se_in_air", "radioactivity_concentration_of_84Br_in_air", "radioactivity_concentration_of_84mBr_in_air", "radioactivity_concentration_of_85Kr_in_air", "radioactivity_concentration_of_85mKr_in_air", "radioactivity_concentration_of_86mRb_in_air", "radioactivity_concentration_of_86Rb_in_air", "radioactivity_concentration_of_87Kr_in_air", "radioactivity_concentration_of_87Rb_in_air", "radioactivity_concentration_of_88Kr_in_air", "radioactivity_concentration_of_88Rb_in_air", "radioactivity_concentration_of_89Kr_in_air", "radioactivity_concentration_of_89Rb_in_air", "radioactivity_concentration_of_89Sr_in_air", "radioactivity_concentration_of_90mY_in_air", "radioactivity_concentration_of_90Sr_in_air", "radioactivity_concentration_of_90Y_in_air", "radioactivity_concentration_of_91mY_in_air", "radioactivity_concentration_of_91Sr_in_air", "radioactivity_concentration_of_91Y_in_air", "radioactivity_concentration_of_92Sr_in_air", "radioactivity_concentration_of_92Y_in_air", "radioactivity_concentration_of_93Y_in_air", "radioactivity_concentration_of_93Zr_in_air", "radioactivity_concentration_of_94mNb_in_air", "radioactivity_concentration_of_94Nb_in_air", "radioactivity_concentration_of_94Y_in_air", "radioactivity_concentration_of_95mNb_in_air", "radioactivity_concentration_of_95Nb_in_air", "radioactivity_concentration_of_95Y_in_air", "radioactivity_concentration_of_95Zr_in_air", "radioactivity_concentration_of_96Nb_in_air", "radioactivity_concentration_of_97mNb_in_air", "radioactivity_concentration_of_97Nb_in_air", "radioactivity_concentration_of_97Zr_in_air", "radioactivity_concentration_of_98Nb_in_air", "radioactivity_concentration_of_99Mo_in_air", "radioactivity_concentration_of_99mTc_in_air", "radioactivity_concentration_of_99Tc_in_air", "radius_of_tropical_cyclone_central_dense_overcast_region", "radius_of_tropical_cyclone_eye", "radius_of_tropical_cyclone_maximum_sustained_wind_speed", "rainfall_amount", "rainfall_flux", "rainfall_rate", "rate_of_change_test_quality_flag", "rate_of_hydroxyl_radical_destruction_due_to_reaction_with_nmvoc", "ratio_of_ice_volume_in_frozen_ground_to_pore_volume_in_unfrozen_ground", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "ratio_of_sea_water_practical_salinity_anomaly_to_relaxation_timescale", "ratio_of_x_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "ratio_of_y_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "realization", "reference_air_pressure_for_atmosphere_vertical_coordinate", "reference_epoch", "reference_pressure", "reference_sea_water_density_for_boussinesq_approximation", "region", "relative_humidity", "relative_humidity_for_aerosol_particle_size_selection", "relative_platform_azimuth_angle", "relative_sensor_azimuth_angle", "richardson_number_in_sea_water", "root_depth", "root_mass_content_of_carbon", "root_mass_content_of_nitrogen", "runoff_amount", "runoff_amount_excluding_baseflow", "runoff_flux", "salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "salt_flux_into_sea_water_from_rivers", "scattering_angle", "scene_type_of_dvorak_tropical_cyclone_cloud_region", "scene_type_of_dvorak_tropical_cyclone_eye_region", "sea_area", "sea_area_fraction", "sea_binary_mask", "sea_floor_depth_below_geoid", "sea_floor_depth_below_geopotential_datum", "sea_floor_depth_below_mean_sea_level", "sea_floor_depth_below_reference_ellipsoid", "sea_floor_depth_below_sea_surface", "sea_floor_sediment_grain_size", "sea_ice_albedo", "sea_ice_amount", "sea_ice_and_surface_snow_amount", "sea_ice_area", "sea_ice_area_fraction", "sea_ice_area_transport_across_line", "sea_ice_average_normal_horizontal_stress", "sea_ice_basal_drag_coefficient_for_momentum_in_sea_water", "sea_ice_basal_temperature", "sea_ice_classification", "sea_ice_draft", "sea_ice_extent", "sea_ice_floe_diameter", "sea_ice_freeboard", "sea_ice_mass", "sea_ice_mass_content_of_salt", "sea_ice_melt_pond_thickness", "sea_ice_salinity", "sea_ice_speed", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_ice_thickness", "sea_ice_transport_across_line", "sea_ice_volume", "sea_ice_x_displacement", "sea_ice_x_force_per_unit_area_due_to_coriolis_effect", "sea_ice_x_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_x_internal_stress", "sea_ice_x_transport", "sea_ice_x_velocity", "sea_ice_y_displacement", "sea_ice_y_force_per_unit_area_due_to_coriolis_effect", "sea_ice_y_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_y_internal_stress", "sea_ice_y_transport", "sea_ice_y_velocity", "sea_surface_density", "sea_surface_downward_eastward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_downward_northward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_foundation_temperature", "sea_surface_height_above_geoid", "sea_surface_height_above_geopotential_datum", "sea_surface_height_above_mean_sea_level", "sea_surface_height_above_reference_ellipsoid", "sea_surface_height_amplitude_due_to_earth_tide", "sea_surface_height_amplitude_due_to_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_geocentric_ocean_tide", "sea_surface_height_amplitude_due_to_non_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_pole_tide", "sea_surface_height_bias_due_to_sea_surface_roughness", "sea_surface_height_correction_due_to_air_pressure_and_wind_at_high_frequency", "sea_surface_height_correction_due_to_air_pressure_at_low_frequency", "sea_surface_mean_square_crosswave_slope", "sea_surface_mean_square_upwave_slope", "sea_surface_mean_square_upwave_slope_direction", "sea_surface_primary_swell_wave_directional_spread", "sea_surface_primary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_from_direction", "sea_surface_primary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_mean_period", "sea_surface_primary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_significant_height", "sea_surface_salinity", "sea_surface_secondary_swell_wave_directional_spread", "sea_surface_secondary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_from_direction", "sea_surface_secondary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_mean_period", "sea_surface_secondary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_significant_height", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_swell_wave_directional_spread", "sea_surface_swell_wave_from_direction", "sea_surface_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_swell_wave_mean_period", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_swell_wave_period", "sea_surface_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_swell_wave_significant_height", "sea_surface_swell_wave_to_direction", "sea_surface_temperature", "sea_surface_tertiary_swell_wave_directional_spread", "sea_surface_tertiary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_from_direction", "sea_surface_tertiary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_mean_period", "sea_surface_tertiary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_significant_height", "sea_surface_wave_directional_spread", "sea_surface_wave_directional_spread_at_variance_spectral_density_maximum", "sea_surface_wave_directional_variance_spectral_density", "sea_surface_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wave_from_direction", "sea_surface_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wave_maximum_crest_height", "sea_surface_wave_maximum_height", "sea_surface_wave_maximum_period", "sea_surface_wave_maximum_steepness", "sea_surface_wave_maximum_trough_depth", "sea_surface_wave_mean_height", "sea_surface_wave_mean_height_of_highest_tenth", "sea_surface_wave_mean_period", "sea_surface_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wave_mean_period_of_highest_tenth", "sea_surface_wave_mean_square_slope", "sea_surface_wave_mean_square_x_slope", "sea_surface_wave_mean_square_y_slope", "sea_surface_wave_mean_wavenumber_from_variance_spectral_density_first_wavenumber_moment", "sea_surface_wave_period_at_variance_spectral_density_maximum", "sea_surface_wave_period_of_highest_wave", "sea_surface_wave_significant_height", "sea_surface_wave_significant_period", "sea_surface_wave_stokes_drift_eastward_velocity", "sea_surface_wave_stokes_drift_northward_velocity", "sea_surface_wave_stokes_drift_speed", "sea_surface_wave_stokes_drift_to_direction", "sea_surface_wave_stokes_drift_x_velocity", "sea_surface_wave_stokes_drift_y_velocity", "sea_surface_wave_to_direction", "sea_surface_wave_variance_spectral_density", "sea_surface_wave_xx_radiation_stress", "sea_surface_wave_xy_radiation_stress", "sea_surface_wave_yy_radiation_stress", "sea_surface_wind_wave_directional_spread", "sea_surface_wind_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wind_wave_from_direction", "sea_surface_wind_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wind_wave_mean_period", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wind_wave_period", "sea_surface_wind_wave_period_at_variance_spectral_density_maximum", "sea_surface_wind_wave_significant_height", "sea_surface_wind_wave_to_direction", "sea_water_absolute_salinity", "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", "sea_water_age_since_surface_contact", "sea_water_alkalinity_expressed_as_mole_equivalent", "sea_water_alkalinity_natural_analogue_expressed_as_mole_equivalent", "sea_water_conservative_temperature", "sea_water_cox_salinity", "sea_water_density", "sea_water_electrical_conductivity", "sea_water_knudsen_salinity", "sea_water_mass", "sea_water_mass_per_unit_area", "sea_water_mass_per_unit_area_expressed_as_thickness", "sea_water_neutral_density", "sea_water_ph_abiotic_analogue_reported_on_total_scale", "sea_water_ph_natural_analogue_reported_on_total_scale", "sea_water_ph_reported_on_total_scale", "sea_water_potential_density", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_practical_salinity", "sea_water_practical_salinity_at_sea_floor", "sea_water_preformed_salinity", "sea_water_pressure", "sea_water_pressure_at_sea_floor", "sea_water_pressure_at_sea_water_surface", "sea_water_pressure_due_to_sea_water", "sea_water_redistributed_conservative_temperature", "sea_water_redistributed_potential_temperature", "sea_water_reference_salinity", "sea_water_salinity", "sea_water_salinity_at_sea_floor", "sea_water_sigma_t", "sea_water_sigma_t_difference", "sea_water_sigma_theta", "sea_water_sigma_theta_difference", "sea_water_specific_potential_enthalpy", "sea_water_speed", "sea_water_speed_at_sea_floor", "sea_water_speed_due_to_tides", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "sea_water_transport_across_line", "sea_water_turbidity", "sea_water_velocity_from_direction", "sea_water_velocity_to_direction", "sea_water_velocity_to_direction_at_sea_floor", "sea_water_velocity_to_direction_due_to_tides", "sea_water_volume", "sea_water_x_velocity", "sea_water_x_velocity_due_to_parameterized_mesoscale_eddies", "sea_water_y_velocity", "sea_water_y_velocity_due_to_parameterized_mesoscale_eddies", "secchi_depth_of_sea_water", "sensor_azimuth_angle", "sensor_band_central_radiation_frequency", "sensor_band_central_radiation_wavelength", "sensor_band_central_radiation_wavenumber", "sensor_band_identifier", "sensor_view_angle", "sensor_zenith_angle", "shallow_convection_time_fraction", "shallow_convective_cloud_base_altitude", "shallow_convective_cloud_top_altitude", "shallow_convective_precipitation_flux", "signal_intensity_from_multibeam_acoustic_doppler_velocity_sensor_in_sea_water", "single_scattering_albedo_in_air_due_to_ambient_aerosol_particles", "sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_iron_in_sea_water", "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_organic_nitrogen_in_sea_water", "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", "sinking_mole_flux_of_particulate_silicon_in_sea_water", "slow_soil_pool_mass_content_of_carbon", "snow_area_fraction_viewable_from_above", "snowfall_amount", "snowfall_flux", "snow_grain_size", "snow_transport_across_line_due_to_sea_ice_dynamics", "soil_albedo", "soil_frozen_water_content", "soil_hydraulic_conductivity_at_saturation", "soil_mass_content_of_13C", "soil_mass_content_of_14C", "soil_mass_content_of_carbon", "soil_mass_content_of_inorganic_ammonium_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrate_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", "soil_mass_content_of_nitrogen", "soil_moisture_content_at_field_capacity", "soil_pool", "soil_pool_carbon_decay_rate", "soil_porosity", "soil_suction_at_saturation", "soil_temperature", "soil_thermal_capacity", "soil_thermal_conductivity", "soil_type", "soil_water_ph", "solar_azimuth_angle", "solar_elevation_angle", "solar_irradiance", "solar_irradiance_per_unit_wavelength", "solar_zenith_angle", "solid_precipitation_flux", "solid_precipitation_flux_containing_17O", "solid_precipitation_flux_containing_18O", "solid_precipitation_flux_containing_single_2H", "soot_content_of_surface_snow", "sound_frequency", "sound_intensity_in_air", "sound_intensity_in_water", "sound_intensity_level_in_air", "sound_intensity_level_in_water", "sound_pressure_in_air", "sound_pressure_in_water", "sound_pressure_level_in_air", "sound_pressure_level_in_water", "source", "specific_dry_energy_of_air", "specific_gravitational_potential_energy", "specific_heat_capacity_of_frozen_ground", "specific_heat_capacity_of_sea_water", "specific_humidity", "specific_kinetic_energy_of_air", "specific_kinetic_energy_of_sea_water", "specific_turbulent_kinetic_energy_dissipation_in_sea_water", "specific_turbulent_kinetic_energy_of_sea_water", "speed_of_sound_in_air", "speed_of_sound_in_sea_water", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_below_threshold", "spike_test_quality_flag", "square_of_air_temperature", "square_of_brunt_vaisala_frequency_in_air", "square_of_brunt_vaisala_frequency_in_sea_water", "square_of_eastward_wind", "square_of_geopotential_height", "square_of_lagrangian_tendency_of_air_pressure", "square_of_northward_wind", "square_of_ocean_mixed_layer_thickness_defined_by_sigma_t", "square_of_sea_surface_height_above_geoid", "square_of_sea_surface_salinity", "square_of_sea_surface_temperature", "square_of_upward_air_velocity", "square_of_upward_ocean_mass_transport", "status_flag", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "steric_change_in_mean_sea_level", "steric_change_in_sea_surface_height", "storm_motion_speed", "stratiform_cloud_area_fraction", "stratiform_cloud_area_fraction_in_atmosphere_layer", "stratiform_cloud_longwave_emissivity", "stratiform_graupel_fall_amount", "stratiform_graupel_flux", "stratiform_precipitation_amount", "stratiform_precipitation_flux", "stratiform_rainfall_amount", "stratiform_rainfall_flux", "stratiform_rainfall_rate", "stratiform_snowfall_amount", "stratiform_snowfall_flux", "stratosphere_mole_content_of_nitrogen_dioxide", "stratosphere_optical_thickness_due_to_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_volcanic_ambient_aerosol_particles", "subsurface_litter_mass_content_of_carbon", "subsurface_litter_mass_content_of_nitrogen", "subsurface_runoff_amount", "subsurface_runoff_flux", "sunglint_angle", "sunlit_binary_mask", "surface_air_pressure", "surface_albedo", "surface_albedo_assuming_deep_snow", "surface_albedo_assuming_no_snow", "surface_altitude", "surface_backwards_scattering_coefficient_of_radar_wave", "surface_bidirectional_reflectance", "surface_brightness_temperature", "surface_carbon_dioxide_abiotic_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_natural_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_partial_pressure_difference_between_air_and_sea_water", "surface_carbon_dioxide_partial_pressure_difference_between_sea_water_and_air", "surface_diffuse_downwelling_photosynthetic_radiative_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_diffuse_shortwave_hemispherical_reflectance", "surface_direct_along_beam_shortwave_flux_in_air", "surface_direct_downwelling_shortwave_flux_in_air", "surface_direct_shortwave_hemispherical_reflectance", "surface_downward_eastward_stress", "surface_downward_eastward_stress_due_to_boundary_layer_mixing", "surface_downward_eastward_stress_due_to_ocean_viscous_dissipation", "surface_downward_eastward_stress_due_to_sea_surface_waves", "surface_downward_heat_flux_in_air", "surface_downward_heat_flux_in_sea_ice", "surface_downward_heat_flux_in_sea_water", "surface_downward_heat_flux_in_snow", "surface_downward_latent_heat_flux", "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_ammonia", "surface_downward_mass_flux_of_carbon_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_natural_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_methane_due_to_wetland_biological_consumption", "surface_downward_mass_flux_of_water_due_to_irrigation", "surface_downward_mole_flux_of_carbon_dioxide", "surface_downward_mole_flux_of_cfc11", "surface_downward_mole_flux_of_cfc12", "surface_downward_mole_flux_of_molecular_oxygen", "surface_downward_mole_flux_of_sulfur_hexafluoride", "surface_downward_northward_stress", "surface_downward_northward_stress_due_to_boundary_layer_mixing", "surface_downward_northward_stress_due_to_ocean_viscous_dissipation", "surface_downward_northward_stress_due_to_sea_surface_waves", "surface_downward_sensible_heat_flux", "surface_downward_water_flux", "surface_downward_x_stress", "surface_downward_x_stress_correction", "surface_downward_y_stress", "surface_downward_y_stress_correction", "surface_downwelling_longwave_flux_in_air", "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", "surface_downwelling_longwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_photon_flux_in_sea_water", "surface_downwelling_photon_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_radiance_in_sea_water", "surface_downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photosynthetic_photon_flux_in_air", "surface_downwelling_photosynthetic_photon_flux_in_sea_water", "surface_downwelling_photosynthetic_photon_radiance_in_sea_water", "surface_downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photosynthetic_radiance_in_sea_water", "surface_downwelling_photosynthetic_radiative_flux_in_air", "surface_downwelling_photosynthetic_radiative_flux_in_sea_water", "surface_downwelling_photosynthetic_spherical_irradiance_in_sea_water", "surface_downwelling_radiance_in_sea_water", "surface_downwelling_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_radiative_flux_in_sea_water", "surface_downwelling_radiative_flux_per_unit_wavelength_in_air", "surface_downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_shortwave_flux_in_air", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_downwelling_shortwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_spherical_irradiance_in_sea_water", "surface_downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_drag_coefficient_for_heat_in_air", "surface_drag_coefficient_for_momentum_in_air", "surface_drag_coefficient_in_air", "surface_eastward_sea_water_velocity", "surface_frozen_carbon_dioxide_amount", "surface_geopotential", "surface_geostrophic_eastward_sea_water_velocity", "surface_geostrophic_eastward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_northward_sea_water_velocity", "surface_geostrophic_northward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_x_velocity", "surface_geostrophic_sea_water_x_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_y_velocity", "surface_geostrophic_sea_water_y_velocity_assuming_mean_sea_level_for_geoid", "surface_height_above_geopotential_datum", "surface_litter_mass_content_of_carbon", "surface_litter_mass_content_of_nitrogen", "surface_longwave_emissivity", "surface_microwave_emissivity", "surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_longwave_flux", "surface_net_downward_longwave_flux_assuming_clear_sky", "surface_net_downward_mass_flux_of_ammonia_due_to_bidirectional_surface_exchange", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change", "surface_net_downward_radiative_flux", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_shortwave_flux", "surface_net_downward_shortwave_flux_assuming_clear_sky", "surface_net_upward_longwave_flux", "surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change", "surface_net_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_processes", "surface_net_upward_radiative_flux", "surface_net_upward_shortwave_flux", "surface_northward_sea_water_velocity", "surface_partial_pressure_of_carbon_dioxide_abiotic_analogue_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_in_air", "surface_partial_pressure_of_carbon_dioxide_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_natural_analogue_in_sea_water", "surface_radioactivity_content", "surface_radioactivity_content_of_101Mo", "surface_radioactivity_content_of_101Tc", "surface_radioactivity_content_of_102Mo", "surface_radioactivity_content_of_102mTc", "surface_radioactivity_content_of_102Tc", "surface_radioactivity_content_of_103mRh", "surface_radioactivity_content_of_103Ru", "surface_radioactivity_content_of_104Tc", "surface_radioactivity_content_of_105mRh", "surface_radioactivity_content_of_105Rh", "surface_radioactivity_content_of_105Ru", "surface_radioactivity_content_of_106mRh", "surface_radioactivity_content_of_106Rh", "surface_radioactivity_content_of_106Ru", "surface_radioactivity_content_of_107mPd", "surface_radioactivity_content_of_107Pd", "surface_radioactivity_content_of_107Rh", "surface_radioactivity_content_of_109mAg", "surface_radioactivity_content_of_109Pd", "surface_radioactivity_content_of_110mAg", "surface_radioactivity_content_of_111Ag", "surface_radioactivity_content_of_111mAg", "surface_radioactivity_content_of_111mCd", "surface_radioactivity_content_of_111mPd", "surface_radioactivity_content_of_111Pd", "surface_radioactivity_content_of_112Ag", "surface_radioactivity_content_of_112Pd", "surface_radioactivity_content_of_113Ag", "surface_radioactivity_content_of_113Cd", "surface_radioactivity_content_of_113mAg", "surface_radioactivity_content_of_113mCd", "surface_radioactivity_content_of_113mIn", "surface_radioactivity_content_of_115Ag", "surface_radioactivity_content_of_115Cd", "surface_radioactivity_content_of_115In", "surface_radioactivity_content_of_115mAg", "surface_radioactivity_content_of_115mCd", "surface_radioactivity_content_of_115mIn", "surface_radioactivity_content_of_116In", "surface_radioactivity_content_of_116mIn", "surface_radioactivity_content_of_117Cd", "surface_radioactivity_content_of_117In", "surface_radioactivity_content_of_117mCd", "surface_radioactivity_content_of_117mIn", "surface_radioactivity_content_of_117mSn", "surface_radioactivity_content_of_118Cd", "surface_radioactivity_content_of_118In", "surface_radioactivity_content_of_118mIn", "surface_radioactivity_content_of_119In", "surface_radioactivity_content_of_119mIn", "surface_radioactivity_content_of_119mSn", "surface_radioactivity_content_of_11C", "surface_radioactivity_content_of_121mSn", "surface_radioactivity_content_of_121Sn", "surface_radioactivity_content_of_123mSn", "surface_radioactivity_content_of_123Sn", "surface_radioactivity_content_of_124mSb", "surface_radioactivity_content_of_124Sb", "surface_radioactivity_content_of_125mTe", "surface_radioactivity_content_of_125Sb", "surface_radioactivity_content_of_125Sn", "surface_radioactivity_content_of_126mSb", "surface_radioactivity_content_of_126Sb", "surface_radioactivity_content_of_126Sn", "surface_radioactivity_content_of_127mTe", "surface_radioactivity_content_of_127Sb", "surface_radioactivity_content_of_127Sn", "surface_radioactivity_content_of_127Te", "surface_radioactivity_content_of_128mSb", "surface_radioactivity_content_of_128Sb", "surface_radioactivity_content_of_128Sn", "surface_radioactivity_content_of_129I", "surface_radioactivity_content_of_129mTe", "surface_radioactivity_content_of_129mXe", "surface_radioactivity_content_of_129Sb", "surface_radioactivity_content_of_129Te", "surface_radioactivity_content_of_130I", "surface_radioactivity_content_of_130mI", "surface_radioactivity_content_of_130mSb", "surface_radioactivity_content_of_130Sb", "surface_radioactivity_content_of_130Sn", "surface_radioactivity_content_of_131I", "surface_radioactivity_content_of_131mTe", "surface_radioactivity_content_of_131mXe", "surface_radioactivity_content_of_131Sb", "surface_radioactivity_content_of_131Te", "surface_radioactivity_content_of_132I", "surface_radioactivity_content_of_132Te", "surface_radioactivity_content_of_133I", "surface_radioactivity_content_of_133mI", "surface_radioactivity_content_of_133mTe", "surface_radioactivity_content_of_133mXe", "surface_radioactivity_content_of_133Te", "surface_radioactivity_content_of_133Xe", "surface_radioactivity_content_of_134Cs", "surface_radioactivity_content_of_134I", "surface_radioactivity_content_of_134mCs", "surface_radioactivity_content_of_134mI", "surface_radioactivity_content_of_134mXe", "surface_radioactivity_content_of_134Te", "surface_radioactivity_content_of_135Cs", "surface_radioactivity_content_of_135I", "surface_radioactivity_content_of_135mBa", "surface_radioactivity_content_of_135mCs", "surface_radioactivity_content_of_135mXe", "surface_radioactivity_content_of_135Xe", "surface_radioactivity_content_of_136Cs", "surface_radioactivity_content_of_137Cs", "surface_radioactivity_content_of_137mBa", "surface_radioactivity_content_of_137Xe", "surface_radioactivity_content_of_138Cs", "surface_radioactivity_content_of_138Xe", "surface_radioactivity_content_of_139Ba", "surface_radioactivity_content_of_13N", "surface_radioactivity_content_of_140Ba", "surface_radioactivity_content_of_140La", "surface_radioactivity_content_of_141Ce", "surface_radioactivity_content_of_141La", "surface_radioactivity_content_of_142Ce", "surface_radioactivity_content_of_142La", "surface_radioactivity_content_of_142mPr", "surface_radioactivity_content_of_142Pr", "surface_radioactivity_content_of_143Ce", "surface_radioactivity_content_of_143La", "surface_radioactivity_content_of_143Pr", "surface_radioactivity_content_of_144Ce", "surface_radioactivity_content_of_144mPr", "surface_radioactivity_content_of_144Nd", "surface_radioactivity_content_of_144Pr", "surface_radioactivity_content_of_145Pr", "surface_radioactivity_content_of_146Ce", "surface_radioactivity_content_of_146Pr", "surface_radioactivity_content_of_147Nd", "surface_radioactivity_content_of_147Pm", "surface_radioactivity_content_of_147Pr", "surface_radioactivity_content_of_147Sm", "surface_radioactivity_content_of_148mPm", "surface_radioactivity_content_of_148Pm", "surface_radioactivity_content_of_148Sm", "surface_radioactivity_content_of_149Nd", "surface_radioactivity_content_of_149Pm", "surface_radioactivity_content_of_149Sm", "surface_radioactivity_content_of_150Pm", "surface_radioactivity_content_of_151Nd", "surface_radioactivity_content_of_151Pm", "surface_radioactivity_content_of_151Sm", "surface_radioactivity_content_of_152mPm", "surface_radioactivity_content_of_152Nd", "surface_radioactivity_content_of_152Pm", "surface_radioactivity_content_of_153Sm", "surface_radioactivity_content_of_154Eu", "surface_radioactivity_content_of_155Eu", "surface_radioactivity_content_of_155Sm", "surface_radioactivity_content_of_156Eu", "surface_radioactivity_content_of_156Sm", "surface_radioactivity_content_of_157Eu", "surface_radioactivity_content_of_158Eu", "surface_radioactivity_content_of_159Eu", "surface_radioactivity_content_of_159Gd", "surface_radioactivity_content_of_15O", "surface_radioactivity_content_of_160Tb", "surface_radioactivity_content_of_161Tb", "surface_radioactivity_content_of_162Gd", "surface_radioactivity_content_of_162mTb", "surface_radioactivity_content_of_162Tb", "surface_radioactivity_content_of_163Tb", "surface_radioactivity_content_of_165Dy", "surface_radioactivity_content_of_18F", "surface_radioactivity_content_of_206Hg", "surface_radioactivity_content_of_206Tl", "surface_radioactivity_content_of_207mPb", "surface_radioactivity_content_of_207Tl", "surface_radioactivity_content_of_208Tl", "surface_radioactivity_content_of_209Bi", "surface_radioactivity_content_of_209Pb", "surface_radioactivity_content_of_209Tl", "surface_radioactivity_content_of_210Bi", "surface_radioactivity_content_of_210Pb", "surface_radioactivity_content_of_210Po", "surface_radioactivity_content_of_210Tl", "surface_radioactivity_content_of_211Bi", "surface_radioactivity_content_of_211Pb", "surface_radioactivity_content_of_211Po", "surface_radioactivity_content_of_212Bi", "surface_radioactivity_content_of_212Pb", "surface_radioactivity_content_of_212Po", "surface_radioactivity_content_of_213Bi", "surface_radioactivity_content_of_213Pb", "surface_radioactivity_content_of_213Po", "surface_radioactivity_content_of_214Bi", "surface_radioactivity_content_of_214Pb", "surface_radioactivity_content_of_214Po", "surface_radioactivity_content_of_215At", "surface_radioactivity_content_of_215Bi", "surface_radioactivity_content_of_215Po", "surface_radioactivity_content_of_216At", "surface_radioactivity_content_of_216Po", "surface_radioactivity_content_of_217At", "surface_radioactivity_content_of_217Po", "surface_radioactivity_content_of_218At", "surface_radioactivity_content_of_218Po", "surface_radioactivity_content_of_218Rn", "surface_radioactivity_content_of_219At", "surface_radioactivity_content_of_219Rn", "surface_radioactivity_content_of_220Rn", "surface_radioactivity_content_of_221Fr", "surface_radioactivity_content_of_221Rn", "surface_radioactivity_content_of_222Fr", "surface_radioactivity_content_of_222Ra", "surface_radioactivity_content_of_222Rn", "surface_radioactivity_content_of_223Fr", "surface_radioactivity_content_of_223Ra", "surface_radioactivity_content_of_223Rn", "surface_radioactivity_content_of_224Ra", "surface_radioactivity_content_of_225Ac", "surface_radioactivity_content_of_225Ra", "surface_radioactivity_content_of_226Ac", "surface_radioactivity_content_of_226Ra", "surface_radioactivity_content_of_226Th", "surface_radioactivity_content_of_227Ac", "surface_radioactivity_content_of_227Ra", "surface_radioactivity_content_of_227Th", "surface_radioactivity_content_of_228Ac", "surface_radioactivity_content_of_228Ra", "surface_radioactivity_content_of_228Th", "surface_radioactivity_content_of_229Ac", "surface_radioactivity_content_of_229Ra", "surface_radioactivity_content_of_229Th", "surface_radioactivity_content_of_230Pa", "surface_radioactivity_content_of_230Th", "surface_radioactivity_content_of_230U", "surface_radioactivity_content_of_231Pa", "surface_radioactivity_content_of_231Th", "surface_radioactivity_content_of_231U", "surface_radioactivity_content_of_232Pa", "surface_radioactivity_content_of_232Th", "surface_radioactivity_content_of_232U", "surface_radioactivity_content_of_233Pa", "surface_radioactivity_content_of_233Th", "surface_radioactivity_content_of_233U", "surface_radioactivity_content_of_234mPa", "surface_radioactivity_content_of_234Pa", "surface_radioactivity_content_of_234Th", "surface_radioactivity_content_of_234U", "surface_radioactivity_content_of_235Np", "surface_radioactivity_content_of_235Pu", "surface_radioactivity_content_of_235U", "surface_radioactivity_content_of_236mNp", "surface_radioactivity_content_of_236Np", "surface_radioactivity_content_of_236Pu", "surface_radioactivity_content_of_236U", "surface_radioactivity_content_of_237Np", "surface_radioactivity_content_of_237Pu", "surface_radioactivity_content_of_237U", "surface_radioactivity_content_of_238Np", "surface_radioactivity_content_of_238Pu", "surface_radioactivity_content_of_238U", "surface_radioactivity_content_of_239Np", "surface_radioactivity_content_of_239Pu", "surface_radioactivity_content_of_239U", "surface_radioactivity_content_of_240Am", "surface_radioactivity_content_of_240mNp", "surface_radioactivity_content_of_240Np", "surface_radioactivity_content_of_240Pu", "surface_radioactivity_content_of_240U", "surface_radioactivity_content_of_241Am", "surface_radioactivity_content_of_241Cm", "surface_radioactivity_content_of_241Pu", "surface_radioactivity_content_of_242Am", "surface_radioactivity_content_of_242Cm", "surface_radioactivity_content_of_242m1Am", "surface_radioactivity_content_of_242m2Am", "surface_radioactivity_content_of_242Pu", "surface_radioactivity_content_of_243Am", "surface_radioactivity_content_of_243Cm", "surface_radioactivity_content_of_243Pu", "surface_radioactivity_content_of_244Am", "surface_radioactivity_content_of_244Cm", "surface_radioactivity_content_of_244mAm", "surface_radioactivity_content_of_244Pu", "surface_radioactivity_content_of_245Am", "surface_radioactivity_content_of_245Cm", "surface_radioactivity_content_of_245Pu", "surface_radioactivity_content_of_246Cm", "surface_radioactivity_content_of_247Cm", "surface_radioactivity_content_of_248Cm", "surface_radioactivity_content_of_249Bk", "surface_radioactivity_content_of_249Cf", "surface_radioactivity_content_of_249Cm", "surface_radioactivity_content_of_24Na", "surface_radioactivity_content_of_250Bk", "surface_radioactivity_content_of_250Cf", "surface_radioactivity_content_of_250Cm", "surface_radioactivity_content_of_251Cf", "surface_radioactivity_content_of_252Cf", "surface_radioactivity_content_of_253Cf", "surface_radioactivity_content_of_253Es", "surface_radioactivity_content_of_254Cf", "surface_radioactivity_content_of_254Es", "surface_radioactivity_content_of_254mEs", "surface_radioactivity_content_of_255Es", "surface_radioactivity_content_of_3H", "surface_radioactivity_content_of_41Ar", "surface_radioactivity_content_of_54Mn", "surface_radioactivity_content_of_58Co", "surface_radioactivity_content_of_60Co", "surface_radioactivity_content_of_72Ga", "surface_radioactivity_content_of_72Zn", "surface_radioactivity_content_of_73Ga", "surface_radioactivity_content_of_75Ge", "surface_radioactivity_content_of_77As", "surface_radioactivity_content_of_77Ge", "surface_radioactivity_content_of_77mGe", "surface_radioactivity_content_of_78As", "surface_radioactivity_content_of_78Ge", "surface_radioactivity_content_of_79Se", "surface_radioactivity_content_of_81mSe", "surface_radioactivity_content_of_81Se", "surface_radioactivity_content_of_82Br", "surface_radioactivity_content_of_82mBr", "surface_radioactivity_content_of_83Br", "surface_radioactivity_content_of_83mKr", "surface_radioactivity_content_of_83mSe", "surface_radioactivity_content_of_83Se", "surface_radioactivity_content_of_84Br", "surface_radioactivity_content_of_84mBr", "surface_radioactivity_content_of_85Kr", "surface_radioactivity_content_of_85mKr", "surface_radioactivity_content_of_86mRb", "surface_radioactivity_content_of_86Rb", "surface_radioactivity_content_of_87Kr", "surface_radioactivity_content_of_87Rb", "surface_radioactivity_content_of_88Kr", "surface_radioactivity_content_of_88Rb", "surface_radioactivity_content_of_89Kr", "surface_radioactivity_content_of_89Rb", "surface_radioactivity_content_of_89Sr", "surface_radioactivity_content_of_90mY", "surface_radioactivity_content_of_90Sr", "surface_radioactivity_content_of_90Y", "surface_radioactivity_content_of_91mY", "surface_radioactivity_content_of_91Sr", "surface_radioactivity_content_of_91Y", "surface_radioactivity_content_of_92Sr", "surface_radioactivity_content_of_92Y", "surface_radioactivity_content_of_93Y", "surface_radioactivity_content_of_93Zr", "surface_radioactivity_content_of_94mNb", "surface_radioactivity_content_of_94Nb", "surface_radioactivity_content_of_94Y", "surface_radioactivity_content_of_95mNb", "surface_radioactivity_content_of_95Nb", "surface_radioactivity_content_of_95Y", "surface_radioactivity_content_of_95Zr", "surface_radioactivity_content_of_96Nb", "surface_radioactivity_content_of_97mNb", "surface_radioactivity_content_of_97Nb", "surface_radioactivity_content_of_97Zr", "surface_radioactivity_content_of_98Nb", "surface_radioactivity_content_of_99Mo", "surface_radioactivity_content_of_99mTc", "surface_radioactivity_content_of_99Tc", "surface_ratio_of_upwelling_radiance_emerging_from_sea_water_to_downwelling_radiative_flux_in_air", "surface_roughness_length", "surface_roughness_length_for_heat_in_air", "surface_roughness_length_for_humidity_in_air", "surface_roughness_length_for_momentum_in_air", "surface_runoff_amount", "surface_runoff_flux", "surface_snow_amount", "surface_snow_and_ice_melt_flux", "surface_snow_and_ice_melt_heat_flux", "surface_snow_and_ice_refreezing_flux", "surface_snow_area_fraction", "surface_snow_binary_mask", "surface_snow_density", "surface_snow_melt_amount", "surface_snow_melt_and_sublimation_heat_flux", "surface_snow_melt_flux", "surface_snow_melt_heat_flux", "surface_snow_sublimation_amount", "surface_snow_sublimation_heat_flux", "surface_snow_thickness", "surface_specific_humidity", "surface_temperature", "surface_temperature_anomaly", "surface_upward_eastward_stress_due_to_sea_surface_waves", "surface_upward_heat_flux_due_to_anthropogenic_energy_consumption", "surface_upward_heat_flux_in_air", "surface_upward_latent_heat_flux", "surface_upward_latent_heat_flux_due_to_sublimation", "surface_upward_mass_flux_of_ammonia", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change_excluding_forestry_and_agricultural_products", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_grazing", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_litter_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_vegetation_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_growth", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_maintenance", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_leaves", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_miscellaneous_living_matter", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_roots", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_respiration_in_soil", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_litter", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_soil", "surface_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_production", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_all_land_processes_excluding_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_emission_from_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mole_flux_of_carbon_dioxide", "surface_upward_mole_flux_of_dimethyl_sulfide", "surface_upward_northward_stress_due_to_sea_surface_waves", "surface_upward_sensible_heat_flux", "surface_upward_water_flux", "surface_upward_water_vapor_flux_in_air", "surface_upwelling_longwave_flux_in_air", "surface_upwelling_longwave_flux_in_air_assuming_clear_sky", "surface_upwelling_photosynthetic_photon_flux_in_air", "surface_upwelling_radiance_in_air", "surface_upwelling_radiance_in_air_emerging_from_sea_water", "surface_upwelling_radiance_in_air_reflected_by_sea_water", "surface_upwelling_radiance_in_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air", "surface_upwelling_radiance_per_unit_wavelength_in_air_emerging_from_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air_reflected_by_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_sea_water", "surface_upwelling_radiative_flux_per_unit_wavelength_in_air", "surface_upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_upwelling_shortwave_flux_in_air", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_water_amount", "surface_water_evaporation_flux", "syntax_test_quality_flag", "temperature_at_base_of_ice_sheet_model", "temperature_at_top_of_ice_sheet_model", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically_from_the_surface", "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "tendency_of_air_density", "tendency_of_air_pressure", "tendency_of_air_temperature", "tendency_of_air_temperature_due_to_advection", "tendency_of_air_temperature_due_to_boundary_layer_mixing", "tendency_of_air_temperature_due_to_convection", "tendency_of_air_temperature_due_to_diabatic_processes", "tendency_of_air_temperature_due_to_diffusion", "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", "tendency_of_air_temperature_due_to_dry_convection", "tendency_of_air_temperature_due_to_longwave_heating", "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_model_physics", "tendency_of_air_temperature_due_to_moist_convection", "tendency_of_air_temperature_due_to_radiative_heating", "tendency_of_air_temperature_due_to_shortwave_heating", "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_air_temperature_due_to_stratiform_precipitation", "tendency_of_air_temperature_due_to_turbulence", "tendency_of_atmosphere_dry_energy_content", "tendency_of_atmosphere_enthalpy_content_due_to_advection", "tendency_of_atmosphere_kinetic_energy_content_due_to_advection", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetone_due_to_emission", "tendency_of_atmosphere_mass_content_of_aceto_nitrile_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alkanes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alkenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alpha_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_aromatic_compounds_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_beta_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_forestry_and_agricultural_products", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_tetrachloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113a_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc114_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc115_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc11_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc12_due_to_emission", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_halon1202_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1211_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1301_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon2402_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcc140a_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc141b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc142b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc22_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_emission", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_limonene_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_methanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_bromide_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_chloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_monoterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_land_use_or_land_cover_change", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_soil", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition_into_stomata", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_peroxyacetyl_nitrate_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_peroxynitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_radon_due_to_emission", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sesquiterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_aqueous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_gaseous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_trimethylbenzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_water_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_deep_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_shallow_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_turbulence", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_per_unit_area", "tendency_of_atmosphere_mass_per_unit_area_due_to_advection", "tendency_of_atmosphere_mole_concentration_of_carbon_monoxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_nitrous_oxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_production", "tendency_of_atmosphere_moles_of_acetic_acid", "tendency_of_atmosphere_moles_of_aceto_nitrile", "tendency_of_atmosphere_moles_of_alpha_hexachlorocyclohexane", "tendency_of_atmosphere_moles_of_alpha_pinene", "tendency_of_atmosphere_moles_of_ammonia", "tendency_of_atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_atomic_bromine", "tendency_of_atmosphere_moles_of_atomic_chlorine", "tendency_of_atmosphere_moles_of_atomic_nitrogen", "tendency_of_atmosphere_moles_of_benzene", "tendency_of_atmosphere_moles_of_beta_pinene", "tendency_of_atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_bromine_chloride", "tendency_of_atmosphere_moles_of_bromine_monoxide", "tendency_of_atmosphere_moles_of_bromine_nitrate", "tendency_of_atmosphere_moles_of_brox_expressed_as_bromine", "tendency_of_atmosphere_moles_of_butane", "tendency_of_atmosphere_moles_of_carbon_dioxide", "tendency_of_atmosphere_moles_of_carbon_monoxide", "tendency_of_atmosphere_moles_of_carbon_tetrachloride", "tendency_of_atmosphere_moles_of_cfc11", "tendency_of_atmosphere_moles_of_cfc113", "tendency_of_atmosphere_moles_of_cfc113a", "tendency_of_atmosphere_moles_of_cfc114", "tendency_of_atmosphere_moles_of_cfc115", "tendency_of_atmosphere_moles_of_cfc12", "tendency_of_atmosphere_moles_of_chlorine_dioxide", "tendency_of_atmosphere_moles_of_chlorine_monoxide", "tendency_of_atmosphere_moles_of_chlorine_nitrate", "tendency_of_atmosphere_moles_of_clox_expressed_as_chlorine", "tendency_of_atmosphere_moles_of_dichlorine_peroxide", "tendency_of_atmosphere_moles_of_dimethyl_sulfide", "tendency_of_atmosphere_moles_of_dinitrogen_pentoxide", "tendency_of_atmosphere_moles_of_ethane", "tendency_of_atmosphere_moles_of_ethanol", "tendency_of_atmosphere_moles_of_ethene", "tendency_of_atmosphere_moles_of_ethyne", "tendency_of_atmosphere_moles_of_formaldehyde", "tendency_of_atmosphere_moles_of_formic_acid", "tendency_of_atmosphere_moles_of_gaseous_divalent_mercury", "tendency_of_atmosphere_moles_of_gaseous_elemental_mercury", "tendency_of_atmosphere_moles_of_halon1202", "tendency_of_atmosphere_moles_of_halon1211", "tendency_of_atmosphere_moles_of_halon1301", "tendency_of_atmosphere_moles_of_halon2402", "tendency_of_atmosphere_moles_of_hcc140a", "tendency_of_atmosphere_moles_of_hcfc141b", "tendency_of_atmosphere_moles_of_hcfc142b", "tendency_of_atmosphere_moles_of_hcfc22", "tendency_of_atmosphere_moles_of_hexachlorobiphenyl", "tendency_of_atmosphere_moles_of_hox_expressed_as_hydrogen", "tendency_of_atmosphere_moles_of_hydrogen_bromide", "tendency_of_atmosphere_moles_of_hydrogen_chloride", "tendency_of_atmosphere_moles_of_hydrogen_cyanide", "tendency_of_atmosphere_moles_of_hydrogen_peroxide", "tendency_of_atmosphere_moles_of_hydroperoxyl_radical", "tendency_of_atmosphere_moles_of_hydroxyl_radical", "tendency_of_atmosphere_moles_of_hypobromous_acid", "tendency_of_atmosphere_moles_of_hypochlorous_acid", "tendency_of_atmosphere_moles_of_inorganic_bromine", "tendency_of_atmosphere_moles_of_inorganic_chlorine", "tendency_of_atmosphere_moles_of_isoprene", "tendency_of_atmosphere_moles_of_limonene", "tendency_of_atmosphere_moles_of_methane", "tendency_of_atmosphere_moles_of_methanol", "tendency_of_atmosphere_moles_of_methyl_bromide", "tendency_of_atmosphere_moles_of_methyl_chloride", "tendency_of_atmosphere_moles_of_methyl_hydroperoxide", "tendency_of_atmosphere_moles_of_methyl_peroxy_radical", "tendency_of_atmosphere_moles_of_molecular_hydrogen", "tendency_of_atmosphere_moles_of_nitrate_radical", "tendency_of_atmosphere_moles_of_nitric_acid", "tendency_of_atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "tendency_of_atmosphere_moles_of_nitrogen_dioxide", "tendency_of_atmosphere_moles_of_nitrogen_monoxide", "tendency_of_atmosphere_moles_of_nitrous_acid", "tendency_of_atmosphere_moles_of_nitrous_oxide", "tendency_of_atmosphere_moles_of_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_nox_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_noy_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_ozone", "tendency_of_atmosphere_moles_of_peroxyacetyl_nitrate", "tendency_of_atmosphere_moles_of_peroxynitric_acid", "tendency_of_atmosphere_moles_of_propane", "tendency_of_atmosphere_moles_of_propene", "tendency_of_atmosphere_moles_of_radon", "tendency_of_atmosphere_moles_of_sulfate_dry_aerosol_particles", "tendency_of_atmosphere_moles_of_sulfur_dioxide", "tendency_of_atmosphere_moles_of_toluene", "tendency_of_atmosphere_moles_of_water_vapor", "tendency_of_atmosphere_moles_of_xylene", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_potential_energy_content_due_to_advection", "tendency_of_bedrock_altitude", "tendency_of_canopy_water_amount_due_to_evaporation_of_intercepted_precipitation", "tendency_of_change_in_land_ice_amount", "tendency_of_dry_energy_content_of_atmosphere_layer", "tendency_of_dry_static_energy_content_of_atmosphere_layer", "tendency_of_eastward_wind", "tendency_of_eastward_wind_due_to_advection", "tendency_of_eastward_wind_due_to_advection_by_northward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_advection_by_upward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_convection", "tendency_of_eastward_wind_due_to_diffusion", "tendency_of_eastward_wind_due_to_eliassen_palm_flux_divergence", "tendency_of_eastward_wind_due_to_gravity_wave_drag", "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_eastward_wind_due_to_numerical_artefacts", "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_enthalpy_content_of_atmosphere_layer_due_to_advection", "tendency_of_global_average_sea_level_change", "tendency_of_kinetic_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_land_ice_mass", "tendency_of_land_ice_mass_due_to_basal_mass_balance", "tendency_of_land_ice_mass_due_to_calving", "tendency_of_land_ice_mass_due_to_surface_mass_balance", "tendency_of_land_ice_thickness", "tendency_of_mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_dioxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nox_expressed_as_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_deep_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_shallow_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_turbulence", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_convective_cloud_ice_in_air", "tendency_of_mass_fraction_of_convective_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_aggregation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_bergeron_findeisen_process_from_cloud_liquid", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_deposition_and_sublimation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_evaporation_of_melting_ice", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_water_vapor", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_autoconversion", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_bergeron_findeisen_process_to_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_convection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_longwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_pressure_change", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_shortwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_turbulence", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_heterogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_melting_from_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_riming", "tendency_of_middle_atmosphere_moles_of_carbon_monoxide", "tendency_of_middle_atmosphere_moles_of_hcc140a", "tendency_of_middle_atmosphere_moles_of_methane", "tendency_of_middle_atmosphere_moles_of_methyl_bromide", "tendency_of_middle_atmosphere_moles_of_methyl_chloride", "tendency_of_middle_atmosphere_moles_of_molecular_hydrogen", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_dissolved_inorganic_carbon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_iron_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_silicon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_dissolution_from_inorganic_particles", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_scavenging_by_inorganic_particles", "tendency_of_mole_concentration_of_iron_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_and_photolytic_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_destruction", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_calcareous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diatoms", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diazotrophic_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_miscellaneous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_picophytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_nitrate_utilization", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_remineralization", "tendency_of_mole_concentration_of_silicon_in_sea_water_due_to_biological_production", "tendency_of_northward_wind", "tendency_of_northward_wind_due_to_advection", "tendency_of_northward_wind_due_to_convection", "tendency_of_northward_wind_due_to_diffusion", "tendency_of_northward_wind_due_to_gravity_wave_drag", "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_northward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_ocean_barotropic_streamfunction", "tendency_of_ocean_eddy_kinetic_energy_content_due_to_parameterized_eddy_advection", "tendency_of_ocean_mole_content_of_aragonite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_calcite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_deposition_and_fixation_and_runoff", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_fixation", "tendency_of_ocean_mole_content_of_inorganic_carbon", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_iron_due_to_biological_production", "tendency_of_ocean_mole_content_of_iron_due_to_deposition_and_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "tendency_of_ocean_mole_content_of_nitrogen_due_to_biological_production", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_phosphorus_due_to_biological_production", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_silicon_due_to_biological_production", "tendency_of_ocean_potential_energy_content", "tendency_of_ocean_potential_energy_content_due_to_background", "tendency_of_ocean_potential_energy_content_due_to_tides", "tendency_of_potential_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_convection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_diffusion", "tendency_of_sea_ice_amount_due_to_basal_melting", "tendency_of_sea_ice_amount_due_to_congelation_ice_accumulation", "tendency_of_sea_ice_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_sea_ice_amount_due_to_frazil_ice_accumulation_in_leads", "tendency_of_sea_ice_amount_due_to_lateral_growth_of_ice_floes", "tendency_of_sea_ice_amount_due_to_lateral_melting", "tendency_of_sea_ice_amount_due_to_sea_ice_dynamics", "tendency_of_sea_ice_amount_due_to_sea_ice_thermodynamics", "tendency_of_sea_ice_amount_due_to_surface_melting", "tendency_of_sea_ice_area_fraction_due_to_dynamics", "tendency_of_sea_ice_area_fraction_due_to_ridging", "tendency_of_sea_ice_area_fraction_due_to_thermodynamics", "tendency_of_sea_ice_thickness_due_to_dynamics", "tendency_of_sea_ice_thickness_due_to_thermodynamics", "tendency_of_sea_surface_height_above_mean_sea_level", "tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_salinity", "tendency_of_sea_water_salinity_due_to_advection", "tendency_of_sea_water_salinity_due_to_horizontal_mixing", "tendency_of_sea_water_salinity_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_due_to_sea_ice_thermodynamics", "tendency_of_sea_water_salinity_due_to_vertical_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_residual_mean_advection", "tendency_of_sea_water_temperature", "tendency_of_sea_water_temperature_due_to_advection", "tendency_of_sea_water_temperature_due_to_horizontal_mixing", "tendency_of_sea_water_temperature_due_to_parameterized_eddy_advection", "tendency_of_sea_water_temperature_due_to_vertical_mixing", "tendency_of_soil_and_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_soil_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fertilization", "tendency_of_specific_humidity", "tendency_of_specific_humidity_due_to_advection", "tendency_of_specific_humidity_due_to_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_convection", "tendency_of_specific_humidity_due_to_diffusion", "tendency_of_specific_humidity_due_to_model_physics", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_stratiform_precipitation", "tendency_of_surface_air_pressure", "tendency_of_surface_snow_amount", "tendency_of_surface_snow_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_surface_snow_amount_due_to_drifting_into_sea", "tendency_of_surface_snow_amount_due_to_sea_ice_dynamics", "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", "tendency_of_troposphere_moles_of_carbon_monoxide", "tendency_of_troposphere_moles_of_hcc140a", "tendency_of_troposphere_moles_of_hcfc22", "tendency_of_troposphere_moles_of_methane", "tendency_of_troposphere_moles_of_methyl_bromide", "tendency_of_troposphere_moles_of_methyl_chloride", "tendency_of_troposphere_moles_of_molecular_hydrogen", "tendency_of_upward_air_velocity", "tendency_of_upward_air_velocity_due_to_advection", "tendency_of_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_wind_speed_due_to_convection", "tendency_of_wind_speed_due_to_gravity_wave_drag", "thermal_conductivity_of_frozen_ground", "thermal_energy_content_of_surface_snow", "thermodynamic_phase_of_cloud_water_particles_at_cloud_top", "thermosteric_change_in_mean_sea_level", "thermosteric_change_in_sea_surface_height", "thickness_of_convective_rainfall_amount", "thickness_of_convective_snowfall_amount", "thickness_of_ice_on_sea_ice_melt_pond", "thickness_of_liquid_water_cloud", "thickness_of_rainfall_amount", "thickness_of_snowfall_amount", "thickness_of_stratiform_rainfall_amount", "thickness_of_stratiform_snowfall_amount", "thunderstorm_probability", "tidal_sea_surface_height_above_lowest_astronomical_tide", "tidal_sea_surface_height_above_mean_higher_high_water", "tidal_sea_surface_height_above_mean_lower_low_water", "tidal_sea_surface_height_above_mean_low_water_springs", "tidal_sea_surface_height_above_mean_sea_level", "time", "time_of_maximum_flood_depth", "time_sample_difference_due_to_collocation", "time_when_flood_water_falls_below_threshold", "time_when_flood_water_rises_above_threshold", "toa_adjusted_longwave_forcing", "toa_adjusted_radiative_forcing", "toa_adjusted_shortwave_forcing", "toa_bidirectional_reflectance", "toa_brightness_temperature", "toa_brightness_temperature_assuming_clear_sky", "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", "toa_brightness_temperature_of_standard_scene", "toa_cloud_radiative_effect", "toa_incoming_shortwave_flux", "toa_instantaneous_longwave_forcing", "toa_instantaneous_radiative_forcing", "toa_instantaneous_shortwave_forcing", "toa_longwave_cloud_radiative_effect", "toa_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "toa_net_downward_longwave_flux", "toa_net_downward_longwave_flux_assuming_clear_sky", "toa_net_downward_radiative_flux", "toa_net_downward_shortwave_flux", "toa_net_downward_shortwave_flux_assuming_clear_sky", "toa_net_upward_longwave_flux", "toa_net_upward_longwave_flux_assuming_clear_sky", "toa_net_upward_shortwave_flux", "toa_outgoing_longwave_flux", "toa_outgoing_longwave_flux_assuming_clear_sky", "toa_outgoing_longwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_outgoing_radiance_per_unit_wavelength", "toa_outgoing_radiance_per_unit_wavelength_due_to_solar_induced_fluorescence", "toa_outgoing_radiance_per_unit_wavenumber", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_target", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_target", "toa_outgoing_shortwave_flux", "toa_outgoing_shortwave_flux_assuming_clear_sky", "toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol", "toa_outgoing_shortwave_flux_assuming_no_aerosol", "toa_outgoing_shortwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_shortwave_cloud_radiative_effect", "to_direction_of_air_velocity_relative_to_sea_water", "to_direction_of_surface_downward_stress", "tracer_lifetime", "transpiration_amount", "transpiration_flux", "tropical_cyclone_eye_brightness_temperature", "tropical_cyclone_maximum_sustained_wind_speed", "tropopause_adjusted_longwave_forcing", "tropopause_adjusted_radiative_forcing", "tropopause_adjusted_shortwave_forcing", "tropopause_air_pressure", "tropopause_air_temperature", "tropopause_altitude", "tropopause_downwelling_longwave_flux", "tropopause_instantaneous_longwave_forcing", "tropopause_instantaneous_radiative_forcing", "tropopause_instantaneous_shortwave_forcing", "tropopause_net_downward_longwave_flux", "tropopause_net_downward_shortwave_flux", "tropopause_upwelling_shortwave_flux", "troposphere_mole_content_of_bromine_monoxide", "troposphere_mole_content_of_formaldehyde", "troposphere_mole_content_of_glyoxal", "troposphere_mole_content_of_iodine_monoxide", "troposphere_mole_content_of_nitrogen_dioxide", "troposphere_mole_content_of_ozone", "troposphere_mole_content_of_sulfur_dioxide", "turbulent_mixing_length_of_sea_water", "ultraviolet_index", "ultraviolet_index_assuming_clear_sky", "ultraviolet_index_assuming_overcast_sky", "upward_air_velocity", "upward_derivative_of_eastward_wind", "upward_derivative_of_northward_wind", "upward_derivative_of_wind_from_direction", "upward_dry_static_energy_flux_due_to_diffusion", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_eastward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_westward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_orographic_gravity_waves", "upward_eastward_stress_at_sea_ice_base", "upward_eliassen_palm_flux_in_air", "upward_geothermal_heat_flux_at_ground_level_in_land_ice", "upward_geothermal_heat_flux_at_sea_floor", "upward_heat_flux_at_ground_level_in_snow", "upward_heat_flux_at_ground_level_in_soil", "upward_heat_flux_in_air", "upward_heat_flux_in_sea_water_due_to_convection", "upward_latent_heat_flux_in_air", "upward_mass_flux_of_air", "upward_northward_stress_at_sea_ice_base", "upward_ocean_mass_transport", "upward_sea_ice_basal_heat_flux", "upward_sea_water_velocity", "upward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "upward_sensible_heat_flux_in_air", "upward_transformed_eulerian_mean_air_velocity", "upward_upward_derivative_of_geopotential", "upward_water_vapor_flux_in_air", "upward_water_vapor_flux_in_air_due_to_diffusion", "upward_x_stress_at_sea_ice_base", "upward_y_stress_at_sea_ice_base", "upwelling_longwave_flux_in_air", "upwelling_longwave_flux_in_air_assuming_clear_sky", "upwelling_longwave_radiance_in_air", "upwelling_radiance_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "upwelling_shortwave_flux_in_air", "upwelling_shortwave_flux_in_air_assuming_clear_sky", "upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "upwelling_shortwave_radiance_in_air", "vegetation_area_fraction", "vegetation_carbon_content", "vegetation_mass_content_of_13C", "vegetation_mass_content_of_14C", "vegetation_mass_content_of_nitrogen", "vertical_component_of_ocean_xy_tracer_diffusivity", "vertical_navigation_clearance_above_waterway_surface", "virtual_salt_flux_correction", "virtual_salt_flux_into_sea_water", "virtual_salt_flux_into_sea_water_due_to_evaporation", "virtual_salt_flux_into_sea_water_due_to_newtonian_relaxation", "virtual_salt_flux_into_sea_water_due_to_rainfall", "virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "virtual_salt_flux_into_sea_water_from_rivers", "virtual_temperature", "visibility_in_air", "volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles", "volume_absorption_coefficient_of_radiative_flux_in_sea_water", "volume_absorption_coefficient_of_radiative_flux_in_sea_water_due_to_dissolved_organic_matter", "volume_attenuated_backwards_scattering_function_in_air", "volume_attenuated_backwards_scattering_function_in_air_assuming_no_aerosol_or_cloud", "volume_attenuation_coefficient_of_downwelling_radiative_flux_in_sea_water", "volume_backwards_scattering_coefficient_in_air_due_to_dried_aerosol_particles", "volume_backwards_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water_corrected_for_pure_water_attenuance", "volume_extinction_coefficient_in_air_due_to_ambient_aerosol_particles", "volume_extinction_coefficient_in_air_due_to_cloud_particles", "volume_fraction_of_clay_in_soil", "volume_fraction_of_condensed_water_in_soil", "volume_fraction_of_condensed_water_in_soil_at_critical_point", "volume_fraction_of_condensed_water_in_soil_at_field_capacity", "volume_fraction_of_condensed_water_in_soil_at_wilting_point", "volume_fraction_of_condensed_water_in_soil_pores", "volume_fraction_of_frozen_water_in_soil", "volume_fraction_of_oxygen_in_sea_water", "volume_fraction_of_sand_in_soil", "volume_fraction_of_silt_in_soil", "volume_mixing_ratio_of_oxygen_at_stp_in_sea_water", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_dried_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_scattering_function_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_function_of_radiative_flux_in_sea_water", "water_evaporation_amount", "water_evaporation_amount_from_canopy", "water_evaporation_flux_from_canopy", "water_evaporation_flux_from_soil", "water_evapotranspiration_flux", "water_flux_correction", "water_flux_into_sea_water", "water_flux_into_sea_water_due_to_sea_ice_thermodynamics", "water_flux_into_sea_water_due_to_surface_drainage", "water_flux_into_sea_water_from_icebergs", "water_flux_into_sea_water_from_land_ice", "water_flux_into_sea_water_from_rivers", "water_flux_into_sea_water_from_rivers_and_surface_downward_water_flux", "water_flux_into_sea_water_without_flux_correction", "water_flux_out_of_sea_ice_and_sea_water", "water_flux_out_of_sea_water", "water_flux_out_of_sea_water_due_to_newtonian_relaxation", "water_flux_out_of_sea_water_due_to_sea_ice_thermodynamics", "water_potential_evaporation_amount", "water_potential_evaporation_flux", "water_sublimation_flux", "water_surface_height_above_reference_datum", "water_surface_reference_datum_altitude", "water_table_depth", "water_vapor_partial_pressure_in_air", "water_vapor_saturation_deficit_in_air", "water_volume_transport_in_river_channel", "water_volume_transport_into_sea_water_from_rivers", "wave_frequency", "westward_upward_derivative_of_geopotential", "westward_westward_derivative_of_geopotential", "wet_bulb_potential_temperature", "wet_bulb_temperature", "wind_chill_of_air_temperature", "wind_from_direction", "wind_gust_from_direction", "wind_mixing_energy_flux_into_sea_water", "wind_speed", "wind_speed_of_gust", "wind_speed_shear", "wind_to_direction", "wood_debris_mass_content_of_carbon", "wood_debris_mass_content_of_nitrogen", "x_derivative_of_ocean_rigid_lid_pressure", "x_heat_flux_in_sea_water_due_to_advection", "x_wind", "x_wind_gust", "y_derivative_of_ocean_rigid_lid_pressure", "y_heat_flux_in_sea_water_due_to_advection", "y_wind", "y_wind_gust", "zenith_angle"], "description": "Options", "index": [0], "layout": "IPY_MODEL_6bb4320193c24468ac21d48ace8a55e0", "rows": 10, "style": "IPY_MODEL_2ab6e8895dbe4130bc0252f37be0c680"}}, "42f6ddd93b5544d7a37da119fb161a53": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "483124f7f42d4384ae301928ed3e952e": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "487665a1cfc34b3580a8c43eea042043": {"model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": {"layout": "IPY_MODEL_095e31ba72854f6796b0aa270d3373e4", "outputs": [{"name": "stdout", "output_type": "stream", "text": "Vocabulary: {'temp': {'standard_name': 'sea_surface_temperature$|sea_water_potential_temperature$|sea_water_temperature$'}}\n"}]}}, "52de57c3129c441ab61ea5c5d7d3bf46": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "56c7c6122d3e4c31b48815f285b4c413": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "5fe29f1beb0c4fdc8a1bcb29bcd7af17": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextModel", "state": {"layout": "IPY_MODEL_6d728f68d7894dbd939da3578740c348", "style": "IPY_MODEL_fac52004c9054347ad76d5c54c9220be"}}, "6bb4320193c24468ac21d48ace8a55e0": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "6d728f68d7894dbd939da3578740c348": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "7253849b5b1d46b2be5266556578c604": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextModel", "state": {"description": "exclude", "layout": "IPY_MODEL_b7d7ee2215464372847d566557e2a2c3", "style": "IPY_MODEL_1305a0ef6daa41ea95f7a85b0c24e7da", "value": "air|brightness|change|depth|land|ice|conservative|flux|tendency"}}, "7c1bac5fff1b48f9887d32f7fd4fd457": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", "air_pseudo_equivalent_potential_temperature", "air_pseudo_equivalent_temperature", "air_temperature", "air_temperature_anomaly", "air_temperature_at_cloud_top", "air_temperature_at_effective_cloud_top_defined_by_infrared_radiation", "air_temperature_lapse_rate", "air_temperature_threshold", "apparent_air_temperature", "automated_tropical_cyclone_forecasting_system_storm_identifier", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "canopy_temperature", "change_over_time_in_sea_water_conservative_temperature", "change_over_time_in_sea_water_potential_temperature", "change_over_time_in_sea_water_temperature", "covariance_over_longitude_of_northward_wind_and_air_temperature", "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", "depth_at_shallowest_isotherm_defined_by_soil_temperature", "depth_of_isosurface_of_sea_water_potential_temperature", "dew_point_temperature", "difference_between_sea_surface_temperature_and_air_temperature", "dynamic_tropopause_potential_temperature", "fire_temperature", "freezing_temperature_of_sea_water", "heat_index_of_air_temperature", "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", "integral_wrt_depth_of_sea_water_temperature", "integral_wrt_time_of_air_temperature_deficit", "integral_wrt_time_of_air_temperature_excess", "land_ice_basal_temperature", "land_ice_temperature", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", "number_of_days_with_air_temperature_above_threshold", "number_of_days_with_air_temperature_below_threshold", "number_of_days_with_surface_temperature_below_threshold", "ocean_mixed_layer_thickness_defined_by_temperature", "product_of_air_temperature_and_specific_humidity", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_eastward_wind_and_air_temperature", "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", "product_of_northward_sea_water_velocity_and_temperature", "product_of_northward_wind_and_air_temperature", "product_of_upward_air_velocity_and_air_temperature", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "sea_ice_basal_temperature", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_surface_foundation_temperature", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_temperature", "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", "sea_water_conservative_temperature", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_redistributed_conservative_temperature", "sea_water_redistributed_potential_temperature", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "soil_temperature", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", "square_of_air_temperature", "square_of_sea_surface_temperature", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "surface_brightness_temperature", "surface_temperature", "surface_temperature_anomaly", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", "temperature_at_base_of_ice_sheet_model", "temperature_at_top_of_ice_sheet_model", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically_from_the_surface", "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "tendency_of_air_temperature", "tendency_of_air_temperature_due_to_advection", "tendency_of_air_temperature_due_to_boundary_layer_mixing", "tendency_of_air_temperature_due_to_convection", "tendency_of_air_temperature_due_to_diabatic_processes", "tendency_of_air_temperature_due_to_diffusion", "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", "tendency_of_air_temperature_due_to_dry_convection", "tendency_of_air_temperature_due_to_longwave_heating", "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_model_physics", "tendency_of_air_temperature_due_to_moist_convection", "tendency_of_air_temperature_due_to_radiative_heating", "tendency_of_air_temperature_due_to_shortwave_heating", "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_air_temperature_due_to_stratiform_precipitation", "tendency_of_air_temperature_due_to_turbulence", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_temperature", "tendency_of_sea_water_temperature_due_to_advection", "tendency_of_sea_water_temperature_due_to_horizontal_mixing", "tendency_of_sea_water_temperature_due_to_parameterized_eddy_advection", "tendency_of_sea_water_temperature_due_to_vertical_mixing", "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", "toa_brightness_temperature", "toa_brightness_temperature_assuming_clear_sky", "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", "toa_brightness_temperature_of_standard_scene", "tropical_cyclone_eye_brightness_temperature", "tropopause_air_temperature", "virtual_temperature", "wet_bulb_potential_temperature", "wet_bulb_temperature", "wind_chill_of_air_temperature"], "description": "Options", "index": [0], "layout": "IPY_MODEL_dc1c6f0321f847e1bddcec5e01d820c0", "rows": 10, "style": "IPY_MODEL_25797b31158e45eabc008ee9c0e1e237"}}, "7dc4660948c34e7e80561b715c36912a": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "8b104e2020424618b401e8e4d2c53a17": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "9311efa23935496381e59215b7d38c96": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["acoustic_signal_roundtrip_travel_time_in_sea_water", "aerodynamic_particle_diameter", "aerodynamic_resistance", "age_of_sea_ice", "age_of_stratospheric_air", "age_of_surface_snow", "aggregate_quality_flag", "air_density", "air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", "air_pressure", "air_pressure_anomaly", "air_pressure_at_cloud_base", "air_pressure_at_cloud_top", "air_pressure_at_convective_cloud_base", "air_pressure_at_convective_cloud_top", "air_pressure_at_freezing_level", "air_pressure_at_mean_sea_level", "air_pressure_at_top_of_atmosphere_model", "air_pseudo_equivalent_potential_temperature", "air_pseudo_equivalent_temperature", "air_temperature", "air_temperature_anomaly", "air_temperature_at_cloud_top", "air_temperature_at_effective_cloud_top_defined_by_infrared_radiation", "air_temperature_lapse_rate", "air_temperature_threshold", "altimeter_range", "altimeter_range_correction_due_to_dry_troposphere", "altimeter_range_correction_due_to_ionosphere", "altimeter_range_correction_due_to_wet_troposphere", "altitude", "altitude_at_top_of_atmosphere_model", "altitude_at_top_of_dry_convection", "amplitude_of_global_average_sea_level_change", "angle_of_emergence", "angle_of_incidence", "angle_of_rotation_from_east_to_x", "angle_of_rotation_from_east_to_y", "angle_of_rotation_from_solar_azimuth_to_platform_azimuth", "angstrom_exponent_of_ambient_aerosol_in_air", "apparent_air_temperature", "apparent_oxygen_utilization", "area_fraction", "area_fraction_below_surface", "area_fraction_of_day_defined_by_solar_zenith_angle", "area_fraction_of_night_defined_by_solar_zenith_angle", "area_fraction_of_twilight_defined_by_solar_zenith_angle", "area_type", "asymmetry_factor_of_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_absorption_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_boundary_layer_thickness", "atmosphere_convective_available_potential_energy", "atmosphere_convective_available_potential_energy_wrt_surface", "atmosphere_convective_inhibition", "atmosphere_convective_inhibition_wrt_surface", "atmosphere_downdraft_convective_mass_flux", "atmosphere_dry_energy_content", "atmosphere_dry_static_energy_content", "atmosphere_eastward_stress_due_to_gravity_wave_drag", "atmosphere_energy_content", "atmosphere_enthalpy_content", "atmosphere_heat_diffusivity", "atmosphere_helicity", "atmosphere_horizontal_streamfunction", "atmosphere_horizontal_velocity_potential", "atmosphere_hybrid_height_coordinate", "atmosphere_hybrid_sigma_pressure_coordinate", "atmosphere_kinetic_energy_content", "atmosphere_layer_thickness_expressed_as_geopotential_height_difference", "atmosphere_level_of_free_convection", "atmosphere_level_of_free_convection_wrt_surface", "atmosphere_lifting_condensation_level", "atmosphere_lifting_condensation_level_wrt_surface", "atmosphere_ln_pressure_coordinate", "atmosphere_mass_content_of_acetic_acid", "atmosphere_mass_content_of_aceto_nitrile", "atmosphere_mass_content_of_alkanes", "atmosphere_mass_content_of_alkenes", "atmosphere_mass_content_of_alpha_hexachlorocyclohexane", "atmosphere_mass_content_of_alpha_pinene", "atmosphere_mass_content_of_ammonia", "atmosphere_mass_content_of_ammonium_dry_aerosol_particles", "atmosphere_mass_content_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_aromatic_compounds", "atmosphere_mass_content_of_atomic_bromine", "atmosphere_mass_content_of_atomic_chlorine", "atmosphere_mass_content_of_atomic_nitrogen", "atmosphere_mass_content_of_benzene", "atmosphere_mass_content_of_beta_pinene", "atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_bromine_chloride", "atmosphere_mass_content_of_bromine_monoxide", "atmosphere_mass_content_of_bromine_nitrate", "atmosphere_mass_content_of_brox_expressed_as_bromine", "atmosphere_mass_content_of_butane", "atmosphere_mass_content_of_carbon_dioxide", "atmosphere_mass_content_of_carbon_monoxide", "atmosphere_mass_content_of_carbon_tetrachloride", "atmosphere_mass_content_of_cfc11", "atmosphere_mass_content_of_cfc113", "atmosphere_mass_content_of_cfc113a", "atmosphere_mass_content_of_cfc114", "atmosphere_mass_content_of_cfc115", "atmosphere_mass_content_of_cfc12", "atmosphere_mass_content_of_chlorine_dioxide", "atmosphere_mass_content_of_chlorine_monoxide", "atmosphere_mass_content_of_chlorine_nitrate", "atmosphere_mass_content_of_cloud_condensed_water", "atmosphere_mass_content_of_cloud_ice", "atmosphere_mass_content_of_cloud_liquid_water", "atmosphere_mass_content_of_clox_expressed_as_chlorine", "atmosphere_mass_content_of_convective_cloud_condensed_water", "atmosphere_mass_content_of_convective_cloud_ice", "atmosphere_mass_content_of_convective_cloud_liquid_water", "atmosphere_mass_content_of_dichlorine_peroxide", "atmosphere_mass_content_of_dimethyl_sulfide", "atmosphere_mass_content_of_dinitrogen_pentoxide", "atmosphere_mass_content_of_dust_dry_aerosol_particles", "atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles", "atmosphere_mass_content_of_ethane", "atmosphere_mass_content_of_ethanol", "atmosphere_mass_content_of_ethene", "atmosphere_mass_content_of_ethyne", "atmosphere_mass_content_of_formaldehyde", "atmosphere_mass_content_of_formic_acid", "atmosphere_mass_content_of_gaseous_divalent_mercury", "atmosphere_mass_content_of_gaseous_elemental_mercury", "atmosphere_mass_content_of_graupel", "atmosphere_mass_content_of_graupel_and_hail", "atmosphere_mass_content_of_hail", "atmosphere_mass_content_of_halon1202", "atmosphere_mass_content_of_halon1211", "atmosphere_mass_content_of_halon1301", "atmosphere_mass_content_of_halon2402", "atmosphere_mass_content_of_hcc140a", "atmosphere_mass_content_of_hcfc141b", "atmosphere_mass_content_of_hcfc142b", "atmosphere_mass_content_of_hcfc22", "atmosphere_mass_content_of_hexachlorobiphenyl", "atmosphere_mass_content_of_hox_expressed_as_hydrogen", "atmosphere_mass_content_of_hydrogen_bromide", "atmosphere_mass_content_of_hydrogen_chloride", "atmosphere_mass_content_of_hydrogen_cyanide", "atmosphere_mass_content_of_hydrogen_peroxide", "atmosphere_mass_content_of_hydroperoxyl_radical", "atmosphere_mass_content_of_hydroxyl_radical", "atmosphere_mass_content_of_hypobromous_acid", "atmosphere_mass_content_of_hypochlorous_acid", "atmosphere_mass_content_of_inorganic_bromine", "atmosphere_mass_content_of_inorganic_chlorine", "atmosphere_mass_content_of_isoprene", "atmosphere_mass_content_of_limonene", "atmosphere_mass_content_of_liquid_precipitation", "atmosphere_mass_content_of_mercury_dry_aerosol_particles", "atmosphere_mass_content_of_methane", "atmosphere_mass_content_of_methanol", "atmosphere_mass_content_of_methyl_bromide", "atmosphere_mass_content_of_methyl_chloride", "atmosphere_mass_content_of_methyl_hydroperoxide", "atmosphere_mass_content_of_methyl_peroxy_radical", "atmosphere_mass_content_of_molecular_hydrogen", "atmosphere_mass_content_of_nitrate_dry_aerosol_particles", "atmosphere_mass_content_of_nitrate_radical", "atmosphere_mass_content_of_nitric_acid", "atmosphere_mass_content_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_mass_content_of_nitrogen_monoxide", "atmosphere_mass_content_of_nitrous_acid", "atmosphere_mass_content_of_nitrous_oxide", "atmosphere_mass_content_of_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_nox_expressed_as_nitrogen", "atmosphere_mass_content_of_noy_expressed_as_nitrogen", "atmosphere_mass_content_of_oxygenated_hydrocarbons", "atmosphere_mass_content_of_ozone", "atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_peroxyacetyl_nitrate", "atmosphere_mass_content_of_peroxynitric_acid", "atmosphere_mass_content_of_peroxy_radicals", "atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_propane", "atmosphere_mass_content_of_propene", "atmosphere_mass_content_of_radon", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_expressed_as_cations", "atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_snow", "atmosphere_mass_content_of_sulfate", "atmosphere_mass_content_of_sulfate_ambient_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur", "atmosphere_mass_content_of_sulfur_dioxide", "atmosphere_mass_content_of_terpenes", "atmosphere_mass_content_of_toluene", "atmosphere_mass_content_of_volcanic_ash", "atmosphere_mass_content_of_water", "atmosphere_mass_content_of_water_in_ambient_aerosol_particles", "atmosphere_mass_content_of_water_vapor", "atmosphere_mass_content_of_xylene", "atmosphere_mass_of_air_per_unit_area", "atmosphere_mass_of_carbon_dioxide", "atmosphere_mass_per_unit_area", "atmosphere_mole_content_of_carbon_monoxide", "atmosphere_mole_content_of_methane", "atmosphere_mole_content_of_nitrogen_dioxide", "atmosphere_mole_content_of_ozone", "atmosphere_mole_content_of_water_vapor", "atmosphere_moles_of_acetic_acid", "atmosphere_moles_of_aceto_nitrile", "atmosphere_moles_of_alpha_hexachlorocyclohexane", "atmosphere_moles_of_alpha_pinene", "atmosphere_moles_of_ammonia", "atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_atomic_bromine", "atmosphere_moles_of_atomic_chlorine", "atmosphere_moles_of_atomic_nitrogen", "atmosphere_moles_of_benzene", "atmosphere_moles_of_beta_pinene", "atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_bromine_chloride", "atmosphere_moles_of_bromine_monoxide", "atmosphere_moles_of_bromine_nitrate", "atmosphere_moles_of_brox_expressed_as_bromine", "atmosphere_moles_of_butane", "atmosphere_moles_of_carbon_dioxide", "atmosphere_moles_of_carbon_monoxide", "atmosphere_moles_of_carbon_tetrachloride", "atmosphere_moles_of_cfc11", "atmosphere_moles_of_cfc113", "atmosphere_moles_of_cfc113a", "atmosphere_moles_of_cfc114", "atmosphere_moles_of_cfc115", "atmosphere_moles_of_cfc12", "atmosphere_moles_of_chlorine_dioxide", "atmosphere_moles_of_chlorine_monoxide", "atmosphere_moles_of_chlorine_nitrate", "atmosphere_moles_of_clox_expressed_as_chlorine", "atmosphere_moles_of_dichlorine_peroxide", "atmosphere_moles_of_dimethyl_sulfide", "atmosphere_moles_of_dinitrogen_pentoxide", "atmosphere_moles_of_ethane", "atmosphere_moles_of_ethanol", "atmosphere_moles_of_ethene", "atmosphere_moles_of_ethyne", "atmosphere_moles_of_formaldehyde", "atmosphere_moles_of_formic_acid", "atmosphere_moles_of_gaseous_divalent_mercury", "atmosphere_moles_of_gaseous_elemental_mercury", "atmosphere_moles_of_halon1202", "atmosphere_moles_of_halon1211", "atmosphere_moles_of_halon1301", "atmosphere_moles_of_halon2402", "atmosphere_moles_of_hcc140a", "atmosphere_moles_of_hcfc141b", "atmosphere_moles_of_hcfc142b", "atmosphere_moles_of_hcfc22", "atmosphere_moles_of_hexachlorobiphenyl", "atmosphere_moles_of_hox_expressed_as_hydrogen", "atmosphere_moles_of_hydrogen_bromide", "atmosphere_moles_of_hydrogen_chloride", "atmosphere_moles_of_hydrogen_cyanide", "atmosphere_moles_of_hydrogen_peroxide", "atmosphere_moles_of_hydroperoxyl_radical", "atmosphere_moles_of_hydroxyl_radical", "atmosphere_moles_of_hypobromous_acid", "atmosphere_moles_of_hypochlorous_acid", "atmosphere_moles_of_inorganic_bromine", "atmosphere_moles_of_inorganic_chlorine", "atmosphere_moles_of_isoprene", "atmosphere_moles_of_limonene", "atmosphere_moles_of_methane", "atmosphere_moles_of_methanol", "atmosphere_moles_of_methyl_bromide", "atmosphere_moles_of_methyl_chloride", "atmosphere_moles_of_methyl_hydroperoxide", "atmosphere_moles_of_methyl_peroxy_radical", "atmosphere_moles_of_molecular_hydrogen", "atmosphere_moles_of_nitrate_radical", "atmosphere_moles_of_nitric_acid", "atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_moles_of_nitrogen_dioxide", "atmosphere_moles_of_nitrogen_monoxide", "atmosphere_moles_of_nitrous_acid", "atmosphere_moles_of_nitrous_oxide", "atmosphere_moles_of_nmvoc_expressed_as_carbon", "atmosphere_moles_of_nox_expressed_as_nitrogen", "atmosphere_moles_of_noy_expressed_as_nitrogen", "atmosphere_moles_of_ozone", "atmosphere_moles_of_peroxyacetyl_nitrate", "atmosphere_moles_of_peroxynitric_acid", "atmosphere_moles_of_propane", "atmosphere_moles_of_propene", "atmosphere_moles_of_radon", "atmosphere_moles_of_sulfur_dioxide", "atmosphere_moles_of_toluene", "atmosphere_moles_of_water_vapor", "atmosphere_moles_of_xylene", "atmosphere_momentum_diffusivity", "atmosphere_net_rate_of_absorption_of_longwave_energy", "atmosphere_net_rate_of_absorption_of_shortwave_energy", "atmosphere_net_upward_convective_mass_flux", "atmosphere_net_upward_deep_convective_mass_flux", "atmosphere_net_upward_shallow_convective_mass_flux", "atmosphere_northward_stress_due_to_gravity_wave_drag", "atmosphere_number_content_of_aerosol_particles", "atmosphere_number_content_of_cloud_droplets", "atmosphere_number_content_of_ice_crystals", "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_ammonium_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_optical_thickness_due_to_cloud", "atmosphere_optical_thickness_due_to_convective_cloud", "atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_dust_dry_aerosol_particles", "atmosphere_optical_thickness_due_to_nitrate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm10_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm1_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm2p5_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_stratiform_cloud", "atmosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_water_in_ambient_aerosol_particles", "atmosphere_potential_energy_content", "atmosphere_sigma_coordinate", "atmosphere_sleve_coordinate", "atmosphere_stability_k_index", "atmosphere_stability_showalter_index", "atmosphere_stability_total_totals_index", "atmosphere_transformed_eulerian_mean_meridional_overturning_mass_streamfunction", "atmosphere_updraft_convective_mass_flux", "atmosphere_upward_absolute_vorticity", "atmosphere_upward_relative_vorticity", "atmosphere_x_relative_vorticity", "atmosphere_y_relative_vorticity", "attenuated_signal_test_quality_flag", "automated_tropical_cyclone_forecasting_system_storm_identifier", "backscattering_ratio_in_air", "baroclinic_eastward_sea_water_velocity", "baroclinic_northward_sea_water_velocity", "barometric_altitude", "barotropic_eastward_sea_water_velocity", "barotropic_northward_sea_water_velocity", "barotropic_sea_water_x_velocity", "barotropic_sea_water_y_velocity", "basal_downward_heat_flux_in_sea_ice", "baseflow_amount", "beam_consistency_indicator_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "beaufort_wind_force", "bedrock_altitude", "bedrock_altitude_change_due_to_isostatic_adjustment", "biological_taxon_lsid", "biological_taxon_name", "bioluminescent_photon_rate_in_sea_water", "biomass_burning_carbon_flux", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "brunt_vaisala_frequency_in_air", "burned_area", "burned_area_fraction", "canopy_albedo", "canopy_and_surface_water_amount", "canopy_height", "canopy_resistance_to_ozone_dry_deposition", "canopy_snow_amount", "canopy_temperature", "canopy_throughfall_flux", "canopy_water_amount", "carbon_mass_content_of_forestry_and_agricultural_products", "carbon_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_litter_and_soil_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_soil_from_litter", "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", "cell_area", "cell_thickness", "change_in_atmosphere_energy_content_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_energy_content_of_atmosphere_layer_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_land_ice_amount", "change_in_land_ice_mass", "change_over_time_in_amount_of_ice_and_snow_on_land", "change_over_time_in_atmosphere_mass_content_of_water_due_to_advection", "change_over_time_in_canopy_water_amount", "change_over_time_in_groundwater_amount", "change_over_time_in_land_surface_liquid_water_amount", "change_over_time_in_land_water_amount", "change_over_time_in_mass_content_of_water_in_soil", "change_over_time_in_river_water_amount", "change_over_time_in_sea_water_absolute_salinity", "change_over_time_in_sea_water_conservative_temperature", "change_over_time_in_sea_water_density", "change_over_time_in_sea_water_neutral_density", "change_over_time_in_sea_water_potential_density", "change_over_time_in_sea_water_potential_temperature", "change_over_time_in_sea_water_practical_salinity", "change_over_time_in_sea_water_preformed_salinity", "change_over_time_in_sea_water_salinity", "change_over_time_in_sea_water_specific_potential_enthalpy", "change_over_time_in_sea_water_temperature", "change_over_time_in_surface_snow_amount", "change_over_time_in_thermal_energy_content_of_ice_and_snow_on_land", "change_over_time_in_thermal_energy_content_of_vegetation_and_litter_and_soil", "charnock_coefficient_for_surface_roughness_length_for_momentum_in_air", "clear_sky_area_fraction", "climatology_test_quality_flag", "cloud_albedo", "cloud_area_fraction", "cloud_area_fraction_in_atmosphere_layer", "cloud_base_altitude", "cloud_binary_mask", "cloud_ice_mixing_ratio", "cloud_liquid_water_mixing_ratio", "cloud_top_altitude", "colony_forming_unit_number_concentration_of_biological_taxon_in_sea_water", "compressive_strength_of_sea_ice", "concentration_of_colored_dissolved_organic_matter_in_sea_water_expressed_as_equivalent_mass_fraction_of_quinine_sulfate_dihydrate", "convection_time_fraction", "convective_cloud_area_fraction", "convective_cloud_area_fraction_in_atmosphere_layer", "convective_cloud_base_altitude", "convective_cloud_base_height", "convective_cloud_longwave_emissivity", "convective_cloud_top_altitude", "convective_cloud_top_height", "convective_precipitation_amount", "convective_precipitation_flux", "convective_precipitation_rate", "convective_rainfall_amount", "convective_rainfall_flux", "convective_rainfall_rate", "convective_snowfall_amount", "convective_snowfall_flux", "coriolis_parameter", "correction_for_model_negative_specific_humidity", "covariance_over_longitude_of_northward_wind_and_air_temperature", "depth", "depth_at_base_of_unfrozen_ground", "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", "depth_at_shallowest_isotherm_defined_by_soil_temperature", "depth_at_shallowest_local_minimum_in_vertical_profile_of_mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "depth_below_geoid", "depth_below_sea_floor", "depth_of_isosurface_of_sea_water_potential_temperature", "dew_point_depression", "dew_point_temperature", "diameter_of_ambient_aerosol_particles", "difference_between_sea_surface_temperature_and_air_temperature", "difference_of_air_pressure_from_model_reference", "diffuse_downwelling_shortwave_flux_in_air", "diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "dimensionless_exner_function", "direct_downwelling_shortwave_flux_in_air", "direction_of_radial_vector_away_from_instrument", "direction_of_radial_vector_toward_instrument", "direction_of_sea_ice_displacement", "direction_of_sea_ice_velocity", "distance_from_geocenter", "distance_from_sun", "distance_from_tropical_cyclone_center_to_leading_edge_of_displaced_convection", "divergence_of_sea_ice_velocity", "divergence_of_wind", "downward_air_velocity", "downward_dry_static_energy_flux_due_to_diffusion", "downward_eastward_momentum_flux_in_air", "downward_eastward_momentum_flux_in_air_due_to_diffusion", "downward_eastward_stress_at_sea_ice_base", "downward_heat_flux_at_ground_level_in_snow", "downward_heat_flux_at_ground_level_in_soil", "downward_heat_flux_in_air", "downward_heat_flux_in_floating_ice", "downward_heat_flux_in_sea_ice", "downward_heat_flux_in_soil", "downward_liquid_water_mass_flux_into_groundwater", "downward_northward_momentum_flux_in_air", "downward_northward_momentum_flux_in_air_due_to_diffusion", "downward_northward_stress_at_sea_ice_base", "downward_sea_ice_basal_salt_flux", "downward_water_vapor_flux_in_air_due_to_diffusion", "downward_x_stress_at_sea_ice_base", "downward_x_stress_at_sea_water_surface", "downward_x_stress_correction_at_sea_water_surface", "downward_y_stress_at_sea_ice_base", "downward_y_stress_at_sea_water_surface", "downward_y_stress_correction_at_sea_water_surface", "downwelling_longwave_flux_in_air", "downwelling_longwave_flux_in_air_assuming_clear_sky", "downwelling_longwave_radiance_in_air", "downwelling_photon_flux_in_sea_water", "downwelling_photon_flux_per_unit_wavelength_in_sea_water", "downwelling_photon_radiance_in_sea_water", "downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "downwelling_photon_spherical_irradiance_in_sea_water", "downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "downwelling_photosynthetic_photon_flux_in_sea_water", "downwelling_photosynthetic_photon_radiance_in_sea_water", "downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "downwelling_photosynthetic_radiance_in_sea_water", "downwelling_photosynthetic_radiative_flux_in_sea_water", "downwelling_photosynthetic_spherical_irradiance_in_sea_water", "downwelling_radiance_in_sea_water", "downwelling_radiance_per_unit_wavelength_in_air", "downwelling_radiance_per_unit_wavelength_in_sea_water", "downwelling_radiative_flux_in_sea_water", "downwelling_radiative_flux_per_unit_wavelength_in_air", "downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "downwelling_shortwave_flux_in_air", "downwelling_shortwave_flux_in_air_assuming_clear_sky", "downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "downwelling_shortwave_flux_in_sea_water", "downwelling_shortwave_flux_in_sea_water_at_sea_ice_base", "downwelling_shortwave_radiance_in_air", "downwelling_spherical_irradiance_in_sea_water", "downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "dry_atmosphere_mole_fraction_of_carbon_dioxide", "dry_atmosphere_mole_fraction_of_methane", "dry_energy_content_of_atmosphere_layer", "dry_static_energy_content_of_atmosphere_layer", "duration_of_sunshine", "dvorak_tropical_cyclone_current_intensity_number", "dvorak_tropical_number", "dynamic_tropopause_potential_temperature", "eastward_air_velocity_relative_to_sea_water", "eastward_atmosphere_dry_static_energy_transport_across_unit_distance", "eastward_atmosphere_water_transport_across_unit_distance", "eastward_atmosphere_water_vapor_transport_across_unit_distance", "eastward_derivative_of_eastward_wind", "eastward_derivative_of_northward_sea_ice_velocity", "eastward_derivative_of_northward_wind", "eastward_derivative_of_wind_from_direction", "eastward_flood_water_velocity", "eastward_friction_velocity_in_air", "eastward_land_ice_velocity", "eastward_mass_flux_of_air", "eastward_momentum_flux_correction", "eastward_sea_ice_displacement", "eastward_sea_ice_velocity", "eastward_sea_water_velocity", "eastward_sea_water_velocity_assuming_no_tide", "eastward_sea_water_velocity_at_sea_floor", "eastward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "eastward_sea_water_velocity_due_to_tides", "eastward_transformed_eulerian_mean_air_velocity", "eastward_water_vapor_flux_in_air", "eastward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "eastward_wind", "eastward_wind_shear", "effective_radius_of_cloud_condensed_water_particles_at_cloud_top", "effective_radius_of_cloud_liquid_water_particles", "effective_radius_of_cloud_liquid_water_particles_at_liquid_water_cloud_top", "effective_radius_of_convective_cloud_ice_particles", "effective_radius_of_convective_cloud_liquid_water_particles", "effective_radius_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "effective_radius_of_convective_cloud_rain_particles", "effective_radius_of_convective_cloud_snow_particles", "effective_radius_of_stratiform_cloud_graupel_particles", "effective_radius_of_stratiform_cloud_ice_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "effective_radius_of_stratiform_cloud_rain_particles", "effective_radius_of_stratiform_cloud_snow_particles", "electrical_mobility_diameter_of_ambient_aerosol_particles", "enrichment_of_14C_in_carbon_dioxide_in_air_expressed_as_uppercase_delta_14C", "enthalpy_content_of_atmosphere_layer", "equilibrium_line_altitude", "equivalent_pressure_of_atmosphere_ozone_content", "equivalent_reflectivity_factor", "equivalent_thickness_at_stp_of_atmosphere_ozone_content", "ertel_potential_vorticity", "fast_soil_pool_mass_content_of_carbon", "final_air_pressure_of_lifted_parcel", "fire_area", "fire_radiative_power", "fire_temperature", "flat_line_test_quality_flag", "floating_ice_shelf_area", "floating_ice_shelf_area_fraction", "floating_ice_thickness", "flood_water_duration_above_threshold", "flood_water_speed", "flood_water_thickness", "fog_area_fraction", "forecast_period", "forecast_reference_time", "fractional_saturation_of_oxygen_in_sea_water", "fraction_of_surface_downwelling_photosynthetic_radiative_flux_absorbed_by_vegetation", "fraction_of_time_with_sea_ice_area_fraction_above_threshold", "freezing_level_altitude", "freezing_temperature_of_sea_water", "frequency_of_lightning_flashes_per_unit_area", "frozen_water_content_of_soil_layer", "fugacity_of_carbon_dioxide_in_sea_water", "gap_test_quality_flag", "geoid_height_above_reference_ellipsoid", "geopotential", "geopotential_height", "geopotential_height_anomaly", "geopotential_height_at_cloud_top", "geopotential_height_at_volcanic_ash_cloud_top", "geostrophic_eastward_sea_water_velocity", "geostrophic_eastward_wind", "geostrophic_northward_sea_water_velocity", "geostrophic_northward_wind", "global_average_sea_level_change", "global_average_steric_sea_level_change", "global_average_thermosteric_sea_level_change", "graupel_and_hail_fall_amount", "graupel_and_hail_fall_flux", "graupel_fall_amount", "graupel_fall_flux", "grid_latitude", "grid_longitude", "gross_primary_productivity_of_biomass_expressed_as_13C", "gross_primary_productivity_of_biomass_expressed_as_14C", "gross_primary_productivity_of_biomass_expressed_as_carbon", "gross_range_test_quality_flag", "gross_rate_of_decrease_in_area_fraction", "gross_rate_of_increase_in_area_fraction", "grounded_ice_sheet_area", "grounded_ice_sheet_area_fraction", "ground_level_altitude", "growth_limitation_of_calcareous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_diatoms_due_to_solar_irradiance", "growth_limitation_of_diazotrophic_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_miscellaneous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_picophytoplankton_due_to_solar_irradiance", "hail_fall_amount", "hail_fall_flux", "halosteric_change_in_mean_sea_level", "halosteric_change_in_sea_surface_height", "harmonic_period", "heat_flux_correction", "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", "heat_flux_into_sea_water_due_to_newtonian_relaxation", "heat_flux_into_sea_water_due_to_sea_ice_thermodynamics", "heat_flux_into_sea_water_due_to_snow_thermodynamics", "heat_index_of_air_temperature", "height", "height_above_geopotential_datum", "height_above_geopotential_datum_at_top_of_atmosphere_model", "height_above_mean_sea_level", "height_above_reference_ellipsoid", "height_above_sea_floor", "height_at_cloud_top", "height_at_effective_cloud_top_defined_by_infrared_radiation", "high_type_cloud_area_fraction", "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid", "histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid", "horizontal_atmosphere_dry_energy_transport", "horizontal_dry_energy_transport_in_atmosphere_layer", "humidity_mixing_ratio", "ice_cloud_area_fraction", "ice_cloud_area_fraction_in_atmosphere_layer", "ice_volume_in_frozen_ground_in_excess_of_pore_volume_in_unfrozen_ground_expressed_as_fraction_of_frozen_ground_volume", "incoming_water_volume_transport_along_river_channel", "indicative_error_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "institution", "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_salinity_and_sea_water_density", "integral_wrt_depth_of_sea_water_practical_salinity", "integral_wrt_depth_of_sea_water_temperature", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "integral_wrt_height_of_product_of_eastward_wind_and_specific_humidity", "integral_wrt_height_of_product_of_northward_wind_and_specific_humidity", "integral_wrt_time_of_air_temperature_deficit", "integral_wrt_time_of_air_temperature_excess", "integral_wrt_time_of_mole_stomatal_uptake_of_ozone", "integral_wrt_time_of_radioactivity_concentration_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_104Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_110mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_11C_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_136Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_139Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_13N_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_145Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_150Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_153Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_154Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_157Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_158Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_15O_in_air", "integral_wrt_time_of_radioactivity_concentration_of_160Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_161Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162mTb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_163Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_165Dy_in_air", "integral_wrt_time_of_radioactivity_concentration_of_18F_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Hg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207mPb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_208Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_220Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_224Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234mPa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m1Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m2Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244mAm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_246Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_247Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_248Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_24Na_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_251Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_252Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254mEs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_255Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_3H_in_air", "integral_wrt_time_of_radioactivity_concentration_of_41Ar_in_air", "integral_wrt_time_of_radioactivity_concentration_of_54Mn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_58Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_60Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Zn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_73Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_75Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77mGe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_79Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86mRb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_96Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_98Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Tc_in_air", "integral_wrt_time_of_surface_downward_eastward_stress", "integral_wrt_time_of_surface_downward_latent_heat_flux", "integral_wrt_time_of_surface_downward_northward_stress", "integral_wrt_time_of_surface_downward_sensible_heat_flux", "integral_wrt_time_of_surface_downwelling_longwave_flux_in_air", "integral_wrt_time_of_surface_downwelling_shortwave_flux_in_air", "integral_wrt_time_of_surface_net_downward_longwave_flux", "integral_wrt_time_of_surface_net_downward_shortwave_flux", "integral_wrt_time_of_toa_net_downward_shortwave_flux", "integral_wrt_time_of_toa_outgoing_longwave_flux", "iron_growth_limitation_of_calcareous_phytoplankton", "iron_growth_limitation_of_diatoms", "iron_growth_limitation_of_diazotrophic_phytoplankton", "iron_growth_limitation_of_miscellaneous_phytoplankton", "iron_growth_limitation_of_picophytoplankton", "isccp_cloud_area_fraction", "isotope_ratio_of_17O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotope_ratio_of_18O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotropic_longwave_radiance_in_air", "isotropic_radiance_per_unit_wavelength_in_air", "isotropic_shortwave_radiance_in_air", "kinetic_energy_content_of_atmosphere_layer", "kinetic_energy_dissipation_in_atmosphere_boundary_layer", "lagrangian_tendency_of_air_pressure", "lagrangian_tendency_of_atmosphere_sigma_coordinate", "land_area_fraction", "land_binary_mask", "land_cover_lccs", "land_ice_area_fraction", "land_ice_basal_drag", "land_ice_basal_melt_rate", "land_ice_basal_specific_mass_balance_flux", "land_ice_basal_temperature", "land_ice_basal_upward_velocity", "land_ice_basal_x_velocity", "land_ice_basal_y_velocity", "land_ice_calving_rate", "land_ice_lwe_basal_melt_rate", "land_ice_lwe_calving_rate", "land_ice_lwe_surface_specific_mass_balance_rate", "land_ice_mass", "land_ice_mass_not_displacing_sea_water", "land_ice_runoff_flux", "land_ice_sigma_coordinate", "land_ice_specific_mass_flux_due_to_calving", "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", "land_ice_surface_melt_flux", "land_ice_surface_specific_mass_balance_flux", "land_ice_surface_specific_mass_balance_rate", "land_ice_surface_upward_velocity", "land_ice_surface_x_velocity", "land_ice_surface_y_velocity", "land_ice_temperature", "land_ice_thickness", "land_ice_vertical_mean_x_velocity", "land_ice_vertical_mean_y_velocity", "land_ice_x_velocity", "land_ice_y_velocity", "land_surface_liquid_water_amount", "land_water_amount", "latitude", "leaf_area_index", "leaf_mass_content_of_carbon", "leaf_mass_content_of_nitrogen", "lightning_potential_index", "lightning_radiant_energy", "liquid_water_cloud_area_fraction", "liquid_water_cloud_area_fraction_in_atmosphere_layer", "liquid_water_content_of_permafrost_layer", "liquid_water_content_of_soil_layer", "liquid_water_content_of_surface_snow", "liquid_water_mass_flux_into_soil_due_to_surface_snow_melt", "litter_mass_content_of_13C", "litter_mass_content_of_14C", "litter_mass_content_of_carbon", "litter_mass_content_of_nitrogen", "location_test_quality_flag", "log10_size_interval_based_number_size_distribution_of_cloud_condensation_nuclei_at_stp_in_air", "longitude", "low_type_cloud_area_fraction", "lwe_convective_precipitation_rate", "lwe_convective_snowfall_rate", "lwe_precipitation_rate", "lwe_snowfall_rate", "lwe_stratiform_precipitation_rate", "lwe_stratiform_snowfall_rate", "lwe_thickness_of_atmosphere_mass_content_of_water_vapor", "lwe_thickness_of_canopy_water_amount", "lwe_thickness_of_convective_precipitation_amount", "lwe_thickness_of_convective_snowfall_amount", "lwe_thickness_of_frozen_water_content_of_soil_layer", "lwe_thickness_of_moisture_content_of_soil_layer", "lwe_thickness_of_precipitation_amount", "lwe_thickness_of_snowfall_amount", "lwe_thickness_of_soil_moisture_content", "lwe_thickness_of_stratiform_precipitation_amount", "lwe_thickness_of_stratiform_snowfall_amount", "lwe_thickness_of_surface_snow_amount", "lwe_thickness_of_water_evaporation_amount", "lwe_water_evaporation_rate", "magnitude_of_air_velocity_relative_to_sea_water", "magnitude_of_derivative_of_position_wrt_model_level_number", "magnitude_of_derivative_of_position_wrt_x_coordinate_index", "magnitude_of_derivative_of_position_wrt_y_coordinate_index", "magnitude_of_heat_flux_in_sea_water_due_to_advection", "magnitude_of_sea_ice_displacement", "magnitude_of_surface_downward_stress", "mass_concentration_of_19_butanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_19_hexanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_acetic_acid_in_air", "mass_concentration_of_aceto_nitrile_in_air", "mass_concentration_of_adenosine_triphosphate_in_sea_water", "mass_concentration_of_alkanes_in_air", "mass_concentration_of_alkenes_in_air", "mass_concentration_of_alpha_carotene_in_sea_water", "mass_concentration_of_alpha_hexachlorocyclohexane_in_air", "mass_concentration_of_alpha_pinene_in_air", "mass_concentration_of_ammonia_in_air", "mass_concentration_of_ammonium_dry_aerosol_particles_in_air", "mass_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_aromatic_compounds_in_air", "mass_concentration_of_atomic_bromine_in_air", "mass_concentration_of_atomic_chlorine_in_air", "mass_concentration_of_atomic_nitrogen_in_air", "mass_concentration_of_benzene_in_air", "mass_concentration_of_beta_carotene_in_sea_water", "mass_concentration_of_beta_pinene_in_air", "mass_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_biomass_burning_dry_aerosol_particles_in_air", "mass_concentration_of_bromine_chloride_in_air", "mass_concentration_of_bromine_monoxide_in_air", "mass_concentration_of_bromine_nitrate_in_air", "mass_concentration_of_brox_expressed_as_bromine_in_air", "mass_concentration_of_butane_in_air", "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_carbon_dioxide_in_air", "mass_concentration_of_carbon_monoxide_in_air", "mass_concentration_of_carbon_tetrachloride_in_air", "mass_concentration_of_carotene_in_sea_water", "mass_concentration_of_cfc113a_in_air", "mass_concentration_of_cfc113_in_air", "mass_concentration_of_cfc114_in_air", "mass_concentration_of_cfc115_in_air", "mass_concentration_of_cfc11_in_air", "mass_concentration_of_cfc12_in_air", "mass_concentration_of_chlorine_dioxide_in_air", "mass_concentration_of_chlorine_monoxide_in_air", "mass_concentration_of_chlorine_nitrate_in_air", "mass_concentration_of_chlorophyll_a_in_sea_water", "mass_concentration_of_chlorophyll_b_in_sea_water", "mass_concentration_of_chlorophyll_c1_and_chlorophyll_c2_in_sea_water", "mass_concentration_of_chlorophyll_c3_in_sea_water", "mass_concentration_of_chlorophyll_c_in_sea_water", "mass_concentration_of_chlorophyllide_a_in_sea_water", "mass_concentration_of_chlorophyll_in_sea_water", "mass_concentration_of_cloud_liquid_water_in_air", "mass_concentration_of_clox_expressed_as_chlorine_in_air", "mass_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "mass_concentration_of_condensed_water_in_soil", "mass_concentration_of_diadinoxanthin_in_sea_water", "mass_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_dichlorine_peroxide_in_air", "mass_concentration_of_dimethyl_sulfide_in_air", "mass_concentration_of_dinitrogen_pentoxide_in_air", "mass_concentration_of_divinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_drizzle_in_air", "mass_concentration_of_dust_dry_aerosol_particles_in_air", "mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_concentration_of_ethane_in_air", "mass_concentration_of_ethanol_in_air", "mass_concentration_of_ethene_in_air", "mass_concentration_of_ethyne_in_air", "mass_concentration_of_flagellates_expressed_as_carbon_in_sea_water", "mass_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_formaldehyde_in_air", "mass_concentration_of_formic_acid_in_air", "mass_concentration_of_fucoxanthin_in_sea_water", "mass_concentration_of_gaseous_divalent_mercury_in_air", "mass_concentration_of_gaseous_elemental_mercury_in_air", "mass_concentration_of_halon1202_in_air", "mass_concentration_of_halon1211_in_air", "mass_concentration_of_halon1301_in_air", "mass_concentration_of_halon2402_in_air", "mass_concentration_of_hcc140a_in_air", "mass_concentration_of_hcfc141b_in_air", "mass_concentration_of_hcfc142b_in_air", "mass_concentration_of_hcfc22_in_air", "mass_concentration_of_hexachlorobiphenyl_in_air", "mass_concentration_of_hox_expressed_as_hydrogen_in_air", "mass_concentration_of_hydrogen_bromide_in_air", "mass_concentration_of_hydrogen_chloride_in_air", "mass_concentration_of_hydrogen_cyanide_in_air", "mass_concentration_of_hydrogen_peroxide_in_air", "mass_concentration_of_hydroperoxyl_radical_in_air", "mass_concentration_of_hydroxyl_radical_in_air", "mass_concentration_of_hypobromous_acid_in_air", "mass_concentration_of_hypochlorous_acid_in_air", "mass_concentration_of_inorganic_bromine_in_air", "mass_concentration_of_inorganic_chlorine_in_air", "mass_concentration_of_inorganic_nitrogen_in_sea_water", "mass_concentration_of_isoprene_in_air", "mass_concentration_of_limonene_in_air", "mass_concentration_of_liquid_water_in_air", "mass_concentration_of_lutein_in_sea_water", "mass_concentration_of_mercury_dry_aerosol_particles_in_air", "mass_concentration_of_methane_in_air", "mass_concentration_of_methanol_in_air", "mass_concentration_of_methyl_bromide_in_air", "mass_concentration_of_methyl_chloride_in_air", "mass_concentration_of_methyl_hydroperoxide_in_air", "mass_concentration_of_methyl_peroxy_radical_in_air", "mass_concentration_of_microphytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_molecular_hydrogen_in_air", "mass_concentration_of_monovinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_nanophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_nitrate_dry_aerosol_particles_in_air", "mass_concentration_of_nitrate_radical_in_air", "mass_concentration_of_nitric_acid_in_air", "mass_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_concentration_of_nitrogen_dioxide_in_air", "mass_concentration_of_nitrogen_monoxide_in_air", "mass_concentration_of_nitrous_acid_in_air", "mass_concentration_of_nitrous_oxide_in_air", "mass_concentration_of_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_nox_expressed_as_nitrogen_in_air", "mass_concentration_of_noy_expressed_as_nitrogen_in_air", "mass_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mass_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_oxygenated_hydrocarbons_in_air", "mass_concentration_of_oxygen_in_sea_water", "mass_concentration_of_ozone_in_air", "mass_concentration_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_peridinin_in_sea_water", "mass_concentration_of_peroxyacetyl_nitrate_in_air", "mass_concentration_of_peroxynitric_acid_in_air", "mass_concentration_of_peroxy_radicals_in_air", "mass_concentration_of_petroleum_hydrocarbons_in_sea_water", "mass_concentration_of_phaeopigments_in_sea_water", "mass_concentration_of_phosphate_in_sea_water", "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_pm10_ambient_aerosol_particles_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_pm1_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_prasinoxanthin_in_sea_water", "mass_concentration_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_propane_in_air", "mass_concentration_of_propene_in_air", "mass_concentration_of_radon_in_air", "mass_concentration_of_rain_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_silicate_in_sea_water", "mass_concentration_of_sulfate_ambient_aerosol_particles_in_air", "mass_concentration_of_sulfate_dry_aerosol_particles_in_air", "mass_concentration_of_sulfur_dioxide_in_air", "mass_concentration_of_suspended_matter_in_sea_water", "mass_concentration_of_terpenes_in_air", "mass_concentration_of_toluene_in_air", "mass_concentration_of_violaxanthin_in_sea_water", "mass_concentration_of_volcanic_ash_in_air", "mass_concentration_of_water_in_ambient_aerosol_particles_in_air", "mass_concentration_of_water_vapor_in_air", "mass_concentration_of_xylene_in_air", "mass_concentration_of_zeaxanthin_in_sea_water", "mass_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mass_content_of_13C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_14C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_cloud_condensed_water_in_atmosphere_layer", "mass_content_of_cloud_ice_in_atmosphere_layer", "mass_content_of_cloud_liquid_water_in_atmosphere_layer", "mass_content_of_nitrogen_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_water_in_atmosphere_layer", "mass_content_of_water_in_soil", "mass_content_of_water_in_soil_layer", "mass_content_of_water_in_soil_layer_defined_by_root_depth", "mass_content_of_water_vapor_containing_17O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_18O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_single_2H_in_atmosphere_layer", "mass_content_of_water_vapor_in_atmosphere_layer", "mass_flux_of_carbon_into_forestry_and_agricultural_products_due_to_crop_harvesting", "mass_flux_of_carbon_into_litter_from_vegetation", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence", "mass_flux_of_carbon_into_sea_water_from_rivers", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_senescence", "mass_flux_of_carbon_out_of_soil_due_to_leaching_and_runoff", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_into_sea_from_rivers", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_litter_and_soil_due_to_immobilisation_and_remineralization", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil_due_to_leaching_and_runoff", "mass_fraction_of_acetic_acid_in_air", "mass_fraction_of_aceto_nitrile_in_air", "mass_fraction_of_alkanes_in_air", "mass_fraction_of_alkenes_in_air", "mass_fraction_of_alpha_hexachlorocyclohexane_in_air", "mass_fraction_of_alpha_pinene_in_air", "mass_fraction_of_ammonia_in_air", "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_aromatic_compounds_in_air", "mass_fraction_of_atomic_bromine_in_air", "mass_fraction_of_atomic_chlorine_in_air", "mass_fraction_of_atomic_nitrogen_in_air", "mass_fraction_of_benzene_in_air", "mass_fraction_of_beta_pinene_in_air", "mass_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_bromine_chloride_in_air", "mass_fraction_of_bromine_monoxide_in_air", "mass_fraction_of_bromine_nitrate_in_air", "mass_fraction_of_brox_expressed_as_bromine_in_air", "mass_fraction_of_butane_in_air", "mass_fraction_of_carbon_dioxide_in_air", "mass_fraction_of_carbon_dioxide_tracer_in_air", "mass_fraction_of_carbon_monoxide_in_air", "mass_fraction_of_carbon_tetrachloride_in_air", "mass_fraction_of_cfc113a_in_air", "mass_fraction_of_cfc113_in_air", "mass_fraction_of_cfc114_in_air", "mass_fraction_of_cfc115_in_air", "mass_fraction_of_cfc11_in_air", "mass_fraction_of_cfc12_in_air", "mass_fraction_of_chlorine_dioxide_in_air", "mass_fraction_of_chlorine_monoxide_in_air", "mass_fraction_of_chlorine_nitrate_in_air", "mass_fraction_of_chlorophyll_a_in_sea_water", "mass_fraction_of_clay_in_soil", "mass_fraction_of_cloud_condensed_water_in_air", "mass_fraction_of_cloud_ice_in_air", "mass_fraction_of_cloud_liquid_water_in_air", "mass_fraction_of_clox_expressed_as_chlorine_in_air", "mass_fraction_of_convective_cloud_condensed_water_in_air", "mass_fraction_of_convective_cloud_ice_in_air", "mass_fraction_of_convective_cloud_liquid_water_in_air", "mass_fraction_of_dichlorine_peroxide_in_air", "mass_fraction_of_dimethyl_sulfide_in_air", "mass_fraction_of_dinitrogen_pentoxide_in_air", "mass_fraction_of_dust_dry_aerosol_particles_in_air", "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_ethane_in_air", "mass_fraction_of_ethanol_in_air", "mass_fraction_of_ethene_in_air", "mass_fraction_of_ethyne_in_air", "mass_fraction_of_formaldehyde_in_air", "mass_fraction_of_formic_acid_in_air", "mass_fraction_of_frozen_water_in_soil_moisture", "mass_fraction_of_gaseous_divalent_mercury_in_air", "mass_fraction_of_gaseous_elemental_mercury_in_air", "mass_fraction_of_graupel_and_hail_in_air", "mass_fraction_of_graupel_in_air", "mass_fraction_of_gravel_in_soil", "mass_fraction_of_hail_in_air", "mass_fraction_of_halon1202_in_air", "mass_fraction_of_halon1211_in_air", "mass_fraction_of_halon1301_in_air", "mass_fraction_of_halon2402_in_air", "mass_fraction_of_hcc140a_in_air", "mass_fraction_of_hcfc141b_in_air", "mass_fraction_of_hcfc142b_in_air", "mass_fraction_of_hcfc22_in_air", "mass_fraction_of_hexachlorobiphenyl_in_air", "mass_fraction_of_hox_expressed_as_hydrogen_in_air", "mass_fraction_of_hydrogen_bromide_in_air", "mass_fraction_of_hydrogen_chloride_in_air", "mass_fraction_of_hydrogen_cyanide_in_air", "mass_fraction_of_hydrogen_peroxide_in_air", "mass_fraction_of_hydroperoxyl_radical_in_air", "mass_fraction_of_hydroxyl_radical_in_air", "mass_fraction_of_hypobromous_acid_in_air", "mass_fraction_of_hypochlorous_acid_in_air", "mass_fraction_of_inorganic_bromine_in_air", "mass_fraction_of_inorganic_chlorine_in_air", "mass_fraction_of_isoprene_in_air", "mass_fraction_of_limonene_in_air", "mass_fraction_of_liquid_precipitation_in_air", "mass_fraction_of_mercury_dry_aerosol_particles_in_air", "mass_fraction_of_methane_in_air", "mass_fraction_of_methanesulfonic_acid_dry_aerosol_particles_in_air", "mass_fraction_of_methanol_in_air", "mass_fraction_of_methyl_bromide_in_air", "mass_fraction_of_methyl_chloride_in_air", "mass_fraction_of_methyl_hydroperoxide_in_air", "mass_fraction_of_methyl_peroxy_radical_in_air", "mass_fraction_of_molecular_hydrogen_in_air", "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_nitrate_radical_in_air", "mass_fraction_of_nitric_acid_in_air", "mass_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_fraction_of_nitrogen_dioxide_in_air", "mass_fraction_of_nitrogen_monoxide_in_air", "mass_fraction_of_nitrous_acid_in_air", "mass_fraction_of_nitrous_oxide_in_air", "mass_fraction_of_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_nox_expressed_as_nitrogen_in_air", "mass_fraction_of_noy_expressed_as_nitrogen_in_air", "mass_fraction_of_organic_matter_in_soil", "mass_fraction_of_oxygenated_hydrocarbons_in_air", "mass_fraction_of_ozone_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_peroxyacetyl_nitrate_in_air", "mass_fraction_of_peroxynitric_acid_in_air", "mass_fraction_of_peroxy_radicals_in_air", "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_pm10_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_pm1_ambient_aerosol_particles_in_air", "mass_fraction_of_pm1_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_precipitation_in_air", "mass_fraction_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_propane_in_air", "mass_fraction_of_propene_in_air", "mass_fraction_of_radon_in_air", "mass_fraction_of_rainfall_falling_onto_surface_snow", "mass_fraction_of_sand_in_soil", "mass_fraction_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_shallow_convective_cloud_liquid_water_in_air", "mass_fraction_of_silt_in_soil", "mass_fraction_of_snow_in_air", "mass_fraction_of_solid_precipitation_falling_onto_surface_snow", "mass_fraction_of_stratiform_cloud_ice_in_air", "mass_fraction_of_stratiform_cloud_liquid_water_in_air", "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_sulfur_dioxide_in_air", "mass_fraction_of_sulfuric_acid_in_air", "mass_fraction_of_terpenes_in_air", "mass_fraction_of_toluene_in_air", "mass_fraction_of_unfrozen_water_in_soil_moisture", "mass_fraction_of_water_in_air", "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_xylene_in_air", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_strain_rate", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_stress", "medium_soil_pool_mass_content_of_carbon", "medium_type_cloud_area_fraction", "minimum_depth_of_aragonite_undersaturation_in_sea_water", "minimum_depth_of_calcite_undersaturation_in_sea_water", "minus_one_times_surface_upwelling_longwave_flux_in_air", "minus_one_times_surface_upwelling_shortwave_flux_in_air", "minus_one_times_toa_outgoing_shortwave_flux", "minus_one_times_water_flux_into_sea_water_from_rivers", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "minus_tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "minus_tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "miscellaneous_living_matter_mass_content_of_carbon", "miscellaneous_living_matter_mass_content_of_nitrogen", "model_level_number", "model_level_number_at_base_of_ocean_mixed_layer_defined_by_sigma_theta", "model_level_number_at_convective_cloud_base", "model_level_number_at_convective_cloud_top", "model_level_number_at_sea_floor", "model_level_number_at_top_of_atmosphere_boundary_layer", "moisture_content_of_soil_layer_at_field_capacity", "mole_concentration_of_acetic_acid_in_air", "mole_concentration_of_aceto_nitrile_in_air", "mole_concentration_of_adenosine_triphosphate_in_sea_water", "mole_concentration_of_alpha_hexachlorocyclohexane_in_air", "mole_concentration_of_alpha_pinene_in_air", "mole_concentration_of_ammonia_in_air", "mole_concentration_of_ammonium_in_sea_water", "mole_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_atomic_bromine_in_air", "mole_concentration_of_atomic_chlorine_in_air", "mole_concentration_of_atomic_nitrogen_in_air", "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", "mole_concentration_of_benzene_in_air", "mole_concentration_of_beta_pinene_in_air", "mole_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mole_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_bromine_chloride_in_air", "mole_concentration_of_bromine_monoxide_in_air", "mole_concentration_of_bromine_nitrate_in_air", "mole_concentration_of_brox_expressed_as_bromine_in_air", "mole_concentration_of_butane_in_air", "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_carbonate_abiotic_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_calcite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_natural_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbon_dioxide_in_air", "mole_concentration_of_carbon_monoxide_in_air", "mole_concentration_of_carbon_tetrachloride_in_air", "mole_concentration_of_cfc113a_in_air", "mole_concentration_of_cfc113_in_air", "mole_concentration_of_cfc114_in_air", "mole_concentration_of_cfc115_in_air", "mole_concentration_of_cfc11_in_air", "mole_concentration_of_cfc11_in_sea_water", "mole_concentration_of_cfc12_in_air", "mole_concentration_of_cfc12_in_sea_water", "mole_concentration_of_chlorine_dioxide_in_air", "mole_concentration_of_chlorine_monoxide_in_air", "mole_concentration_of_chlorine_nitrate_in_air", "mole_concentration_of_clox_expressed_as_chlorine_in_air", "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_dichlorine_peroxide_in_air", "mole_concentration_of_dimethyl_sulfide_in_air", "mole_concentration_of_dimethyl_sulfide_in_sea_water", "mole_concentration_of_dinitrogen_pentoxide_in_air", "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_abiotic_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_natural_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", "mole_concentration_of_dissolved_iron_in_sea_water", "mole_concentration_of_dissolved_molecular_nitrogen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile", "mole_concentration_of_dissolved_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_carbon_in_sea_water", "mole_concentration_of_dissolved_organic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_phosphorus_in_sea_water", "mole_concentration_of_ethane_in_air", "mole_concentration_of_ethanol_in_air", "mole_concentration_of_ethene_in_air", "mole_concentration_of_ethyne_in_air", "mole_concentration_of_formaldehyde_in_air", "mole_concentration_of_formic_acid_in_air", "mole_concentration_of_gaseous_divalent_mercury_in_air", "mole_concentration_of_gaseous_elemental_mercury_in_air", "mole_concentration_of_halon1202_in_air", "mole_concentration_of_halon1211_in_air", "mole_concentration_of_halon1301_in_air", "mole_concentration_of_halon2402_in_air", "mole_concentration_of_hcc140a_in_air", "mole_concentration_of_hcfc141b_in_air", "mole_concentration_of_hcfc142b_in_air", "mole_concentration_of_hcfc22_in_air", "mole_concentration_of_hexachlorobiphenyl_in_air", "mole_concentration_of_hox_expressed_as_hydrogen_in_air", "mole_concentration_of_hydrogen_bromide_in_air", "mole_concentration_of_hydrogen_chloride_in_air", "mole_concentration_of_hydrogen_cyanide_in_air", "mole_concentration_of_hydrogen_peroxide_in_air", "mole_concentration_of_hydrogen_sulfide_in_sea_water", "mole_concentration_of_hydroperoxyl_radical_in_air", "mole_concentration_of_hydroxyl_radical_in_air", "mole_concentration_of_hypobromous_acid_in_air", "mole_concentration_of_hypochlorous_acid_in_air", "mole_concentration_of_inorganic_bromine_in_air", "mole_concentration_of_inorganic_chlorine_in_air", "mole_concentration_of_isoprene_in_air", "mole_concentration_of_limonene_in_air", "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_methane_in_air", "mole_concentration_of_methanol_in_air", "mole_concentration_of_methyl_bromide_in_air", "mole_concentration_of_methyl_chloride_in_air", "mole_concentration_of_methyl_hydroperoxide_in_air", "mole_concentration_of_methyl_peroxy_radical_in_air", "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_molecular_hydrogen_in_air", "mole_concentration_of_nitrate_and_nitrite_in_sea_water", "mole_concentration_of_nitrate_in_sea_water", "mole_concentration_of_nitrate_radical_in_air", "mole_concentration_of_nitric_acid_in_air", "mole_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_concentration_of_nitrite_in_sea_water", "mole_concentration_of_nitrogen_dioxide_in_air", "mole_concentration_of_nitrogen_monoxide_in_air", "mole_concentration_of_nitrous_acid_in_air", "mole_concentration_of_nitrous_oxide_in_air", "mole_concentration_of_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_nox_expressed_as_nitrogen_in_air", "mole_concentration_of_noy_expressed_as_nitrogen_in_air", "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water", "mole_concentration_of_ozone_in_air", "mole_concentration_of_particulate_matter_expressed_as_carbon_in_sea_water", "mole_concentration_of_particulate_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_nitrogen_in_sea_water", "mole_concentration_of_peroxyacetyl_nitrate_in_air", "mole_concentration_of_peroxynitric_acid_in_air", "mole_concentration_of_phosphate_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water", "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_propane_in_air", "mole_concentration_of_propene_in_air", "mole_concentration_of_radon_in_air", "mole_concentration_of_silicate_in_sea_water", "mole_concentration_of_sulfur_dioxide_in_air", "mole_concentration_of_sulfur_hexafluoride_in_sea_water", "mole_concentration_of_toluene_in_air", "mole_concentration_of_water_vapor_in_air", "mole_concentration_of_xylene_in_air", "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water", "mole_content_of_carbon_monoxide_in_atmosphere_layer", "mole_content_of_methane_in_atmosphere_layer", "mole_content_of_nitrogen_dioxide_in_atmosphere_layer", "mole_content_of_ozone_in_atmosphere_layer", "mole_fraction_of_acetaldehyde_in_air", "mole_fraction_of_acetic_acid_in_air", "mole_fraction_of_acetone_in_air", "mole_fraction_of_aceto_nitrile_in_air", "mole_fraction_of_aldehydes_in_air", "mole_fraction_of_alkanes_in_air", "mole_fraction_of_alkenes_in_air", "mole_fraction_of_alpha_hexachlorocyclohexane_in_air", "mole_fraction_of_alpha_pinene_in_air", "mole_fraction_of_ammonia_in_air", "mole_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_artificial_tracer_with_fixed_lifetime_in_air", "mole_fraction_of_atomic_bromine_in_air", "mole_fraction_of_atomic_chlorine_in_air", "mole_fraction_of_atomic_nitrogen_in_air", "mole_fraction_of_benzene_in_air", "mole_fraction_of_beta_pinene_in_air", "mole_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_bromine_chloride_in_air", "mole_fraction_of_bromine_monoxide_in_air", "mole_fraction_of_bromine_nitrate_in_air", "mole_fraction_of_brox_expressed_as_bromine_in_air", "mole_fraction_of_butane_in_air", "mole_fraction_of_carbon_dioxide_in_air", "mole_fraction_of_carbon_monoxide_in_air", "mole_fraction_of_carbon_tetrachloride_in_air", "mole_fraction_of_carbon_tetrafluoride_in_air", "mole_fraction_of_carbonyl_fluoride_in_air", "mole_fraction_of_carbonyl_sulfide_in_air", "mole_fraction_of_cfc113a_in_air", "mole_fraction_of_cfc113_in_air", "mole_fraction_of_cfc114_in_air", "mole_fraction_of_cfc115_in_air", "mole_fraction_of_cfc11_in_air", "mole_fraction_of_cfc12_in_air", "mole_fraction_of_chlorine_dioxide_in_air", "mole_fraction_of_chlorine_monoxide_in_air", "mole_fraction_of_chlorine_nitrate_in_air", "mole_fraction_of_chloroform_in_air", "mole_fraction_of_clox_expressed_as_chlorine_in_air", "mole_fraction_of_dichlorine_in_air", "mole_fraction_of_dichlorine_peroxide_in_air", "mole_fraction_of_dichloromethane_in_air", "mole_fraction_of_dimethyl_sulfide_in_air", "mole_fraction_of_dinitrogen_pentoxide_in_air", "mole_fraction_of_ethane_in_air", "mole_fraction_of_ethanol_in_air", "mole_fraction_of_ethene_in_air", "mole_fraction_of_ethyne_in_air", "mole_fraction_of_formaldehyde_in_air", "mole_fraction_of_formic_acid_in_air", "mole_fraction_of_gaseous_divalent_mercury_in_air", "mole_fraction_of_gaseous_elemental_mercury_in_air", "mole_fraction_of_glyoxal_in_air", "mole_fraction_of_halon1202_in_air", "mole_fraction_of_halon1211_in_air", "mole_fraction_of_halon1301_in_air", "mole_fraction_of_halon2402_in_air", "mole_fraction_of_hcc140a_in_air", "mole_fraction_of_hcfc124_in_air", "mole_fraction_of_hcfc141b_in_air", "mole_fraction_of_hcfc142b_in_air", "mole_fraction_of_hcfc22_in_air", "mole_fraction_of_hexachlorobiphenyl_in_air", "mole_fraction_of_hfc125_in_air", "mole_fraction_of_hfc134a_in_air", "mole_fraction_of_hfc143a_in_air", "mole_fraction_of_hfc152a_in_air", "mole_fraction_of_hfc227ea_in_air", "mole_fraction_of_hfc236fa_in_air", "mole_fraction_of_hfc23_in_air", "mole_fraction_of_hfc245fa_in_air", "mole_fraction_of_hfc32_in_air", "mole_fraction_of_hfc365mfc_in_air", "mole_fraction_of_hfc4310mee_in_air", "mole_fraction_of_hox_expressed_as_hydrogen_in_air", "mole_fraction_of_hydrogen_bromide_in_air", "mole_fraction_of_hydrogen_chloride_in_air", "mole_fraction_of_hydrogen_cyanide_in_air", "mole_fraction_of_hydrogen_peroxide_in_air", "mole_fraction_of_hydrogen_sulfide_in_air", "mole_fraction_of_hydroperoxyl_radical_in_air", "mole_fraction_of_hydroxyl_radical_in_air", "mole_fraction_of_hypobromous_acid_in_air", "mole_fraction_of_hypochlorous_acid_in_air", "mole_fraction_of_inorganic_bromine_in_air", "mole_fraction_of_inorganic_chlorine_in_air", "mole_fraction_of_isoprene_in_air", "mole_fraction_of_limonene_in_air", "mole_fraction_of_methane_in_air", "mole_fraction_of_methanol_in_air", "mole_fraction_of_methyl_bromide_in_air", "mole_fraction_of_methyl_chloride_in_air", "mole_fraction_of_methylglyoxal_in_air", "mole_fraction_of_methyl_hydroperoxide_in_air", "mole_fraction_of_methyl_peroxy_radical_in_air", "mole_fraction_of_molecular_hydrogen_in_air", "mole_fraction_of_nitrate_radical_in_air", "mole_fraction_of_nitric_acid_in_air", "mole_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_fraction_of_nitrogen_dioxide_in_air", "mole_fraction_of_nitrogen_monoxide_in_air", "mole_fraction_of_nitrogen_trifluoride_in_air", "mole_fraction_of_nitrous_acid_in_air", "mole_fraction_of_nitrous_oxide_in_air", "mole_fraction_of_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_nox_expressed_as_nitrogen_in_air", "mole_fraction_of_noy_expressed_as_nitrogen_in_air", "mole_fraction_of_organic_nitrates_in_air", "mole_fraction_of_ox_in_air", "mole_fraction_of_ozone_in_air", "mole_fraction_of_perchloroethene_in_air", "mole_fraction_of_peroxyacetyl_nitrate_in_air", "mole_fraction_of_peroxynitric_acid_in_air", "mole_fraction_of_pfc116_in_air", "mole_fraction_of_pfc218_in_air", "mole_fraction_of_pfc318_in_air", "mole_fraction_of_propane_in_air", "mole_fraction_of_propene_in_air", "mole_fraction_of_radon_in_air", "mole_fraction_of_sulfur_dioxide_in_air", "mole_fraction_of_sulfur_hexafluoride_in_air", "mole_fraction_of_sulfuryl_fluoride_in_air", "mole_fraction_of_toluene_in_air", "mole_fraction_of_water_vapor_in_air", "mole_fraction_of_xylene_in_air", "mole_ratio_of_nitrate_to_phosphate_in_sea_water", "moles_of_cfc11_per_unit_mass_in_sea_water", "moles_of_dissolved_inorganic_carbon_per_unit_mass_in_sea_water", "moles_of_nitrate_and_nitrite_per_unit_mass_in_sea_water", "moles_of_nitrate_per_unit_mass_in_sea_water", "moles_of_nitrite_per_unit_mass_in_sea_water", "moles_of_oxygen_per_unit_mass_in_sea_water", "moles_of_phosphate_per_unit_mass_in_sea_water", "moles_of_silicate_per_unit_mass_in_sea_water", "multi_variate_test_quality_flag", "neighbor_test_quality_flag", "net_downward_longwave_flux_in_air", "net_downward_longwave_flux_in_air_assuming_clear_sky", "net_downward_radiative_flux_at_top_of_atmosphere_model", "net_downward_shortwave_flux_at_sea_water_surface", "net_downward_shortwave_flux_in_air", "net_downward_shortwave_flux_in_air_assuming_clear_sky", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_calcareous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diatoms", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diazotrophic_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_miscellaneous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_picophytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_due_to_nitrate_utilization", "net_primary_production_of_biomass_expressed_as_carbon_per_unit_volume_in_sea_water", "net_primary_productivity_of_biomass_expressed_as_carbon", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_leaves", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_miscellaneous_living_matter", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_roots", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_wood", "net_rate_of_absorption_of_longwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_ocean_layer", "net_upward_longwave_flux_in_air", "net_upward_longwave_flux_in_air_assuming_clear_sky", "net_upward_shortwave_flux_in_air", "net_upward_shortwave_flux_in_air_assuming_clear_sky", "nitrogen_growth_limitation_of_calcareous_phytoplankton", "nitrogen_growth_limitation_of_diatoms", "nitrogen_growth_limitation_of_diazotrophic_phytoplankton", "nitrogen_growth_limitation_of_miscellaneous_phytoplankton", "nitrogen_growth_limitation_of_picophytoplankton", "nitrogen_mass_content_of_forestry_and_agricultural_products", "nitrogen_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "nitrogen_mass_flux_into_litter_from_vegetation", "nitrogen_mass_flux_into_soil_from_litter", "nitrogen_mass_flux_into_soil_from_vegetation_excluding_litter", "non_tidal_elevation_of_sea_surface_height", "normalized_difference_vegetation_index", "northward_air_velocity_relative_to_sea_water", "northward_atmosphere_dry_static_energy_transport_across_unit_distance", "northward_atmosphere_heat_transport", "northward_atmosphere_water_transport_across_unit_distance", "northward_atmosphere_water_vapor_transport_across_unit_distance", "northward_derivative_of_eastward_sea_ice_velocity", "northward_derivative_of_eastward_wind", "northward_derivative_of_northward_wind", "northward_derivative_of_wind_from_direction", "northward_eliassen_palm_flux_in_air", "northward_flood_water_velocity", "northward_friction_velocity_in_air", "northward_heat_flux_in_air_due_to_eddy_advection", "northward_land_ice_velocity", "northward_mass_flux_of_air", "northward_momentum_flux_correction", "northward_northward_derivative_of_geopotential", "northward_ocean_freshwater_transport", "northward_ocean_freshwater_transport_due_to_diffusion", "northward_ocean_freshwater_transport_due_to_gyre", "northward_ocean_freshwater_transport_due_to_overturning", "northward_ocean_freshwater_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport", "northward_ocean_heat_transport_due_to_diffusion", "northward_ocean_heat_transport_due_to_gyre", "northward_ocean_heat_transport_due_to_overturning", "northward_ocean_heat_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_diffusion", "northward_ocean_heat_transport_due_to_parameterized_submesoscale_eddy_advection", "northward_ocean_salt_transport", "northward_ocean_salt_transport_due_to_diffusion", "northward_ocean_salt_transport_due_to_gyre", "northward_ocean_salt_transport_due_to_overturning", "northward_ocean_salt_transport_due_to_parameterized_eddy_advection", "northward_sea_ice_displacement", "northward_sea_ice_velocity", "northward_sea_water_velocity", "northward_sea_water_velocity_assuming_no_tide", "northward_sea_water_velocity_at_sea_floor", "northward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "northward_sea_water_velocity_due_to_tides", "northward_transformed_eulerian_mean_air_velocity", "northward_upward_derivative_of_geopotential", "northward_water_vapor_flux_in_air", "northward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "northward_westward_derivative_of_geopotential", "northward_wind", "northward_wind_shear", "nudging_increment_in_mass_content_of_water_in_soil", "nudging_increment_in_snow_and_ice_amount_on_land", "number_concentration_of_aerosol_particles_at_stp_in_air", "number_concentration_of_ambient_aerosol_particles_in_air", "number_concentration_of_biological_taxon_in_sea_water", "number_concentration_of_cloud_condensation_nuclei_at_stp_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air_at_liquid_water_cloud_top", "number_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "number_concentration_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "number_concentration_of_ice_crystals_in_air", "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top", "number_concentration_of_nucleation_mode_ambient_aerosol_particles_in_air", "number_concentration_of_ozone_molecules_in_air", "number_concentration_of_pm10_aerosol_particles_in_air", "number_concentration_of_pm2p5_aerosol_particles_in_air", "number_concentration_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "number_of_days_with_air_temperature_above_threshold", "number_of_days_with_air_temperature_below_threshold", "number_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "number_of_days_with_surface_temperature_below_threshold", "number_of_days_with_wind_speed_above_threshold", "number_of_icebergs_per_unit_area", "number_of_missing_observations", "number_of_observations", "ocean_barotropic_mass_streamfunction", "ocean_barotropic_streamfunction", "ocean_double_sigma_coordinate", "ocean_heat_x_transport", "ocean_heat_x_transport_due_to_diffusion", "ocean_heat_x_transport_due_to_parameterized_eddy_advection", "ocean_heat_y_transport", "ocean_heat_y_transport_due_to_diffusion", "ocean_heat_y_transport_due_to_parameterized_eddy_advection", "ocean_isopycnal_layer_thickness_diffusivity", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_vertical_friction", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_xy_friction", "ocean_mass_content_of_dissolved_inorganic_carbon", "ocean_mass_content_of_dissolved_organic_carbon", "ocean_mass_content_of_particulate_organic_matter_expressed_as_carbon", "ocean_mass_x_transport", "ocean_mass_x_transport_due_to_advection", "ocean_mass_x_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_mass_y_transport", "ocean_mass_y_transport_due_to_advection", "ocean_mass_y_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "ocean_meridional_overturning_streamfunction", "ocean_mixed_layer_thickness", "ocean_mixed_layer_thickness_defined_by_mixing_scheme", "ocean_mixed_layer_thickness_defined_by_sigma_t", "ocean_mixed_layer_thickness_defined_by_sigma_theta", "ocean_mixed_layer_thickness_defined_by_temperature", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_deficit", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_threshold", "ocean_momentum_xy_biharmonic_diffusivity", "ocean_momentum_xy_laplacian_diffusivity", "ocean_montgomery_potential", "ocean_relative_vorticity", "ocean_rigid_lid_pressure", "ocean_rigid_lid_pressure_expressed_as_sea_surface_height_above_geoid", "ocean_salt_x_transport", "ocean_salt_y_transport", "ocean_s_coordinate", "ocean_s_coordinate_g1", "ocean_s_coordinate_g2", "ocean_sigma_coordinate", "ocean_sigma_z_coordinate", "ocean_tracer_biharmonic_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_epineutral_biharmonic_diffusivity", "ocean_tracer_epineutral_laplacian_diffusivity", "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_xy_biharmonic_diffusivity", "ocean_tracer_xy_laplacian_diffusivity", "ocean_vertical_diffusivity", "ocean_vertical_heat_diffusivity", "ocean_vertical_momentum_diffusivity", "ocean_vertical_momentum_diffusivity_due_to_background", "ocean_vertical_momentum_diffusivity_due_to_convection", "ocean_vertical_momentum_diffusivity_due_to_form_drag", "ocean_vertical_momentum_diffusivity_due_to_tides", "ocean_vertical_salt_diffusivity", "ocean_vertical_tracer_diffusivity", "ocean_vertical_tracer_diffusivity_due_to_background", "ocean_vertical_tracer_diffusivity_due_to_convection", "ocean_vertical_tracer_diffusivity_due_to_tides", "ocean_vertical_tracer_diffusivity_due_to_wind_mixing", "ocean_volume", "ocean_volume_fraction", "ocean_volume_transport_across_line", "ocean_volume_x_transport", "ocean_volume_y_transport", "ocean_y_overturning_mass_streamfunction", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "omnidirectional_photosynthetic_spherical_irradiance_in_sea_water", "omnidirectional_spherical_irradiance_per_unit_wavelength_in_sea_water", "optical_thickness_of_atmosphere_layer_due_to_ambient_aerosol_particles", "original_air_pressure_of_lifted_parcel", "outgoing_water_volume_transport_along_river_channel", "partial_pressure_of_carbon_dioxide_in_sea_water", "partial_pressure_of_methane_in_sea_water", "permafrost_active_layer_thickness", "permafrost_area_fraction", "permafrost_layer_thickness", "phase_of_global_average_sea_level_change", "photolysis_rate_of_molecular_oxygen", "photolysis_rate_of_nitrogen_dioxide", "photolysis_rate_of_ozone", "photolysis_rate_of_ozone_to_1D_oxygen_atom", "planetary_albedo", "platform_azimuth_angle", "platform_course", "platform_heave", "platform_heave_down", "platform_heave_rate", "platform_heave_rate_down", "platform_heave_rate_up", "platform_heave_up", "platform_id", "platform_name", "platform_orientation", "platform_pitch", "platform_pitch_fore_down", "platform_pitch_fore_up", "platform_pitch_rate", "platform_pitch_rate_fore_down", "platform_pitch_rate_fore_up", "platform_roll", "platform_roll_rate", "platform_roll_rate_starboard_down", "platform_roll_rate_starboard_up", "platform_roll_starboard_down", "platform_roll_starboard_up", "platform_speed_wrt_air", "platform_speed_wrt_ground", "platform_speed_wrt_sea_water", "platform_surge", "platform_surge_aft", "platform_surge_fore", "platform_surge_rate", "platform_surge_rate_aft", "platform_surge_rate_fore", "platform_sway", "platform_sway_port", "platform_sway_rate", "platform_sway_rate_port", "platform_sway_rate_starboard", "platform_sway_starboard", "platform_view_angle", "platform_yaw", "platform_yaw_fore_port", "platform_yaw_fore_starboard", "platform_yaw_rate", "platform_yaw_rate_fore_port", "platform_yaw_rate_fore_starboard", "platform_zenith_angle", "potential_energy_content_of_atmosphere_layer", "potential_vorticity_of_atmosphere_layer", "potential_vorticity_of_ocean_layer", "precipitation_amount", "precipitation_flux", "precipitation_flux_containing_17O", "precipitation_flux_containing_18O", "precipitation_flux_containing_single_2H", "precipitation_flux_onto_canopy", "predominant_precipitation_type_at_surface", "pressure_at_effective_cloud_top_defined_by_infrared_radiation", "probability_distribution_of_wind_from_direction_over_time", "product_of_air_temperature_and_specific_humidity", "product_of_eastward_sea_water_velocity_and_salinity", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_eastward_wind_and_air_temperature", "product_of_eastward_wind_and_geopotential_height", "product_of_eastward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_eastward_wind_and_northward_wind", "product_of_eastward_wind_and_specific_humidity", "product_of_eastward_wind_and_upward_air_velocity", "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", "product_of_lagrangian_tendency_of_air_pressure_and_geopotential_height", "product_of_lagrangian_tendency_of_air_pressure_and_specific_humidity", "product_of_northward_sea_water_velocity_and_salinity", "product_of_northward_sea_water_velocity_and_temperature", "product_of_northward_wind_and_air_temperature", "product_of_northward_wind_and_geopotential_height", "product_of_northward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_northward_wind_and_specific_humidity", "product_of_northward_wind_and_upward_air_velocity", "product_of_upward_air_velocity_and_air_temperature", "product_of_upward_air_velocity_and_specific_humidity", "projection_x_angular_coordinate", "projection_x_coordinate", "projection_y_angular_coordinate", "projection_y_coordinate", "proportion_of_acceptable_signal_returns_from_acoustic_instrument_in_sea_water", "quality_flag", "radial_sea_water_velocity_away_from_instrument", "radial_sea_water_velocity_toward_instrument", "radial_velocity_of_scatterers_away_from_instrument", "radial_velocity_of_scatterers_toward_instrument", "radiation_frequency", "radiation_wavelength", "radioactivity_concentration_in_air", "radioactivity_concentration_of_101Mo_in_air", "radioactivity_concentration_of_101Tc_in_air", "radioactivity_concentration_of_102Mo_in_air", "radioactivity_concentration_of_102mTc_in_air", "radioactivity_concentration_of_102Tc_in_air", "radioactivity_concentration_of_103mRh_in_air", "radioactivity_concentration_of_103Ru_in_air", "radioactivity_concentration_of_104Tc_in_air", "radioactivity_concentration_of_105mRh_in_air", "radioactivity_concentration_of_105Rh_in_air", "radioactivity_concentration_of_105Ru_in_air", "radioactivity_concentration_of_106mRh_in_air", "radioactivity_concentration_of_106Rh_in_air", "radioactivity_concentration_of_106Ru_in_air", "radioactivity_concentration_of_107mPd_in_air", "radioactivity_concentration_of_107Pd_in_air", "radioactivity_concentration_of_107Rh_in_air", "radioactivity_concentration_of_109mAg_in_air", "radioactivity_concentration_of_109Pd_in_air", "radioactivity_concentration_of_110mAg_in_air", "radioactivity_concentration_of_111Ag_in_air", "radioactivity_concentration_of_111mAg_in_air", "radioactivity_concentration_of_111mCd_in_air", "radioactivity_concentration_of_111mPd_in_air", "radioactivity_concentration_of_111Pd_in_air", "radioactivity_concentration_of_112Ag_in_air", "radioactivity_concentration_of_112Pd_in_air", "radioactivity_concentration_of_113Ag_in_air", "radioactivity_concentration_of_113Cd_in_air", "radioactivity_concentration_of_113mAg_in_air", "radioactivity_concentration_of_113mCd_in_air", "radioactivity_concentration_of_113mIn_in_air", "radioactivity_concentration_of_115Ag_in_air", "radioactivity_concentration_of_115Cd_in_air", "radioactivity_concentration_of_115In_in_air", "radioactivity_concentration_of_115mAg_in_air", "radioactivity_concentration_of_115mCd_in_air", "radioactivity_concentration_of_115mIn_in_air", "radioactivity_concentration_of_116In_in_air", "radioactivity_concentration_of_116mIn_in_air", "radioactivity_concentration_of_117Cd_in_air", "radioactivity_concentration_of_117In_in_air", "radioactivity_concentration_of_117mCd_in_air", "radioactivity_concentration_of_117mIn_in_air", "radioactivity_concentration_of_117mSn_in_air", "radioactivity_concentration_of_118Cd_in_air", "radioactivity_concentration_of_118In_in_air", "radioactivity_concentration_of_118mIn_in_air", "radioactivity_concentration_of_119In_in_air", "radioactivity_concentration_of_119mIn_in_air", "radioactivity_concentration_of_119mSn_in_air", "radioactivity_concentration_of_11C_in_air", "radioactivity_concentration_of_121mSn_in_air", "radioactivity_concentration_of_121Sn_in_air", "radioactivity_concentration_of_123mSn_in_air", "radioactivity_concentration_of_123Sn_in_air", "radioactivity_concentration_of_124mSb_in_air", "radioactivity_concentration_of_124Sb_in_air", "radioactivity_concentration_of_125mTe_in_air", "radioactivity_concentration_of_125Sb_in_air", "radioactivity_concentration_of_125Sn_in_air", "radioactivity_concentration_of_126mSb_in_air", "radioactivity_concentration_of_126Sb_in_air", "radioactivity_concentration_of_126Sn_in_air", "radioactivity_concentration_of_127mTe_in_air", "radioactivity_concentration_of_127Sb_in_air", "radioactivity_concentration_of_127Sn_in_air", "radioactivity_concentration_of_127Te_in_air", "radioactivity_concentration_of_128mSb_in_air", "radioactivity_concentration_of_128Sb_in_air", "radioactivity_concentration_of_128Sn_in_air", "radioactivity_concentration_of_129I_in_air", "radioactivity_concentration_of_129mTe_in_air", "radioactivity_concentration_of_129mXe_in_air", "radioactivity_concentration_of_129Sb_in_air", "radioactivity_concentration_of_129Te_in_air", "radioactivity_concentration_of_130I_in_air", "radioactivity_concentration_of_130mI_in_air", "radioactivity_concentration_of_130mSb_in_air", "radioactivity_concentration_of_130Sb_in_air", "radioactivity_concentration_of_130Sn_in_air", "radioactivity_concentration_of_131I_in_air", "radioactivity_concentration_of_131mTe_in_air", "radioactivity_concentration_of_131mXe_in_air", "radioactivity_concentration_of_131Sb_in_air", "radioactivity_concentration_of_131Te_in_air", "radioactivity_concentration_of_132I_in_air", "radioactivity_concentration_of_132Te_in_air", "radioactivity_concentration_of_133I_in_air", "radioactivity_concentration_of_133mI_in_air", "radioactivity_concentration_of_133mTe_in_air", "radioactivity_concentration_of_133mXe_in_air", "radioactivity_concentration_of_133Te_in_air", "radioactivity_concentration_of_133Xe_in_air", "radioactivity_concentration_of_134Cs_in_air", "radioactivity_concentration_of_134I_in_air", "radioactivity_concentration_of_134mCs_in_air", "radioactivity_concentration_of_134mI_in_air", "radioactivity_concentration_of_134mXe_in_air", "radioactivity_concentration_of_134Te_in_air", "radioactivity_concentration_of_135Cs_in_air", "radioactivity_concentration_of_135I_in_air", "radioactivity_concentration_of_135mBa_in_air", "radioactivity_concentration_of_135mCs_in_air", "radioactivity_concentration_of_135mXe_in_air", "radioactivity_concentration_of_135Xe_in_air", "radioactivity_concentration_of_136Cs_in_air", "radioactivity_concentration_of_137Cs_in_air", "radioactivity_concentration_of_137mBa_in_air", "radioactivity_concentration_of_137Xe_in_air", "radioactivity_concentration_of_138Cs_in_air", "radioactivity_concentration_of_138Xe_in_air", "radioactivity_concentration_of_139Ba_in_air", "radioactivity_concentration_of_13N_in_air", "radioactivity_concentration_of_140Ba_in_air", "radioactivity_concentration_of_140La_in_air", "radioactivity_concentration_of_141Ce_in_air", "radioactivity_concentration_of_141La_in_air", "radioactivity_concentration_of_142Ce_in_air", "radioactivity_concentration_of_142La_in_air", "radioactivity_concentration_of_142mPr_in_air", "radioactivity_concentration_of_142Pr_in_air", "radioactivity_concentration_of_143Ce_in_air", "radioactivity_concentration_of_143La_in_air", "radioactivity_concentration_of_143Pr_in_air", "radioactivity_concentration_of_144Ce_in_air", "radioactivity_concentration_of_144mPr_in_air", "radioactivity_concentration_of_144Nd_in_air", "radioactivity_concentration_of_144Pr_in_air", "radioactivity_concentration_of_145Pr_in_air", "radioactivity_concentration_of_146Ce_in_air", "radioactivity_concentration_of_146Pr_in_air", "radioactivity_concentration_of_147Nd_in_air", "radioactivity_concentration_of_147Pm_in_air", "radioactivity_concentration_of_147Pr_in_air", "radioactivity_concentration_of_147Sm_in_air", "radioactivity_concentration_of_148mPm_in_air", "radioactivity_concentration_of_148Pm_in_air", "radioactivity_concentration_of_148Sm_in_air", "radioactivity_concentration_of_149Nd_in_air", "radioactivity_concentration_of_149Pm_in_air", "radioactivity_concentration_of_149Sm_in_air", "radioactivity_concentration_of_150Pm_in_air", "radioactivity_concentration_of_151Nd_in_air", "radioactivity_concentration_of_151Pm_in_air", "radioactivity_concentration_of_151Sm_in_air", "radioactivity_concentration_of_152mPm_in_air", "radioactivity_concentration_of_152Nd_in_air", "radioactivity_concentration_of_152Pm_in_air", "radioactivity_concentration_of_153Sm_in_air", "radioactivity_concentration_of_154Eu_in_air", "radioactivity_concentration_of_155Eu_in_air", "radioactivity_concentration_of_155Sm_in_air", "radioactivity_concentration_of_156Eu_in_air", "radioactivity_concentration_of_156Sm_in_air", "radioactivity_concentration_of_157Eu_in_air", "radioactivity_concentration_of_158Eu_in_air", "radioactivity_concentration_of_159Eu_in_air", "radioactivity_concentration_of_159Gd_in_air", "radioactivity_concentration_of_15O_in_air", "radioactivity_concentration_of_160Tb_in_air", "radioactivity_concentration_of_161Tb_in_air", "radioactivity_concentration_of_162Gd_in_air", "radioactivity_concentration_of_162mTb_in_air", "radioactivity_concentration_of_162Tb_in_air", "radioactivity_concentration_of_163Tb_in_air", "radioactivity_concentration_of_165Dy_in_air", "radioactivity_concentration_of_18F_in_air", "radioactivity_concentration_of_206Hg_in_air", "radioactivity_concentration_of_206Tl_in_air", "radioactivity_concentration_of_207mPb_in_air", "radioactivity_concentration_of_207Tl_in_air", "radioactivity_concentration_of_208Tl_in_air", "radioactivity_concentration_of_209Bi_in_air", "radioactivity_concentration_of_209Pb_in_air", "radioactivity_concentration_of_209Tl_in_air", "radioactivity_concentration_of_210Bi_in_air", "radioactivity_concentration_of_210Pb_in_air", "radioactivity_concentration_of_210Po_in_air", "radioactivity_concentration_of_210Tl_in_air", "radioactivity_concentration_of_211Bi_in_air", "radioactivity_concentration_of_211Pb_in_air", "radioactivity_concentration_of_211Po_in_air", "radioactivity_concentration_of_212Bi_in_air", "radioactivity_concentration_of_212Pb_in_air", "radioactivity_concentration_of_212Po_in_air", "radioactivity_concentration_of_213Bi_in_air", "radioactivity_concentration_of_213Pb_in_air", "radioactivity_concentration_of_213Po_in_air", "radioactivity_concentration_of_214Bi_in_air", "radioactivity_concentration_of_214Pb_in_air", "radioactivity_concentration_of_214Po_in_air", "radioactivity_concentration_of_215At_in_air", "radioactivity_concentration_of_215Bi_in_air", "radioactivity_concentration_of_215Po_in_air", "radioactivity_concentration_of_216At_in_air", "radioactivity_concentration_of_216Po_in_air", "radioactivity_concentration_of_217At_in_air", "radioactivity_concentration_of_217Po_in_air", "radioactivity_concentration_of_218At_in_air", "radioactivity_concentration_of_218Po_in_air", "radioactivity_concentration_of_218Rn_in_air", "radioactivity_concentration_of_219At_in_air", "radioactivity_concentration_of_219Rn_in_air", "radioactivity_concentration_of_220Rn_in_air", "radioactivity_concentration_of_221Fr_in_air", "radioactivity_concentration_of_221Rn_in_air", "radioactivity_concentration_of_222Fr_in_air", "radioactivity_concentration_of_222Ra_in_air", "radioactivity_concentration_of_222Rn_in_air", "radioactivity_concentration_of_223Fr_in_air", "radioactivity_concentration_of_223Ra_in_air", "radioactivity_concentration_of_223Rn_in_air", "radioactivity_concentration_of_224Ra_in_air", "radioactivity_concentration_of_225Ac_in_air", "radioactivity_concentration_of_225Ra_in_air", "radioactivity_concentration_of_226Ac_in_air", "radioactivity_concentration_of_226Ra_in_air", "radioactivity_concentration_of_226Th_in_air", "radioactivity_concentration_of_227Ac_in_air", "radioactivity_concentration_of_227Ra_in_air", "radioactivity_concentration_of_227Th_in_air", "radioactivity_concentration_of_228Ac_in_air", "radioactivity_concentration_of_228Ra_in_air", "radioactivity_concentration_of_228Th_in_air", "radioactivity_concentration_of_229Ac_in_air", "radioactivity_concentration_of_229Ra_in_air", "radioactivity_concentration_of_229Th_in_air", "radioactivity_concentration_of_230Pa_in_air", "radioactivity_concentration_of_230Th_in_air", "radioactivity_concentration_of_230U_in_air", "radioactivity_concentration_of_231Pa_in_air", "radioactivity_concentration_of_231Th_in_air", "radioactivity_concentration_of_231U_in_air", "radioactivity_concentration_of_232Pa_in_air", "radioactivity_concentration_of_232Th_in_air", "radioactivity_concentration_of_232U_in_air", "radioactivity_concentration_of_233Pa_in_air", "radioactivity_concentration_of_233Th_in_air", "radioactivity_concentration_of_233U_in_air", "radioactivity_concentration_of_234mPa_in_air", "radioactivity_concentration_of_234Pa_in_air", "radioactivity_concentration_of_234Th_in_air", "radioactivity_concentration_of_234U_in_air", "radioactivity_concentration_of_235Np_in_air", "radioactivity_concentration_of_235Pu_in_air", "radioactivity_concentration_of_235U_in_air", "radioactivity_concentration_of_236mNp_in_air", "radioactivity_concentration_of_236Np_in_air", "radioactivity_concentration_of_236Pu_in_air", "radioactivity_concentration_of_236U_in_air", "radioactivity_concentration_of_237Np_in_air", "radioactivity_concentration_of_237Pu_in_air", "radioactivity_concentration_of_237U_in_air", "radioactivity_concentration_of_238Np_in_air", "radioactivity_concentration_of_238Pu_in_air", "radioactivity_concentration_of_238U_in_air", "radioactivity_concentration_of_239Np_in_air", "radioactivity_concentration_of_239Pu_in_air", "radioactivity_concentration_of_239U_in_air", "radioactivity_concentration_of_240Am_in_air", "radioactivity_concentration_of_240mNp_in_air", "radioactivity_concentration_of_240Np_in_air", "radioactivity_concentration_of_240Pu_in_air", "radioactivity_concentration_of_240U_in_air", "radioactivity_concentration_of_241Am_in_air", "radioactivity_concentration_of_241Cm_in_air", "radioactivity_concentration_of_241Pu_in_air", "radioactivity_concentration_of_242Am_in_air", "radioactivity_concentration_of_242Cm_in_air", "radioactivity_concentration_of_242m1Am_in_air", "radioactivity_concentration_of_242m2Am_in_air", "radioactivity_concentration_of_242Pu_in_air", "radioactivity_concentration_of_243Am_in_air", "radioactivity_concentration_of_243Cm_in_air", "radioactivity_concentration_of_243Pu_in_air", "radioactivity_concentration_of_244Am_in_air", "radioactivity_concentration_of_244Cm_in_air", "radioactivity_concentration_of_244mAm_in_air", "radioactivity_concentration_of_244Pu_in_air", "radioactivity_concentration_of_245Am_in_air", "radioactivity_concentration_of_245Cm_in_air", "radioactivity_concentration_of_245Pu_in_air", "radioactivity_concentration_of_246Cm_in_air", "radioactivity_concentration_of_247Cm_in_air", "radioactivity_concentration_of_248Cm_in_air", "radioactivity_concentration_of_249Bk_in_air", "radioactivity_concentration_of_249Cf_in_air", "radioactivity_concentration_of_249Cm_in_air", "radioactivity_concentration_of_24Na_in_air", "radioactivity_concentration_of_250Bk_in_air", "radioactivity_concentration_of_250Cf_in_air", "radioactivity_concentration_of_250Cm_in_air", "radioactivity_concentration_of_251Cf_in_air", "radioactivity_concentration_of_252Cf_in_air", "radioactivity_concentration_of_253Cf_in_air", "radioactivity_concentration_of_253Es_in_air", "radioactivity_concentration_of_254Cf_in_air", "radioactivity_concentration_of_254Es_in_air", "radioactivity_concentration_of_254mEs_in_air", "radioactivity_concentration_of_255Es_in_air", "radioactivity_concentration_of_3H_in_air", "radioactivity_concentration_of_41Ar_in_air", "radioactivity_concentration_of_54Mn_in_air", "radioactivity_concentration_of_58Co_in_air", "radioactivity_concentration_of_60Co_in_air", "radioactivity_concentration_of_72Ga_in_air", "radioactivity_concentration_of_72Zn_in_air", "radioactivity_concentration_of_73Ga_in_air", "radioactivity_concentration_of_75Ge_in_air", "radioactivity_concentration_of_77As_in_air", "radioactivity_concentration_of_77Ge_in_air", "radioactivity_concentration_of_77mGe_in_air", "radioactivity_concentration_of_78As_in_air", "radioactivity_concentration_of_78Ge_in_air", "radioactivity_concentration_of_79Se_in_air", "radioactivity_concentration_of_81mSe_in_air", "radioactivity_concentration_of_81Se_in_air", "radioactivity_concentration_of_82Br_in_air", "radioactivity_concentration_of_82mBr_in_air", "radioactivity_concentration_of_83Br_in_air", "radioactivity_concentration_of_83mKr_in_air", "radioactivity_concentration_of_83mSe_in_air", "radioactivity_concentration_of_83Se_in_air", "radioactivity_concentration_of_84Br_in_air", "radioactivity_concentration_of_84mBr_in_air", "radioactivity_concentration_of_85Kr_in_air", "radioactivity_concentration_of_85mKr_in_air", "radioactivity_concentration_of_86mRb_in_air", "radioactivity_concentration_of_86Rb_in_air", "radioactivity_concentration_of_87Kr_in_air", "radioactivity_concentration_of_87Rb_in_air", "radioactivity_concentration_of_88Kr_in_air", "radioactivity_concentration_of_88Rb_in_air", "radioactivity_concentration_of_89Kr_in_air", "radioactivity_concentration_of_89Rb_in_air", "radioactivity_concentration_of_89Sr_in_air", "radioactivity_concentration_of_90mY_in_air", "radioactivity_concentration_of_90Sr_in_air", "radioactivity_concentration_of_90Y_in_air", "radioactivity_concentration_of_91mY_in_air", "radioactivity_concentration_of_91Sr_in_air", "radioactivity_concentration_of_91Y_in_air", "radioactivity_concentration_of_92Sr_in_air", "radioactivity_concentration_of_92Y_in_air", "radioactivity_concentration_of_93Y_in_air", "radioactivity_concentration_of_93Zr_in_air", "radioactivity_concentration_of_94mNb_in_air", "radioactivity_concentration_of_94Nb_in_air", "radioactivity_concentration_of_94Y_in_air", "radioactivity_concentration_of_95mNb_in_air", "radioactivity_concentration_of_95Nb_in_air", "radioactivity_concentration_of_95Y_in_air", "radioactivity_concentration_of_95Zr_in_air", "radioactivity_concentration_of_96Nb_in_air", "radioactivity_concentration_of_97mNb_in_air", "radioactivity_concentration_of_97Nb_in_air", "radioactivity_concentration_of_97Zr_in_air", "radioactivity_concentration_of_98Nb_in_air", "radioactivity_concentration_of_99Mo_in_air", "radioactivity_concentration_of_99mTc_in_air", "radioactivity_concentration_of_99Tc_in_air", "radius_of_tropical_cyclone_central_dense_overcast_region", "radius_of_tropical_cyclone_eye", "radius_of_tropical_cyclone_maximum_sustained_wind_speed", "rainfall_amount", "rainfall_flux", "rainfall_rate", "rate_of_change_test_quality_flag", "rate_of_hydroxyl_radical_destruction_due_to_reaction_with_nmvoc", "ratio_of_ice_volume_in_frozen_ground_to_pore_volume_in_unfrozen_ground", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "ratio_of_sea_water_practical_salinity_anomaly_to_relaxation_timescale", "ratio_of_x_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "ratio_of_y_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "realization", "reference_air_pressure_for_atmosphere_vertical_coordinate", "reference_epoch", "reference_pressure", "reference_sea_water_density_for_boussinesq_approximation", "region", "relative_humidity", "relative_humidity_for_aerosol_particle_size_selection", "relative_platform_azimuth_angle", "relative_sensor_azimuth_angle", "richardson_number_in_sea_water", "root_depth", "root_mass_content_of_carbon", "root_mass_content_of_nitrogen", "runoff_amount", "runoff_amount_excluding_baseflow", "runoff_flux", "salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "salt_flux_into_sea_water_from_rivers", "scattering_angle", "scene_type_of_dvorak_tropical_cyclone_cloud_region", "scene_type_of_dvorak_tropical_cyclone_eye_region", "sea_area", "sea_area_fraction", "sea_binary_mask", "sea_floor_depth_below_geoid", "sea_floor_depth_below_geopotential_datum", "sea_floor_depth_below_mean_sea_level", "sea_floor_depth_below_reference_ellipsoid", "sea_floor_depth_below_sea_surface", "sea_floor_sediment_grain_size", "sea_ice_albedo", "sea_ice_amount", "sea_ice_and_surface_snow_amount", "sea_ice_area", "sea_ice_area_fraction", "sea_ice_area_transport_across_line", "sea_ice_average_normal_horizontal_stress", "sea_ice_basal_drag_coefficient_for_momentum_in_sea_water", "sea_ice_basal_temperature", "sea_ice_classification", "sea_ice_draft", "sea_ice_extent", "sea_ice_floe_diameter", "sea_ice_freeboard", "sea_ice_mass", "sea_ice_mass_content_of_salt", "sea_ice_melt_pond_thickness", "sea_ice_salinity", "sea_ice_speed", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_ice_thickness", "sea_ice_transport_across_line", "sea_ice_volume", "sea_ice_x_displacement", "sea_ice_x_force_per_unit_area_due_to_coriolis_effect", "sea_ice_x_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_x_internal_stress", "sea_ice_x_transport", "sea_ice_x_velocity", "sea_ice_y_displacement", "sea_ice_y_force_per_unit_area_due_to_coriolis_effect", "sea_ice_y_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_y_internal_stress", "sea_ice_y_transport", "sea_ice_y_velocity", "sea_surface_density", "sea_surface_downward_eastward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_downward_northward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_foundation_temperature", "sea_surface_height_above_geoid", "sea_surface_height_above_geopotential_datum", "sea_surface_height_above_mean_sea_level", "sea_surface_height_above_reference_ellipsoid", "sea_surface_height_amplitude_due_to_earth_tide", "sea_surface_height_amplitude_due_to_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_geocentric_ocean_tide", "sea_surface_height_amplitude_due_to_non_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_pole_tide", "sea_surface_height_bias_due_to_sea_surface_roughness", "sea_surface_height_correction_due_to_air_pressure_and_wind_at_high_frequency", "sea_surface_height_correction_due_to_air_pressure_at_low_frequency", "sea_surface_mean_square_crosswave_slope", "sea_surface_mean_square_upwave_slope", "sea_surface_mean_square_upwave_slope_direction", "sea_surface_primary_swell_wave_directional_spread", "sea_surface_primary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_from_direction", "sea_surface_primary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_mean_period", "sea_surface_primary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_significant_height", "sea_surface_salinity", "sea_surface_secondary_swell_wave_directional_spread", "sea_surface_secondary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_from_direction", "sea_surface_secondary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_mean_period", "sea_surface_secondary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_significant_height", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_swell_wave_directional_spread", "sea_surface_swell_wave_from_direction", "sea_surface_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_swell_wave_mean_period", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_swell_wave_period", "sea_surface_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_swell_wave_significant_height", "sea_surface_swell_wave_to_direction", "sea_surface_temperature", "sea_surface_tertiary_swell_wave_directional_spread", "sea_surface_tertiary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_from_direction", "sea_surface_tertiary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_mean_period", "sea_surface_tertiary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_significant_height", "sea_surface_wave_directional_spread", "sea_surface_wave_directional_spread_at_variance_spectral_density_maximum", "sea_surface_wave_directional_variance_spectral_density", "sea_surface_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wave_from_direction", "sea_surface_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wave_maximum_crest_height", "sea_surface_wave_maximum_height", "sea_surface_wave_maximum_period", "sea_surface_wave_maximum_steepness", "sea_surface_wave_maximum_trough_depth", "sea_surface_wave_mean_height", "sea_surface_wave_mean_height_of_highest_tenth", "sea_surface_wave_mean_period", "sea_surface_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wave_mean_period_of_highest_tenth", "sea_surface_wave_mean_square_slope", "sea_surface_wave_mean_square_x_slope", "sea_surface_wave_mean_square_y_slope", "sea_surface_wave_mean_wavenumber_from_variance_spectral_density_first_wavenumber_moment", "sea_surface_wave_period_at_variance_spectral_density_maximum", "sea_surface_wave_period_of_highest_wave", "sea_surface_wave_significant_height", "sea_surface_wave_significant_period", "sea_surface_wave_stokes_drift_eastward_velocity", "sea_surface_wave_stokes_drift_northward_velocity", "sea_surface_wave_stokes_drift_speed", "sea_surface_wave_stokes_drift_to_direction", "sea_surface_wave_stokes_drift_x_velocity", "sea_surface_wave_stokes_drift_y_velocity", "sea_surface_wave_to_direction", "sea_surface_wave_variance_spectral_density", "sea_surface_wave_xx_radiation_stress", "sea_surface_wave_xy_radiation_stress", "sea_surface_wave_yy_radiation_stress", "sea_surface_wind_wave_directional_spread", "sea_surface_wind_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wind_wave_from_direction", "sea_surface_wind_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wind_wave_mean_period", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wind_wave_period", "sea_surface_wind_wave_period_at_variance_spectral_density_maximum", "sea_surface_wind_wave_significant_height", "sea_surface_wind_wave_to_direction", "sea_water_absolute_salinity", "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", "sea_water_age_since_surface_contact", "sea_water_alkalinity_expressed_as_mole_equivalent", "sea_water_alkalinity_natural_analogue_expressed_as_mole_equivalent", "sea_water_conservative_temperature", "sea_water_cox_salinity", "sea_water_density", "sea_water_electrical_conductivity", "sea_water_knudsen_salinity", "sea_water_mass", "sea_water_mass_per_unit_area", "sea_water_mass_per_unit_area_expressed_as_thickness", "sea_water_neutral_density", "sea_water_ph_abiotic_analogue_reported_on_total_scale", "sea_water_ph_natural_analogue_reported_on_total_scale", "sea_water_ph_reported_on_total_scale", "sea_water_potential_density", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_practical_salinity", "sea_water_practical_salinity_at_sea_floor", "sea_water_preformed_salinity", "sea_water_pressure", "sea_water_pressure_at_sea_floor", "sea_water_pressure_at_sea_water_surface", "sea_water_pressure_due_to_sea_water", "sea_water_redistributed_conservative_temperature", "sea_water_redistributed_potential_temperature", "sea_water_reference_salinity", "sea_water_salinity", "sea_water_salinity_at_sea_floor", "sea_water_sigma_t", "sea_water_sigma_t_difference", "sea_water_sigma_theta", "sea_water_sigma_theta_difference", "sea_water_specific_potential_enthalpy", "sea_water_speed", "sea_water_speed_at_sea_floor", "sea_water_speed_due_to_tides", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "sea_water_transport_across_line", "sea_water_turbidity", "sea_water_velocity_from_direction", "sea_water_velocity_to_direction", "sea_water_velocity_to_direction_at_sea_floor", "sea_water_velocity_to_direction_due_to_tides", "sea_water_volume", "sea_water_x_velocity", "sea_water_x_velocity_due_to_parameterized_mesoscale_eddies", "sea_water_y_velocity", "sea_water_y_velocity_due_to_parameterized_mesoscale_eddies", "secchi_depth_of_sea_water", "sensor_azimuth_angle", "sensor_band_central_radiation_frequency", "sensor_band_central_radiation_wavelength", "sensor_band_central_radiation_wavenumber", "sensor_band_identifier", "sensor_view_angle", "sensor_zenith_angle", "shallow_convection_time_fraction", "shallow_convective_cloud_base_altitude", "shallow_convective_cloud_top_altitude", "shallow_convective_precipitation_flux", "signal_intensity_from_multibeam_acoustic_doppler_velocity_sensor_in_sea_water", "single_scattering_albedo_in_air_due_to_ambient_aerosol_particles", "sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_iron_in_sea_water", "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_organic_nitrogen_in_sea_water", "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", "sinking_mole_flux_of_particulate_silicon_in_sea_water", "slow_soil_pool_mass_content_of_carbon", "snow_area_fraction_viewable_from_above", "snowfall_amount", "snowfall_flux", "snow_grain_size", "snow_transport_across_line_due_to_sea_ice_dynamics", "soil_albedo", "soil_frozen_water_content", "soil_hydraulic_conductivity_at_saturation", "soil_mass_content_of_13C", "soil_mass_content_of_14C", "soil_mass_content_of_carbon", "soil_mass_content_of_inorganic_ammonium_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrate_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", "soil_mass_content_of_nitrogen", "soil_moisture_content_at_field_capacity", "soil_pool", "soil_pool_carbon_decay_rate", "soil_porosity", "soil_suction_at_saturation", "soil_temperature", "soil_thermal_capacity", "soil_thermal_conductivity", "soil_type", "soil_water_ph", "solar_azimuth_angle", "solar_elevation_angle", "solar_irradiance", "solar_irradiance_per_unit_wavelength", "solar_zenith_angle", "solid_precipitation_flux", "solid_precipitation_flux_containing_17O", "solid_precipitation_flux_containing_18O", "solid_precipitation_flux_containing_single_2H", "soot_content_of_surface_snow", "sound_frequency", "sound_intensity_in_air", "sound_intensity_in_water", "sound_intensity_level_in_air", "sound_intensity_level_in_water", "sound_pressure_in_air", "sound_pressure_in_water", "sound_pressure_level_in_air", "sound_pressure_level_in_water", "source", "specific_dry_energy_of_air", "specific_gravitational_potential_energy", "specific_heat_capacity_of_frozen_ground", "specific_heat_capacity_of_sea_water", "specific_humidity", "specific_kinetic_energy_of_air", "specific_kinetic_energy_of_sea_water", "specific_turbulent_kinetic_energy_dissipation_in_sea_water", "specific_turbulent_kinetic_energy_of_sea_water", "speed_of_sound_in_air", "speed_of_sound_in_sea_water", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_below_threshold", "spike_test_quality_flag", "square_of_air_temperature", "square_of_brunt_vaisala_frequency_in_air", "square_of_brunt_vaisala_frequency_in_sea_water", "square_of_eastward_wind", "square_of_geopotential_height", "square_of_lagrangian_tendency_of_air_pressure", "square_of_northward_wind", "square_of_ocean_mixed_layer_thickness_defined_by_sigma_t", "square_of_sea_surface_height_above_geoid", "square_of_sea_surface_salinity", "square_of_sea_surface_temperature", "square_of_upward_air_velocity", "square_of_upward_ocean_mass_transport", "status_flag", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "steric_change_in_mean_sea_level", "steric_change_in_sea_surface_height", "storm_motion_speed", "stratiform_cloud_area_fraction", "stratiform_cloud_area_fraction_in_atmosphere_layer", "stratiform_cloud_longwave_emissivity", "stratiform_graupel_fall_amount", "stratiform_graupel_flux", "stratiform_precipitation_amount", "stratiform_precipitation_flux", "stratiform_rainfall_amount", "stratiform_rainfall_flux", "stratiform_rainfall_rate", "stratiform_snowfall_amount", "stratiform_snowfall_flux", "stratosphere_mole_content_of_nitrogen_dioxide", "stratosphere_optical_thickness_due_to_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_volcanic_ambient_aerosol_particles", "subsurface_litter_mass_content_of_carbon", "subsurface_litter_mass_content_of_nitrogen", "subsurface_runoff_amount", "subsurface_runoff_flux", "sunglint_angle", "sunlit_binary_mask", "surface_air_pressure", "surface_albedo", "surface_albedo_assuming_deep_snow", "surface_albedo_assuming_no_snow", "surface_altitude", "surface_backwards_scattering_coefficient_of_radar_wave", "surface_bidirectional_reflectance", "surface_brightness_temperature", "surface_carbon_dioxide_abiotic_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_natural_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_partial_pressure_difference_between_air_and_sea_water", "surface_carbon_dioxide_partial_pressure_difference_between_sea_water_and_air", "surface_diffuse_downwelling_photosynthetic_radiative_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_diffuse_shortwave_hemispherical_reflectance", "surface_direct_along_beam_shortwave_flux_in_air", "surface_direct_downwelling_shortwave_flux_in_air", "surface_direct_shortwave_hemispherical_reflectance", "surface_downward_eastward_stress", "surface_downward_eastward_stress_due_to_boundary_layer_mixing", "surface_downward_eastward_stress_due_to_ocean_viscous_dissipation", "surface_downward_eastward_stress_due_to_sea_surface_waves", "surface_downward_heat_flux_in_air", "surface_downward_heat_flux_in_sea_ice", "surface_downward_heat_flux_in_sea_water", "surface_downward_heat_flux_in_snow", "surface_downward_latent_heat_flux", "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_ammonia", "surface_downward_mass_flux_of_carbon_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_natural_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_methane_due_to_wetland_biological_consumption", "surface_downward_mass_flux_of_water_due_to_irrigation", "surface_downward_mole_flux_of_carbon_dioxide", "surface_downward_mole_flux_of_cfc11", "surface_downward_mole_flux_of_cfc12", "surface_downward_mole_flux_of_molecular_oxygen", "surface_downward_mole_flux_of_sulfur_hexafluoride", "surface_downward_northward_stress", "surface_downward_northward_stress_due_to_boundary_layer_mixing", "surface_downward_northward_stress_due_to_ocean_viscous_dissipation", "surface_downward_northward_stress_due_to_sea_surface_waves", "surface_downward_sensible_heat_flux", "surface_downward_water_flux", "surface_downward_x_stress", "surface_downward_x_stress_correction", "surface_downward_y_stress", "surface_downward_y_stress_correction", "surface_downwelling_longwave_flux_in_air", "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", "surface_downwelling_longwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_photon_flux_in_sea_water", "surface_downwelling_photon_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_radiance_in_sea_water", "surface_downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photosynthetic_photon_flux_in_air", "surface_downwelling_photosynthetic_photon_flux_in_sea_water", "surface_downwelling_photosynthetic_photon_radiance_in_sea_water", "surface_downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photosynthetic_radiance_in_sea_water", "surface_downwelling_photosynthetic_radiative_flux_in_air", "surface_downwelling_photosynthetic_radiative_flux_in_sea_water", "surface_downwelling_photosynthetic_spherical_irradiance_in_sea_water", "surface_downwelling_radiance_in_sea_water", "surface_downwelling_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_radiative_flux_in_sea_water", "surface_downwelling_radiative_flux_per_unit_wavelength_in_air", "surface_downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_shortwave_flux_in_air", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_downwelling_shortwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_spherical_irradiance_in_sea_water", "surface_downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_drag_coefficient_for_heat_in_air", "surface_drag_coefficient_for_momentum_in_air", "surface_drag_coefficient_in_air", "surface_eastward_sea_water_velocity", "surface_frozen_carbon_dioxide_amount", "surface_geopotential", "surface_geostrophic_eastward_sea_water_velocity", "surface_geostrophic_eastward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_northward_sea_water_velocity", "surface_geostrophic_northward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_x_velocity", "surface_geostrophic_sea_water_x_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_y_velocity", "surface_geostrophic_sea_water_y_velocity_assuming_mean_sea_level_for_geoid", "surface_height_above_geopotential_datum", "surface_litter_mass_content_of_carbon", "surface_litter_mass_content_of_nitrogen", "surface_longwave_emissivity", "surface_microwave_emissivity", "surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_longwave_flux", "surface_net_downward_longwave_flux_assuming_clear_sky", "surface_net_downward_mass_flux_of_ammonia_due_to_bidirectional_surface_exchange", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change", "surface_net_downward_radiative_flux", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_shortwave_flux", "surface_net_downward_shortwave_flux_assuming_clear_sky", "surface_net_upward_longwave_flux", "surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change", "surface_net_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_processes", "surface_net_upward_radiative_flux", "surface_net_upward_shortwave_flux", "surface_northward_sea_water_velocity", "surface_partial_pressure_of_carbon_dioxide_abiotic_analogue_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_in_air", "surface_partial_pressure_of_carbon_dioxide_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_natural_analogue_in_sea_water", "surface_radioactivity_content", "surface_radioactivity_content_of_101Mo", "surface_radioactivity_content_of_101Tc", "surface_radioactivity_content_of_102Mo", "surface_radioactivity_content_of_102mTc", "surface_radioactivity_content_of_102Tc", "surface_radioactivity_content_of_103mRh", "surface_radioactivity_content_of_103Ru", "surface_radioactivity_content_of_104Tc", "surface_radioactivity_content_of_105mRh", "surface_radioactivity_content_of_105Rh", "surface_radioactivity_content_of_105Ru", "surface_radioactivity_content_of_106mRh", "surface_radioactivity_content_of_106Rh", "surface_radioactivity_content_of_106Ru", "surface_radioactivity_content_of_107mPd", "surface_radioactivity_content_of_107Pd", "surface_radioactivity_content_of_107Rh", "surface_radioactivity_content_of_109mAg", "surface_radioactivity_content_of_109Pd", "surface_radioactivity_content_of_110mAg", "surface_radioactivity_content_of_111Ag", "surface_radioactivity_content_of_111mAg", "surface_radioactivity_content_of_111mCd", "surface_radioactivity_content_of_111mPd", "surface_radioactivity_content_of_111Pd", "surface_radioactivity_content_of_112Ag", "surface_radioactivity_content_of_112Pd", "surface_radioactivity_content_of_113Ag", "surface_radioactivity_content_of_113Cd", "surface_radioactivity_content_of_113mAg", "surface_radioactivity_content_of_113mCd", "surface_radioactivity_content_of_113mIn", "surface_radioactivity_content_of_115Ag", "surface_radioactivity_content_of_115Cd", "surface_radioactivity_content_of_115In", "surface_radioactivity_content_of_115mAg", "surface_radioactivity_content_of_115mCd", "surface_radioactivity_content_of_115mIn", "surface_radioactivity_content_of_116In", "surface_radioactivity_content_of_116mIn", "surface_radioactivity_content_of_117Cd", "surface_radioactivity_content_of_117In", "surface_radioactivity_content_of_117mCd", "surface_radioactivity_content_of_117mIn", "surface_radioactivity_content_of_117mSn", "surface_radioactivity_content_of_118Cd", "surface_radioactivity_content_of_118In", "surface_radioactivity_content_of_118mIn", "surface_radioactivity_content_of_119In", "surface_radioactivity_content_of_119mIn", "surface_radioactivity_content_of_119mSn", "surface_radioactivity_content_of_11C", "surface_radioactivity_content_of_121mSn", "surface_radioactivity_content_of_121Sn", "surface_radioactivity_content_of_123mSn", "surface_radioactivity_content_of_123Sn", "surface_radioactivity_content_of_124mSb", "surface_radioactivity_content_of_124Sb", "surface_radioactivity_content_of_125mTe", "surface_radioactivity_content_of_125Sb", "surface_radioactivity_content_of_125Sn", "surface_radioactivity_content_of_126mSb", "surface_radioactivity_content_of_126Sb", "surface_radioactivity_content_of_126Sn", "surface_radioactivity_content_of_127mTe", "surface_radioactivity_content_of_127Sb", "surface_radioactivity_content_of_127Sn", "surface_radioactivity_content_of_127Te", "surface_radioactivity_content_of_128mSb", "surface_radioactivity_content_of_128Sb", "surface_radioactivity_content_of_128Sn", "surface_radioactivity_content_of_129I", "surface_radioactivity_content_of_129mTe", "surface_radioactivity_content_of_129mXe", "surface_radioactivity_content_of_129Sb", "surface_radioactivity_content_of_129Te", "surface_radioactivity_content_of_130I", "surface_radioactivity_content_of_130mI", "surface_radioactivity_content_of_130mSb", "surface_radioactivity_content_of_130Sb", "surface_radioactivity_content_of_130Sn", "surface_radioactivity_content_of_131I", "surface_radioactivity_content_of_131mTe", "surface_radioactivity_content_of_131mXe", "surface_radioactivity_content_of_131Sb", "surface_radioactivity_content_of_131Te", "surface_radioactivity_content_of_132I", "surface_radioactivity_content_of_132Te", "surface_radioactivity_content_of_133I", "surface_radioactivity_content_of_133mI", "surface_radioactivity_content_of_133mTe", "surface_radioactivity_content_of_133mXe", "surface_radioactivity_content_of_133Te", "surface_radioactivity_content_of_133Xe", "surface_radioactivity_content_of_134Cs", "surface_radioactivity_content_of_134I", "surface_radioactivity_content_of_134mCs", "surface_radioactivity_content_of_134mI", "surface_radioactivity_content_of_134mXe", "surface_radioactivity_content_of_134Te", "surface_radioactivity_content_of_135Cs", "surface_radioactivity_content_of_135I", "surface_radioactivity_content_of_135mBa", "surface_radioactivity_content_of_135mCs", "surface_radioactivity_content_of_135mXe", "surface_radioactivity_content_of_135Xe", "surface_radioactivity_content_of_136Cs", "surface_radioactivity_content_of_137Cs", "surface_radioactivity_content_of_137mBa", "surface_radioactivity_content_of_137Xe", "surface_radioactivity_content_of_138Cs", "surface_radioactivity_content_of_138Xe", "surface_radioactivity_content_of_139Ba", "surface_radioactivity_content_of_13N", "surface_radioactivity_content_of_140Ba", "surface_radioactivity_content_of_140La", "surface_radioactivity_content_of_141Ce", "surface_radioactivity_content_of_141La", "surface_radioactivity_content_of_142Ce", "surface_radioactivity_content_of_142La", "surface_radioactivity_content_of_142mPr", "surface_radioactivity_content_of_142Pr", "surface_radioactivity_content_of_143Ce", "surface_radioactivity_content_of_143La", "surface_radioactivity_content_of_143Pr", "surface_radioactivity_content_of_144Ce", "surface_radioactivity_content_of_144mPr", "surface_radioactivity_content_of_144Nd", "surface_radioactivity_content_of_144Pr", "surface_radioactivity_content_of_145Pr", "surface_radioactivity_content_of_146Ce", "surface_radioactivity_content_of_146Pr", "surface_radioactivity_content_of_147Nd", "surface_radioactivity_content_of_147Pm", "surface_radioactivity_content_of_147Pr", "surface_radioactivity_content_of_147Sm", "surface_radioactivity_content_of_148mPm", "surface_radioactivity_content_of_148Pm", "surface_radioactivity_content_of_148Sm", "surface_radioactivity_content_of_149Nd", "surface_radioactivity_content_of_149Pm", "surface_radioactivity_content_of_149Sm", "surface_radioactivity_content_of_150Pm", "surface_radioactivity_content_of_151Nd", "surface_radioactivity_content_of_151Pm", "surface_radioactivity_content_of_151Sm", "surface_radioactivity_content_of_152mPm", "surface_radioactivity_content_of_152Nd", "surface_radioactivity_content_of_152Pm", "surface_radioactivity_content_of_153Sm", "surface_radioactivity_content_of_154Eu", "surface_radioactivity_content_of_155Eu", "surface_radioactivity_content_of_155Sm", "surface_radioactivity_content_of_156Eu", "surface_radioactivity_content_of_156Sm", "surface_radioactivity_content_of_157Eu", "surface_radioactivity_content_of_158Eu", "surface_radioactivity_content_of_159Eu", "surface_radioactivity_content_of_159Gd", "surface_radioactivity_content_of_15O", "surface_radioactivity_content_of_160Tb", "surface_radioactivity_content_of_161Tb", "surface_radioactivity_content_of_162Gd", "surface_radioactivity_content_of_162mTb", "surface_radioactivity_content_of_162Tb", "surface_radioactivity_content_of_163Tb", "surface_radioactivity_content_of_165Dy", "surface_radioactivity_content_of_18F", "surface_radioactivity_content_of_206Hg", "surface_radioactivity_content_of_206Tl", "surface_radioactivity_content_of_207mPb", "surface_radioactivity_content_of_207Tl", "surface_radioactivity_content_of_208Tl", "surface_radioactivity_content_of_209Bi", "surface_radioactivity_content_of_209Pb", "surface_radioactivity_content_of_209Tl", "surface_radioactivity_content_of_210Bi", "surface_radioactivity_content_of_210Pb", "surface_radioactivity_content_of_210Po", "surface_radioactivity_content_of_210Tl", "surface_radioactivity_content_of_211Bi", "surface_radioactivity_content_of_211Pb", "surface_radioactivity_content_of_211Po", "surface_radioactivity_content_of_212Bi", "surface_radioactivity_content_of_212Pb", "surface_radioactivity_content_of_212Po", "surface_radioactivity_content_of_213Bi", "surface_radioactivity_content_of_213Pb", "surface_radioactivity_content_of_213Po", "surface_radioactivity_content_of_214Bi", "surface_radioactivity_content_of_214Pb", "surface_radioactivity_content_of_214Po", "surface_radioactivity_content_of_215At", "surface_radioactivity_content_of_215Bi", "surface_radioactivity_content_of_215Po", "surface_radioactivity_content_of_216At", "surface_radioactivity_content_of_216Po", "surface_radioactivity_content_of_217At", "surface_radioactivity_content_of_217Po", "surface_radioactivity_content_of_218At", "surface_radioactivity_content_of_218Po", "surface_radioactivity_content_of_218Rn", "surface_radioactivity_content_of_219At", "surface_radioactivity_content_of_219Rn", "surface_radioactivity_content_of_220Rn", "surface_radioactivity_content_of_221Fr", "surface_radioactivity_content_of_221Rn", "surface_radioactivity_content_of_222Fr", "surface_radioactivity_content_of_222Ra", "surface_radioactivity_content_of_222Rn", "surface_radioactivity_content_of_223Fr", "surface_radioactivity_content_of_223Ra", "surface_radioactivity_content_of_223Rn", "surface_radioactivity_content_of_224Ra", "surface_radioactivity_content_of_225Ac", "surface_radioactivity_content_of_225Ra", "surface_radioactivity_content_of_226Ac", "surface_radioactivity_content_of_226Ra", "surface_radioactivity_content_of_226Th", "surface_radioactivity_content_of_227Ac", "surface_radioactivity_content_of_227Ra", "surface_radioactivity_content_of_227Th", "surface_radioactivity_content_of_228Ac", "surface_radioactivity_content_of_228Ra", "surface_radioactivity_content_of_228Th", "surface_radioactivity_content_of_229Ac", "surface_radioactivity_content_of_229Ra", "surface_radioactivity_content_of_229Th", "surface_radioactivity_content_of_230Pa", "surface_radioactivity_content_of_230Th", "surface_radioactivity_content_of_230U", "surface_radioactivity_content_of_231Pa", "surface_radioactivity_content_of_231Th", "surface_radioactivity_content_of_231U", "surface_radioactivity_content_of_232Pa", "surface_radioactivity_content_of_232Th", "surface_radioactivity_content_of_232U", "surface_radioactivity_content_of_233Pa", "surface_radioactivity_content_of_233Th", "surface_radioactivity_content_of_233U", "surface_radioactivity_content_of_234mPa", "surface_radioactivity_content_of_234Pa", "surface_radioactivity_content_of_234Th", "surface_radioactivity_content_of_234U", "surface_radioactivity_content_of_235Np", "surface_radioactivity_content_of_235Pu", "surface_radioactivity_content_of_235U", "surface_radioactivity_content_of_236mNp", "surface_radioactivity_content_of_236Np", "surface_radioactivity_content_of_236Pu", "surface_radioactivity_content_of_236U", "surface_radioactivity_content_of_237Np", "surface_radioactivity_content_of_237Pu", "surface_radioactivity_content_of_237U", "surface_radioactivity_content_of_238Np", "surface_radioactivity_content_of_238Pu", "surface_radioactivity_content_of_238U", "surface_radioactivity_content_of_239Np", "surface_radioactivity_content_of_239Pu", "surface_radioactivity_content_of_239U", "surface_radioactivity_content_of_240Am", "surface_radioactivity_content_of_240mNp", "surface_radioactivity_content_of_240Np", "surface_radioactivity_content_of_240Pu", "surface_radioactivity_content_of_240U", "surface_radioactivity_content_of_241Am", "surface_radioactivity_content_of_241Cm", "surface_radioactivity_content_of_241Pu", "surface_radioactivity_content_of_242Am", "surface_radioactivity_content_of_242Cm", "surface_radioactivity_content_of_242m1Am", "surface_radioactivity_content_of_242m2Am", "surface_radioactivity_content_of_242Pu", "surface_radioactivity_content_of_243Am", "surface_radioactivity_content_of_243Cm", "surface_radioactivity_content_of_243Pu", "surface_radioactivity_content_of_244Am", "surface_radioactivity_content_of_244Cm", "surface_radioactivity_content_of_244mAm", "surface_radioactivity_content_of_244Pu", "surface_radioactivity_content_of_245Am", "surface_radioactivity_content_of_245Cm", "surface_radioactivity_content_of_245Pu", "surface_radioactivity_content_of_246Cm", "surface_radioactivity_content_of_247Cm", "surface_radioactivity_content_of_248Cm", "surface_radioactivity_content_of_249Bk", "surface_radioactivity_content_of_249Cf", "surface_radioactivity_content_of_249Cm", "surface_radioactivity_content_of_24Na", "surface_radioactivity_content_of_250Bk", "surface_radioactivity_content_of_250Cf", "surface_radioactivity_content_of_250Cm", "surface_radioactivity_content_of_251Cf", "surface_radioactivity_content_of_252Cf", "surface_radioactivity_content_of_253Cf", "surface_radioactivity_content_of_253Es", "surface_radioactivity_content_of_254Cf", "surface_radioactivity_content_of_254Es", "surface_radioactivity_content_of_254mEs", "surface_radioactivity_content_of_255Es", "surface_radioactivity_content_of_3H", "surface_radioactivity_content_of_41Ar", "surface_radioactivity_content_of_54Mn", "surface_radioactivity_content_of_58Co", "surface_radioactivity_content_of_60Co", "surface_radioactivity_content_of_72Ga", "surface_radioactivity_content_of_72Zn", "surface_radioactivity_content_of_73Ga", "surface_radioactivity_content_of_75Ge", "surface_radioactivity_content_of_77As", "surface_radioactivity_content_of_77Ge", "surface_radioactivity_content_of_77mGe", "surface_radioactivity_content_of_78As", "surface_radioactivity_content_of_78Ge", "surface_radioactivity_content_of_79Se", "surface_radioactivity_content_of_81mSe", "surface_radioactivity_content_of_81Se", "surface_radioactivity_content_of_82Br", "surface_radioactivity_content_of_82mBr", "surface_radioactivity_content_of_83Br", "surface_radioactivity_content_of_83mKr", "surface_radioactivity_content_of_83mSe", "surface_radioactivity_content_of_83Se", "surface_radioactivity_content_of_84Br", "surface_radioactivity_content_of_84mBr", "surface_radioactivity_content_of_85Kr", "surface_radioactivity_content_of_85mKr", "surface_radioactivity_content_of_86mRb", "surface_radioactivity_content_of_86Rb", "surface_radioactivity_content_of_87Kr", "surface_radioactivity_content_of_87Rb", "surface_radioactivity_content_of_88Kr", "surface_radioactivity_content_of_88Rb", "surface_radioactivity_content_of_89Kr", "surface_radioactivity_content_of_89Rb", "surface_radioactivity_content_of_89Sr", "surface_radioactivity_content_of_90mY", "surface_radioactivity_content_of_90Sr", "surface_radioactivity_content_of_90Y", "surface_radioactivity_content_of_91mY", "surface_radioactivity_content_of_91Sr", "surface_radioactivity_content_of_91Y", "surface_radioactivity_content_of_92Sr", "surface_radioactivity_content_of_92Y", "surface_radioactivity_content_of_93Y", "surface_radioactivity_content_of_93Zr", "surface_radioactivity_content_of_94mNb", "surface_radioactivity_content_of_94Nb", "surface_radioactivity_content_of_94Y", "surface_radioactivity_content_of_95mNb", "surface_radioactivity_content_of_95Nb", "surface_radioactivity_content_of_95Y", "surface_radioactivity_content_of_95Zr", "surface_radioactivity_content_of_96Nb", "surface_radioactivity_content_of_97mNb", "surface_radioactivity_content_of_97Nb", "surface_radioactivity_content_of_97Zr", "surface_radioactivity_content_of_98Nb", "surface_radioactivity_content_of_99Mo", "surface_radioactivity_content_of_99mTc", "surface_radioactivity_content_of_99Tc", "surface_ratio_of_upwelling_radiance_emerging_from_sea_water_to_downwelling_radiative_flux_in_air", "surface_roughness_length", "surface_roughness_length_for_heat_in_air", "surface_roughness_length_for_humidity_in_air", "surface_roughness_length_for_momentum_in_air", "surface_runoff_amount", "surface_runoff_flux", "surface_snow_amount", "surface_snow_and_ice_melt_flux", "surface_snow_and_ice_melt_heat_flux", "surface_snow_and_ice_refreezing_flux", "surface_snow_area_fraction", "surface_snow_binary_mask", "surface_snow_density", "surface_snow_melt_amount", "surface_snow_melt_and_sublimation_heat_flux", "surface_snow_melt_flux", "surface_snow_melt_heat_flux", "surface_snow_sublimation_amount", "surface_snow_sublimation_heat_flux", "surface_snow_thickness", "surface_specific_humidity", "surface_temperature", "surface_temperature_anomaly", "surface_upward_eastward_stress_due_to_sea_surface_waves", "surface_upward_heat_flux_due_to_anthropogenic_energy_consumption", "surface_upward_heat_flux_in_air", "surface_upward_latent_heat_flux", "surface_upward_latent_heat_flux_due_to_sublimation", "surface_upward_mass_flux_of_ammonia", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change_excluding_forestry_and_agricultural_products", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_grazing", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_litter_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_vegetation_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_growth", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_maintenance", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_leaves", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_miscellaneous_living_matter", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_roots", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_respiration_in_soil", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_litter", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_soil", "surface_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_production", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_all_land_processes_excluding_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_emission_from_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mole_flux_of_carbon_dioxide", "surface_upward_mole_flux_of_dimethyl_sulfide", "surface_upward_northward_stress_due_to_sea_surface_waves", "surface_upward_sensible_heat_flux", "surface_upward_water_flux", "surface_upward_water_vapor_flux_in_air", "surface_upwelling_longwave_flux_in_air", "surface_upwelling_longwave_flux_in_air_assuming_clear_sky", "surface_upwelling_photosynthetic_photon_flux_in_air", "surface_upwelling_radiance_in_air", "surface_upwelling_radiance_in_air_emerging_from_sea_water", "surface_upwelling_radiance_in_air_reflected_by_sea_water", "surface_upwelling_radiance_in_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air", "surface_upwelling_radiance_per_unit_wavelength_in_air_emerging_from_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air_reflected_by_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_sea_water", "surface_upwelling_radiative_flux_per_unit_wavelength_in_air", "surface_upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_upwelling_shortwave_flux_in_air", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_water_amount", "surface_water_evaporation_flux", "syntax_test_quality_flag", "temperature_at_base_of_ice_sheet_model", "temperature_at_top_of_ice_sheet_model", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically_from_the_surface", "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "tendency_of_air_density", "tendency_of_air_pressure", "tendency_of_air_temperature", "tendency_of_air_temperature_due_to_advection", "tendency_of_air_temperature_due_to_boundary_layer_mixing", "tendency_of_air_temperature_due_to_convection", "tendency_of_air_temperature_due_to_diabatic_processes", "tendency_of_air_temperature_due_to_diffusion", "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", "tendency_of_air_temperature_due_to_dry_convection", "tendency_of_air_temperature_due_to_longwave_heating", "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_model_physics", "tendency_of_air_temperature_due_to_moist_convection", "tendency_of_air_temperature_due_to_radiative_heating", "tendency_of_air_temperature_due_to_shortwave_heating", "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_air_temperature_due_to_stratiform_precipitation", "tendency_of_air_temperature_due_to_turbulence", "tendency_of_atmosphere_dry_energy_content", "tendency_of_atmosphere_enthalpy_content_due_to_advection", "tendency_of_atmosphere_kinetic_energy_content_due_to_advection", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetone_due_to_emission", "tendency_of_atmosphere_mass_content_of_aceto_nitrile_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alkanes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alkenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alpha_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_aromatic_compounds_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_beta_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_forestry_and_agricultural_products", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_tetrachloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113a_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc114_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc115_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc11_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc12_due_to_emission", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_halon1202_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1211_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1301_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon2402_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcc140a_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc141b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc142b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc22_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_emission", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_limonene_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_methanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_bromide_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_chloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_monoterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_land_use_or_land_cover_change", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_soil", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition_into_stomata", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_peroxyacetyl_nitrate_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_peroxynitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_radon_due_to_emission", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sesquiterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_aqueous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_gaseous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_trimethylbenzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_water_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_deep_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_shallow_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_turbulence", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_per_unit_area", "tendency_of_atmosphere_mass_per_unit_area_due_to_advection", "tendency_of_atmosphere_mole_concentration_of_carbon_monoxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_nitrous_oxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_production", "tendency_of_atmosphere_moles_of_acetic_acid", "tendency_of_atmosphere_moles_of_aceto_nitrile", "tendency_of_atmosphere_moles_of_alpha_hexachlorocyclohexane", "tendency_of_atmosphere_moles_of_alpha_pinene", "tendency_of_atmosphere_moles_of_ammonia", "tendency_of_atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_atomic_bromine", "tendency_of_atmosphere_moles_of_atomic_chlorine", "tendency_of_atmosphere_moles_of_atomic_nitrogen", "tendency_of_atmosphere_moles_of_benzene", "tendency_of_atmosphere_moles_of_beta_pinene", "tendency_of_atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_bromine_chloride", "tendency_of_atmosphere_moles_of_bromine_monoxide", "tendency_of_atmosphere_moles_of_bromine_nitrate", "tendency_of_atmosphere_moles_of_brox_expressed_as_bromine", "tendency_of_atmosphere_moles_of_butane", "tendency_of_atmosphere_moles_of_carbon_dioxide", "tendency_of_atmosphere_moles_of_carbon_monoxide", "tendency_of_atmosphere_moles_of_carbon_tetrachloride", "tendency_of_atmosphere_moles_of_cfc11", "tendency_of_atmosphere_moles_of_cfc113", "tendency_of_atmosphere_moles_of_cfc113a", "tendency_of_atmosphere_moles_of_cfc114", "tendency_of_atmosphere_moles_of_cfc115", "tendency_of_atmosphere_moles_of_cfc12", "tendency_of_atmosphere_moles_of_chlorine_dioxide", "tendency_of_atmosphere_moles_of_chlorine_monoxide", "tendency_of_atmosphere_moles_of_chlorine_nitrate", "tendency_of_atmosphere_moles_of_clox_expressed_as_chlorine", "tendency_of_atmosphere_moles_of_dichlorine_peroxide", "tendency_of_atmosphere_moles_of_dimethyl_sulfide", "tendency_of_atmosphere_moles_of_dinitrogen_pentoxide", "tendency_of_atmosphere_moles_of_ethane", "tendency_of_atmosphere_moles_of_ethanol", "tendency_of_atmosphere_moles_of_ethene", "tendency_of_atmosphere_moles_of_ethyne", "tendency_of_atmosphere_moles_of_formaldehyde", "tendency_of_atmosphere_moles_of_formic_acid", "tendency_of_atmosphere_moles_of_gaseous_divalent_mercury", "tendency_of_atmosphere_moles_of_gaseous_elemental_mercury", "tendency_of_atmosphere_moles_of_halon1202", "tendency_of_atmosphere_moles_of_halon1211", "tendency_of_atmosphere_moles_of_halon1301", "tendency_of_atmosphere_moles_of_halon2402", "tendency_of_atmosphere_moles_of_hcc140a", "tendency_of_atmosphere_moles_of_hcfc141b", "tendency_of_atmosphere_moles_of_hcfc142b", "tendency_of_atmosphere_moles_of_hcfc22", "tendency_of_atmosphere_moles_of_hexachlorobiphenyl", "tendency_of_atmosphere_moles_of_hox_expressed_as_hydrogen", "tendency_of_atmosphere_moles_of_hydrogen_bromide", "tendency_of_atmosphere_moles_of_hydrogen_chloride", "tendency_of_atmosphere_moles_of_hydrogen_cyanide", "tendency_of_atmosphere_moles_of_hydrogen_peroxide", "tendency_of_atmosphere_moles_of_hydroperoxyl_radical", "tendency_of_atmosphere_moles_of_hydroxyl_radical", "tendency_of_atmosphere_moles_of_hypobromous_acid", "tendency_of_atmosphere_moles_of_hypochlorous_acid", "tendency_of_atmosphere_moles_of_inorganic_bromine", "tendency_of_atmosphere_moles_of_inorganic_chlorine", "tendency_of_atmosphere_moles_of_isoprene", "tendency_of_atmosphere_moles_of_limonene", "tendency_of_atmosphere_moles_of_methane", "tendency_of_atmosphere_moles_of_methanol", "tendency_of_atmosphere_moles_of_methyl_bromide", "tendency_of_atmosphere_moles_of_methyl_chloride", "tendency_of_atmosphere_moles_of_methyl_hydroperoxide", "tendency_of_atmosphere_moles_of_methyl_peroxy_radical", "tendency_of_atmosphere_moles_of_molecular_hydrogen", "tendency_of_atmosphere_moles_of_nitrate_radical", "tendency_of_atmosphere_moles_of_nitric_acid", "tendency_of_atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "tendency_of_atmosphere_moles_of_nitrogen_dioxide", "tendency_of_atmosphere_moles_of_nitrogen_monoxide", "tendency_of_atmosphere_moles_of_nitrous_acid", "tendency_of_atmosphere_moles_of_nitrous_oxide", "tendency_of_atmosphere_moles_of_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_nox_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_noy_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_ozone", "tendency_of_atmosphere_moles_of_peroxyacetyl_nitrate", "tendency_of_atmosphere_moles_of_peroxynitric_acid", "tendency_of_atmosphere_moles_of_propane", "tendency_of_atmosphere_moles_of_propene", "tendency_of_atmosphere_moles_of_radon", "tendency_of_atmosphere_moles_of_sulfate_dry_aerosol_particles", "tendency_of_atmosphere_moles_of_sulfur_dioxide", "tendency_of_atmosphere_moles_of_toluene", "tendency_of_atmosphere_moles_of_water_vapor", "tendency_of_atmosphere_moles_of_xylene", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_potential_energy_content_due_to_advection", "tendency_of_bedrock_altitude", "tendency_of_canopy_water_amount_due_to_evaporation_of_intercepted_precipitation", "tendency_of_change_in_land_ice_amount", "tendency_of_dry_energy_content_of_atmosphere_layer", "tendency_of_dry_static_energy_content_of_atmosphere_layer", "tendency_of_eastward_wind", "tendency_of_eastward_wind_due_to_advection", "tendency_of_eastward_wind_due_to_advection_by_northward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_advection_by_upward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_convection", "tendency_of_eastward_wind_due_to_diffusion", "tendency_of_eastward_wind_due_to_eliassen_palm_flux_divergence", "tendency_of_eastward_wind_due_to_gravity_wave_drag", "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_eastward_wind_due_to_numerical_artefacts", "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_enthalpy_content_of_atmosphere_layer_due_to_advection", "tendency_of_global_average_sea_level_change", "tendency_of_kinetic_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_land_ice_mass", "tendency_of_land_ice_mass_due_to_basal_mass_balance", "tendency_of_land_ice_mass_due_to_calving", "tendency_of_land_ice_mass_due_to_surface_mass_balance", "tendency_of_land_ice_thickness", "tendency_of_mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_dioxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nox_expressed_as_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_deep_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_shallow_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_turbulence", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_convective_cloud_ice_in_air", "tendency_of_mass_fraction_of_convective_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_aggregation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_bergeron_findeisen_process_from_cloud_liquid", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_deposition_and_sublimation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_evaporation_of_melting_ice", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_water_vapor", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_autoconversion", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_bergeron_findeisen_process_to_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_convection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_longwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_pressure_change", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_shortwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_turbulence", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_heterogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_melting_from_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_riming", "tendency_of_middle_atmosphere_moles_of_carbon_monoxide", "tendency_of_middle_atmosphere_moles_of_hcc140a", "tendency_of_middle_atmosphere_moles_of_methane", "tendency_of_middle_atmosphere_moles_of_methyl_bromide", "tendency_of_middle_atmosphere_moles_of_methyl_chloride", "tendency_of_middle_atmosphere_moles_of_molecular_hydrogen", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_dissolved_inorganic_carbon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_iron_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_silicon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_dissolution_from_inorganic_particles", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_scavenging_by_inorganic_particles", "tendency_of_mole_concentration_of_iron_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_and_photolytic_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_destruction", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_calcareous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diatoms", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diazotrophic_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_miscellaneous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_picophytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_nitrate_utilization", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_remineralization", "tendency_of_mole_concentration_of_silicon_in_sea_water_due_to_biological_production", "tendency_of_northward_wind", "tendency_of_northward_wind_due_to_advection", "tendency_of_northward_wind_due_to_convection", "tendency_of_northward_wind_due_to_diffusion", "tendency_of_northward_wind_due_to_gravity_wave_drag", "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_northward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_ocean_barotropic_streamfunction", "tendency_of_ocean_eddy_kinetic_energy_content_due_to_parameterized_eddy_advection", "tendency_of_ocean_mole_content_of_aragonite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_calcite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_deposition_and_fixation_and_runoff", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_fixation", "tendency_of_ocean_mole_content_of_inorganic_carbon", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_iron_due_to_biological_production", "tendency_of_ocean_mole_content_of_iron_due_to_deposition_and_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "tendency_of_ocean_mole_content_of_nitrogen_due_to_biological_production", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_phosphorus_due_to_biological_production", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_silicon_due_to_biological_production", "tendency_of_ocean_potential_energy_content", "tendency_of_ocean_potential_energy_content_due_to_background", "tendency_of_ocean_potential_energy_content_due_to_tides", "tendency_of_potential_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_convection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_diffusion", "tendency_of_sea_ice_amount_due_to_basal_melting", "tendency_of_sea_ice_amount_due_to_congelation_ice_accumulation", "tendency_of_sea_ice_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_sea_ice_amount_due_to_frazil_ice_accumulation_in_leads", "tendency_of_sea_ice_amount_due_to_lateral_growth_of_ice_floes", "tendency_of_sea_ice_amount_due_to_lateral_melting", "tendency_of_sea_ice_amount_due_to_sea_ice_dynamics", "tendency_of_sea_ice_amount_due_to_sea_ice_thermodynamics", "tendency_of_sea_ice_amount_due_to_surface_melting", "tendency_of_sea_ice_area_fraction_due_to_dynamics", "tendency_of_sea_ice_area_fraction_due_to_ridging", "tendency_of_sea_ice_area_fraction_due_to_thermodynamics", "tendency_of_sea_ice_thickness_due_to_dynamics", "tendency_of_sea_ice_thickness_due_to_thermodynamics", "tendency_of_sea_surface_height_above_mean_sea_level", "tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_salinity", "tendency_of_sea_water_salinity_due_to_advection", "tendency_of_sea_water_salinity_due_to_horizontal_mixing", "tendency_of_sea_water_salinity_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_due_to_sea_ice_thermodynamics", "tendency_of_sea_water_salinity_due_to_vertical_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_residual_mean_advection", "tendency_of_sea_water_temperature", "tendency_of_sea_water_temperature_due_to_advection", "tendency_of_sea_water_temperature_due_to_horizontal_mixing", "tendency_of_sea_water_temperature_due_to_parameterized_eddy_advection", "tendency_of_sea_water_temperature_due_to_vertical_mixing", "tendency_of_soil_and_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_soil_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fertilization", "tendency_of_specific_humidity", "tendency_of_specific_humidity_due_to_advection", "tendency_of_specific_humidity_due_to_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_convection", "tendency_of_specific_humidity_due_to_diffusion", "tendency_of_specific_humidity_due_to_model_physics", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_stratiform_precipitation", "tendency_of_surface_air_pressure", "tendency_of_surface_snow_amount", "tendency_of_surface_snow_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_surface_snow_amount_due_to_drifting_into_sea", "tendency_of_surface_snow_amount_due_to_sea_ice_dynamics", "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", "tendency_of_troposphere_moles_of_carbon_monoxide", "tendency_of_troposphere_moles_of_hcc140a", "tendency_of_troposphere_moles_of_hcfc22", "tendency_of_troposphere_moles_of_methane", "tendency_of_troposphere_moles_of_methyl_bromide", "tendency_of_troposphere_moles_of_methyl_chloride", "tendency_of_troposphere_moles_of_molecular_hydrogen", "tendency_of_upward_air_velocity", "tendency_of_upward_air_velocity_due_to_advection", "tendency_of_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_wind_speed_due_to_convection", "tendency_of_wind_speed_due_to_gravity_wave_drag", "thermal_conductivity_of_frozen_ground", "thermal_energy_content_of_surface_snow", "thermodynamic_phase_of_cloud_water_particles_at_cloud_top", "thermosteric_change_in_mean_sea_level", "thermosteric_change_in_sea_surface_height", "thickness_of_convective_rainfall_amount", "thickness_of_convective_snowfall_amount", "thickness_of_ice_on_sea_ice_melt_pond", "thickness_of_liquid_water_cloud", "thickness_of_rainfall_amount", "thickness_of_snowfall_amount", "thickness_of_stratiform_rainfall_amount", "thickness_of_stratiform_snowfall_amount", "thunderstorm_probability", "tidal_sea_surface_height_above_lowest_astronomical_tide", "tidal_sea_surface_height_above_mean_higher_high_water", "tidal_sea_surface_height_above_mean_lower_low_water", "tidal_sea_surface_height_above_mean_low_water_springs", "tidal_sea_surface_height_above_mean_sea_level", "time", "time_of_maximum_flood_depth", "time_sample_difference_due_to_collocation", "time_when_flood_water_falls_below_threshold", "time_when_flood_water_rises_above_threshold", "toa_adjusted_longwave_forcing", "toa_adjusted_radiative_forcing", "toa_adjusted_shortwave_forcing", "toa_bidirectional_reflectance", "toa_brightness_temperature", "toa_brightness_temperature_assuming_clear_sky", "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", "toa_brightness_temperature_of_standard_scene", "toa_cloud_radiative_effect", "toa_incoming_shortwave_flux", "toa_instantaneous_longwave_forcing", "toa_instantaneous_radiative_forcing", "toa_instantaneous_shortwave_forcing", "toa_longwave_cloud_radiative_effect", "toa_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "toa_net_downward_longwave_flux", "toa_net_downward_longwave_flux_assuming_clear_sky", "toa_net_downward_radiative_flux", "toa_net_downward_shortwave_flux", "toa_net_downward_shortwave_flux_assuming_clear_sky", "toa_net_upward_longwave_flux", "toa_net_upward_longwave_flux_assuming_clear_sky", "toa_net_upward_shortwave_flux", "toa_outgoing_longwave_flux", "toa_outgoing_longwave_flux_assuming_clear_sky", "toa_outgoing_longwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_outgoing_radiance_per_unit_wavelength", "toa_outgoing_radiance_per_unit_wavelength_due_to_solar_induced_fluorescence", "toa_outgoing_radiance_per_unit_wavenumber", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_target", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_target", "toa_outgoing_shortwave_flux", "toa_outgoing_shortwave_flux_assuming_clear_sky", "toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol", "toa_outgoing_shortwave_flux_assuming_no_aerosol", "toa_outgoing_shortwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_shortwave_cloud_radiative_effect", "to_direction_of_air_velocity_relative_to_sea_water", "to_direction_of_surface_downward_stress", "tracer_lifetime", "transpiration_amount", "transpiration_flux", "tropical_cyclone_eye_brightness_temperature", "tropical_cyclone_maximum_sustained_wind_speed", "tropopause_adjusted_longwave_forcing", "tropopause_adjusted_radiative_forcing", "tropopause_adjusted_shortwave_forcing", "tropopause_air_pressure", "tropopause_air_temperature", "tropopause_altitude", "tropopause_downwelling_longwave_flux", "tropopause_instantaneous_longwave_forcing", "tropopause_instantaneous_radiative_forcing", "tropopause_instantaneous_shortwave_forcing", "tropopause_net_downward_longwave_flux", "tropopause_net_downward_shortwave_flux", "tropopause_upwelling_shortwave_flux", "troposphere_mole_content_of_bromine_monoxide", "troposphere_mole_content_of_formaldehyde", "troposphere_mole_content_of_glyoxal", "troposphere_mole_content_of_iodine_monoxide", "troposphere_mole_content_of_nitrogen_dioxide", "troposphere_mole_content_of_ozone", "troposphere_mole_content_of_sulfur_dioxide", "turbulent_mixing_length_of_sea_water", "ultraviolet_index", "ultraviolet_index_assuming_clear_sky", "ultraviolet_index_assuming_overcast_sky", "upward_air_velocity", "upward_derivative_of_eastward_wind", "upward_derivative_of_northward_wind", "upward_derivative_of_wind_from_direction", "upward_dry_static_energy_flux_due_to_diffusion", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_eastward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_westward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_orographic_gravity_waves", "upward_eastward_stress_at_sea_ice_base", "upward_eliassen_palm_flux_in_air", "upward_geothermal_heat_flux_at_ground_level_in_land_ice", "upward_geothermal_heat_flux_at_sea_floor", "upward_heat_flux_at_ground_level_in_snow", "upward_heat_flux_at_ground_level_in_soil", "upward_heat_flux_in_air", "upward_heat_flux_in_sea_water_due_to_convection", "upward_latent_heat_flux_in_air", "upward_mass_flux_of_air", "upward_northward_stress_at_sea_ice_base", "upward_ocean_mass_transport", "upward_sea_ice_basal_heat_flux", "upward_sea_water_velocity", "upward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "upward_sensible_heat_flux_in_air", "upward_transformed_eulerian_mean_air_velocity", "upward_upward_derivative_of_geopotential", "upward_water_vapor_flux_in_air", "upward_water_vapor_flux_in_air_due_to_diffusion", "upward_x_stress_at_sea_ice_base", "upward_y_stress_at_sea_ice_base", "upwelling_longwave_flux_in_air", "upwelling_longwave_flux_in_air_assuming_clear_sky", "upwelling_longwave_radiance_in_air", "upwelling_radiance_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "upwelling_shortwave_flux_in_air", "upwelling_shortwave_flux_in_air_assuming_clear_sky", "upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "upwelling_shortwave_radiance_in_air", "vegetation_area_fraction", "vegetation_carbon_content", "vegetation_mass_content_of_13C", "vegetation_mass_content_of_14C", "vegetation_mass_content_of_nitrogen", "vertical_component_of_ocean_xy_tracer_diffusivity", "vertical_navigation_clearance_above_waterway_surface", "virtual_salt_flux_correction", "virtual_salt_flux_into_sea_water", "virtual_salt_flux_into_sea_water_due_to_evaporation", "virtual_salt_flux_into_sea_water_due_to_newtonian_relaxation", "virtual_salt_flux_into_sea_water_due_to_rainfall", "virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "virtual_salt_flux_into_sea_water_from_rivers", "virtual_temperature", "visibility_in_air", "volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles", "volume_absorption_coefficient_of_radiative_flux_in_sea_water", "volume_absorption_coefficient_of_radiative_flux_in_sea_water_due_to_dissolved_organic_matter", "volume_attenuated_backwards_scattering_function_in_air", "volume_attenuated_backwards_scattering_function_in_air_assuming_no_aerosol_or_cloud", "volume_attenuation_coefficient_of_downwelling_radiative_flux_in_sea_water", "volume_backwards_scattering_coefficient_in_air_due_to_dried_aerosol_particles", "volume_backwards_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water_corrected_for_pure_water_attenuance", "volume_extinction_coefficient_in_air_due_to_ambient_aerosol_particles", "volume_extinction_coefficient_in_air_due_to_cloud_particles", "volume_fraction_of_clay_in_soil", "volume_fraction_of_condensed_water_in_soil", "volume_fraction_of_condensed_water_in_soil_at_critical_point", "volume_fraction_of_condensed_water_in_soil_at_field_capacity", "volume_fraction_of_condensed_water_in_soil_at_wilting_point", "volume_fraction_of_condensed_water_in_soil_pores", "volume_fraction_of_frozen_water_in_soil", "volume_fraction_of_oxygen_in_sea_water", "volume_fraction_of_sand_in_soil", "volume_fraction_of_silt_in_soil", "volume_mixing_ratio_of_oxygen_at_stp_in_sea_water", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_dried_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_scattering_function_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_function_of_radiative_flux_in_sea_water", "water_evaporation_amount", "water_evaporation_amount_from_canopy", "water_evaporation_flux_from_canopy", "water_evaporation_flux_from_soil", "water_evapotranspiration_flux", "water_flux_correction", "water_flux_into_sea_water", "water_flux_into_sea_water_due_to_sea_ice_thermodynamics", "water_flux_into_sea_water_due_to_surface_drainage", "water_flux_into_sea_water_from_icebergs", "water_flux_into_sea_water_from_land_ice", "water_flux_into_sea_water_from_rivers", "water_flux_into_sea_water_from_rivers_and_surface_downward_water_flux", "water_flux_into_sea_water_without_flux_correction", "water_flux_out_of_sea_ice_and_sea_water", "water_flux_out_of_sea_water", "water_flux_out_of_sea_water_due_to_newtonian_relaxation", "water_flux_out_of_sea_water_due_to_sea_ice_thermodynamics", "water_potential_evaporation_amount", "water_potential_evaporation_flux", "water_sublimation_flux", "water_surface_height_above_reference_datum", "water_surface_reference_datum_altitude", "water_table_depth", "water_vapor_partial_pressure_in_air", "water_vapor_saturation_deficit_in_air", "water_volume_transport_in_river_channel", "water_volume_transport_into_sea_water_from_rivers", "wave_frequency", "westward_upward_derivative_of_geopotential", "westward_westward_derivative_of_geopotential", "wet_bulb_potential_temperature", "wet_bulb_temperature", "wind_chill_of_air_temperature", "wind_from_direction", "wind_gust_from_direction", "wind_mixing_energy_flux_into_sea_water", "wind_speed", "wind_speed_of_gust", "wind_speed_shear", "wind_to_direction", "wood_debris_mass_content_of_carbon", "wood_debris_mass_content_of_nitrogen", "x_derivative_of_ocean_rigid_lid_pressure", "x_heat_flux_in_sea_water_due_to_advection", "x_wind", "x_wind_gust", "y_derivative_of_ocean_rigid_lid_pressure", "y_heat_flux_in_sea_water_due_to_advection", "y_wind", "y_wind_gust", "zenith_angle"], "description": "Options", "index": [0], "layout": "IPY_MODEL_38bd870dcf00479d886592bf109c7f5f", "rows": 10, "style": "IPY_MODEL_52de57c3129c441ab61ea5c5d7d3bf46"}}, "96cb5595f98d45128b55676270c0baed": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ButtonStyleModel", "state": {"font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "ab3a07bc95be43f68a1f020e875fc680": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["automated_tropical_cyclone_forecasting_system_storm_identifier", "canopy_temperature", "dew_point_temperature", "dynamic_tropopause_potential_temperature", "fire_temperature", "freezing_temperature_of_sea_water", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", "number_of_days_with_surface_temperature_below_threshold", "ocean_mixed_layer_thickness_defined_by_temperature", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_northward_sea_water_velocity_and_temperature", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "sea_surface_foundation_temperature", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_temperature", "sea_water_added_potential_temperature", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_redistributed_potential_temperature", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "soil_temperature", "square_of_sea_surface_temperature", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "surface_temperature", "surface_temperature_anomaly", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "virtual_temperature", "wet_bulb_potential_temperature", "wet_bulb_temperature"], "description": "Options", "index": [15, 17, 21], "layout": "IPY_MODEL_063581d0e65c4cf9b5c590735965cd34", "rows": 10, "style": "IPY_MODEL_8b104e2020424618b401e8e4d2c53a17"}}, "b5934906097e46a5bd19837dfe66e4e8": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "b7d7ee2215464372847d566557e2a2c3": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "b8cd1eefdeb74a2c9cd83b851d7182e8": {"model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": {"layout": "IPY_MODEL_bf5929ce0fad4e3e9d20813edac2b5f8", "outputs": [{"name": "stdout", "output_type": "stream", "text": "Regular expression: (?i)^(?!.*(air|brightness|change|depth|land|ice|conservative|flux|tendency))(?=.*tem)\n"}, {"data": {"application/vnd.jupyter.widget-view+json": {"model_id": "ab3a07bc95be43f68a1f020e875fc680", "version_major": 2, "version_minor": 0}, "text/plain": "SelectMultiple(description='Options', index=(0,), layout=Layout(width='50%'), options=('automated_tropical_cyc\u2026"}, "metadata": {}, "output_type": "display_data"}]}}, "bf5929ce0fad4e3e9d20813edac2b5f8": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "c1241afeed47433e8a1690f2ed23e6b7": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "d49878c11e4d43cc82f5c0f393497036": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["acoustic_signal_roundtrip_travel_time_in_sea_water", "aerodynamic_particle_diameter", "aerodynamic_resistance", "age_of_sea_ice", "age_of_stratospheric_air", "age_of_surface_snow", "aggregate_quality_flag", "air_density", "air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", "air_pressure", "air_pressure_anomaly", "air_pressure_at_cloud_base", "air_pressure_at_cloud_top", "air_pressure_at_convective_cloud_base", "air_pressure_at_convective_cloud_top", "air_pressure_at_freezing_level", "air_pressure_at_mean_sea_level", "air_pressure_at_top_of_atmosphere_model", "air_pseudo_equivalent_potential_temperature", "air_pseudo_equivalent_temperature", "air_temperature", "air_temperature_anomaly", "air_temperature_at_cloud_top", "air_temperature_at_effective_cloud_top_defined_by_infrared_radiation", "air_temperature_lapse_rate", "air_temperature_threshold", "altimeter_range", "altimeter_range_correction_due_to_dry_troposphere", "altimeter_range_correction_due_to_ionosphere", "altimeter_range_correction_due_to_wet_troposphere", "altitude", "altitude_at_top_of_atmosphere_model", "altitude_at_top_of_dry_convection", "amplitude_of_global_average_sea_level_change", "angle_of_emergence", "angle_of_incidence", "angle_of_rotation_from_east_to_x", "angle_of_rotation_from_east_to_y", "angle_of_rotation_from_solar_azimuth_to_platform_azimuth", "angstrom_exponent_of_ambient_aerosol_in_air", "apparent_air_temperature", "apparent_oxygen_utilization", "area_fraction", "area_fraction_below_surface", "area_fraction_of_day_defined_by_solar_zenith_angle", "area_fraction_of_night_defined_by_solar_zenith_angle", "area_fraction_of_twilight_defined_by_solar_zenith_angle", "area_type", "asymmetry_factor_of_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_absorption_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_boundary_layer_thickness", "atmosphere_convective_available_potential_energy", "atmosphere_convective_available_potential_energy_wrt_surface", "atmosphere_convective_inhibition", "atmosphere_convective_inhibition_wrt_surface", "atmosphere_downdraft_convective_mass_flux", "atmosphere_dry_energy_content", "atmosphere_dry_static_energy_content", "atmosphere_eastward_stress_due_to_gravity_wave_drag", "atmosphere_energy_content", "atmosphere_enthalpy_content", "atmosphere_heat_diffusivity", "atmosphere_helicity", "atmosphere_horizontal_streamfunction", "atmosphere_horizontal_velocity_potential", "atmosphere_hybrid_height_coordinate", "atmosphere_hybrid_sigma_pressure_coordinate", "atmosphere_kinetic_energy_content", "atmosphere_layer_thickness_expressed_as_geopotential_height_difference", "atmosphere_level_of_free_convection", "atmosphere_level_of_free_convection_wrt_surface", "atmosphere_lifting_condensation_level", "atmosphere_lifting_condensation_level_wrt_surface", "atmosphere_ln_pressure_coordinate", "atmosphere_mass_content_of_acetic_acid", "atmosphere_mass_content_of_aceto_nitrile", "atmosphere_mass_content_of_alkanes", "atmosphere_mass_content_of_alkenes", "atmosphere_mass_content_of_alpha_hexachlorocyclohexane", "atmosphere_mass_content_of_alpha_pinene", "atmosphere_mass_content_of_ammonia", "atmosphere_mass_content_of_ammonium_dry_aerosol_particles", "atmosphere_mass_content_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_aromatic_compounds", "atmosphere_mass_content_of_atomic_bromine", "atmosphere_mass_content_of_atomic_chlorine", "atmosphere_mass_content_of_atomic_nitrogen", "atmosphere_mass_content_of_benzene", "atmosphere_mass_content_of_beta_pinene", "atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_bromine_chloride", "atmosphere_mass_content_of_bromine_monoxide", "atmosphere_mass_content_of_bromine_nitrate", "atmosphere_mass_content_of_brox_expressed_as_bromine", "atmosphere_mass_content_of_butane", "atmosphere_mass_content_of_carbon_dioxide", "atmosphere_mass_content_of_carbon_monoxide", "atmosphere_mass_content_of_carbon_tetrachloride", "atmosphere_mass_content_of_cfc11", "atmosphere_mass_content_of_cfc113", "atmosphere_mass_content_of_cfc113a", "atmosphere_mass_content_of_cfc114", "atmosphere_mass_content_of_cfc115", "atmosphere_mass_content_of_cfc12", "atmosphere_mass_content_of_chlorine_dioxide", "atmosphere_mass_content_of_chlorine_monoxide", "atmosphere_mass_content_of_chlorine_nitrate", "atmosphere_mass_content_of_cloud_condensed_water", "atmosphere_mass_content_of_cloud_ice", "atmosphere_mass_content_of_cloud_liquid_water", "atmosphere_mass_content_of_clox_expressed_as_chlorine", "atmosphere_mass_content_of_convective_cloud_condensed_water", "atmosphere_mass_content_of_convective_cloud_ice", "atmosphere_mass_content_of_convective_cloud_liquid_water", "atmosphere_mass_content_of_dichlorine_peroxide", "atmosphere_mass_content_of_dimethyl_sulfide", "atmosphere_mass_content_of_dinitrogen_pentoxide", "atmosphere_mass_content_of_dust_dry_aerosol_particles", "atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles", "atmosphere_mass_content_of_ethane", "atmosphere_mass_content_of_ethanol", "atmosphere_mass_content_of_ethene", "atmosphere_mass_content_of_ethyne", "atmosphere_mass_content_of_formaldehyde", "atmosphere_mass_content_of_formic_acid", "atmosphere_mass_content_of_gaseous_divalent_mercury", "atmosphere_mass_content_of_gaseous_elemental_mercury", "atmosphere_mass_content_of_graupel", "atmosphere_mass_content_of_graupel_and_hail", "atmosphere_mass_content_of_hail", "atmosphere_mass_content_of_halon1202", "atmosphere_mass_content_of_halon1211", "atmosphere_mass_content_of_halon1301", "atmosphere_mass_content_of_halon2402", "atmosphere_mass_content_of_hcc140a", "atmosphere_mass_content_of_hcfc141b", "atmosphere_mass_content_of_hcfc142b", "atmosphere_mass_content_of_hcfc22", "atmosphere_mass_content_of_hexachlorobiphenyl", "atmosphere_mass_content_of_hox_expressed_as_hydrogen", "atmosphere_mass_content_of_hydrogen_bromide", "atmosphere_mass_content_of_hydrogen_chloride", "atmosphere_mass_content_of_hydrogen_cyanide", "atmosphere_mass_content_of_hydrogen_peroxide", "atmosphere_mass_content_of_hydroperoxyl_radical", "atmosphere_mass_content_of_hydroxyl_radical", "atmosphere_mass_content_of_hypobromous_acid", "atmosphere_mass_content_of_hypochlorous_acid", "atmosphere_mass_content_of_inorganic_bromine", "atmosphere_mass_content_of_inorganic_chlorine", "atmosphere_mass_content_of_isoprene", "atmosphere_mass_content_of_limonene", "atmosphere_mass_content_of_liquid_precipitation", "atmosphere_mass_content_of_mercury_dry_aerosol_particles", "atmosphere_mass_content_of_methane", "atmosphere_mass_content_of_methanol", "atmosphere_mass_content_of_methyl_bromide", "atmosphere_mass_content_of_methyl_chloride", "atmosphere_mass_content_of_methyl_hydroperoxide", "atmosphere_mass_content_of_methyl_peroxy_radical", "atmosphere_mass_content_of_molecular_hydrogen", "atmosphere_mass_content_of_nitrate_dry_aerosol_particles", "atmosphere_mass_content_of_nitrate_radical", "atmosphere_mass_content_of_nitric_acid", "atmosphere_mass_content_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_mass_content_of_nitrogen_monoxide", "atmosphere_mass_content_of_nitrous_acid", "atmosphere_mass_content_of_nitrous_oxide", "atmosphere_mass_content_of_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_nox_expressed_as_nitrogen", "atmosphere_mass_content_of_noy_expressed_as_nitrogen", "atmosphere_mass_content_of_oxygenated_hydrocarbons", "atmosphere_mass_content_of_ozone", "atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_peroxyacetyl_nitrate", "atmosphere_mass_content_of_peroxynitric_acid", "atmosphere_mass_content_of_peroxy_radicals", "atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_propane", "atmosphere_mass_content_of_propene", "atmosphere_mass_content_of_radon", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_expressed_as_cations", "atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_snow", "atmosphere_mass_content_of_sulfate", "atmosphere_mass_content_of_sulfate_ambient_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur", "atmosphere_mass_content_of_sulfur_dioxide", "atmosphere_mass_content_of_terpenes", "atmosphere_mass_content_of_toluene", "atmosphere_mass_content_of_volcanic_ash", "atmosphere_mass_content_of_water", "atmosphere_mass_content_of_water_in_ambient_aerosol_particles", "atmosphere_mass_content_of_water_vapor", "atmosphere_mass_content_of_xylene", "atmosphere_mass_of_air_per_unit_area", "atmosphere_mass_of_carbon_dioxide", "atmosphere_mass_per_unit_area", "atmosphere_mole_content_of_carbon_monoxide", "atmosphere_mole_content_of_methane", "atmosphere_mole_content_of_nitrogen_dioxide", "atmosphere_mole_content_of_ozone", "atmosphere_mole_content_of_water_vapor", "atmosphere_moles_of_acetic_acid", "atmosphere_moles_of_aceto_nitrile", "atmosphere_moles_of_alpha_hexachlorocyclohexane", "atmosphere_moles_of_alpha_pinene", "atmosphere_moles_of_ammonia", "atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_atomic_bromine", "atmosphere_moles_of_atomic_chlorine", "atmosphere_moles_of_atomic_nitrogen", "atmosphere_moles_of_benzene", "atmosphere_moles_of_beta_pinene", "atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_bromine_chloride", "atmosphere_moles_of_bromine_monoxide", "atmosphere_moles_of_bromine_nitrate", "atmosphere_moles_of_brox_expressed_as_bromine", "atmosphere_moles_of_butane", "atmosphere_moles_of_carbon_dioxide", "atmosphere_moles_of_carbon_monoxide", "atmosphere_moles_of_carbon_tetrachloride", "atmosphere_moles_of_cfc11", "atmosphere_moles_of_cfc113", "atmosphere_moles_of_cfc113a", "atmosphere_moles_of_cfc114", "atmosphere_moles_of_cfc115", "atmosphere_moles_of_cfc12", "atmosphere_moles_of_chlorine_dioxide", "atmosphere_moles_of_chlorine_monoxide", "atmosphere_moles_of_chlorine_nitrate", "atmosphere_moles_of_clox_expressed_as_chlorine", "atmosphere_moles_of_dichlorine_peroxide", "atmosphere_moles_of_dimethyl_sulfide", "atmosphere_moles_of_dinitrogen_pentoxide", "atmosphere_moles_of_ethane", "atmosphere_moles_of_ethanol", "atmosphere_moles_of_ethene", "atmosphere_moles_of_ethyne", "atmosphere_moles_of_formaldehyde", "atmosphere_moles_of_formic_acid", "atmosphere_moles_of_gaseous_divalent_mercury", "atmosphere_moles_of_gaseous_elemental_mercury", "atmosphere_moles_of_halon1202", "atmosphere_moles_of_halon1211", "atmosphere_moles_of_halon1301", "atmosphere_moles_of_halon2402", "atmosphere_moles_of_hcc140a", "atmosphere_moles_of_hcfc141b", "atmosphere_moles_of_hcfc142b", "atmosphere_moles_of_hcfc22", "atmosphere_moles_of_hexachlorobiphenyl", "atmosphere_moles_of_hox_expressed_as_hydrogen", "atmosphere_moles_of_hydrogen_bromide", "atmosphere_moles_of_hydrogen_chloride", "atmosphere_moles_of_hydrogen_cyanide", "atmosphere_moles_of_hydrogen_peroxide", "atmosphere_moles_of_hydroperoxyl_radical", "atmosphere_moles_of_hydroxyl_radical", "atmosphere_moles_of_hypobromous_acid", "atmosphere_moles_of_hypochlorous_acid", "atmosphere_moles_of_inorganic_bromine", "atmosphere_moles_of_inorganic_chlorine", "atmosphere_moles_of_isoprene", "atmosphere_moles_of_limonene", "atmosphere_moles_of_methane", "atmosphere_moles_of_methanol", "atmosphere_moles_of_methyl_bromide", "atmosphere_moles_of_methyl_chloride", "atmosphere_moles_of_methyl_hydroperoxide", "atmosphere_moles_of_methyl_peroxy_radical", "atmosphere_moles_of_molecular_hydrogen", "atmosphere_moles_of_nitrate_radical", "atmosphere_moles_of_nitric_acid", "atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_moles_of_nitrogen_dioxide", "atmosphere_moles_of_nitrogen_monoxide", "atmosphere_moles_of_nitrous_acid", "atmosphere_moles_of_nitrous_oxide", "atmosphere_moles_of_nmvoc_expressed_as_carbon", "atmosphere_moles_of_nox_expressed_as_nitrogen", "atmosphere_moles_of_noy_expressed_as_nitrogen", "atmosphere_moles_of_ozone", "atmosphere_moles_of_peroxyacetyl_nitrate", "atmosphere_moles_of_peroxynitric_acid", "atmosphere_moles_of_propane", "atmosphere_moles_of_propene", "atmosphere_moles_of_radon", "atmosphere_moles_of_sulfur_dioxide", "atmosphere_moles_of_toluene", "atmosphere_moles_of_water_vapor", "atmosphere_moles_of_xylene", "atmosphere_momentum_diffusivity", "atmosphere_net_rate_of_absorption_of_longwave_energy", "atmosphere_net_rate_of_absorption_of_shortwave_energy", "atmosphere_net_upward_convective_mass_flux", "atmosphere_net_upward_deep_convective_mass_flux", "atmosphere_net_upward_shallow_convective_mass_flux", "atmosphere_northward_stress_due_to_gravity_wave_drag", "atmosphere_number_content_of_aerosol_particles", "atmosphere_number_content_of_cloud_droplets", "atmosphere_number_content_of_ice_crystals", "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_ammonium_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_optical_thickness_due_to_cloud", "atmosphere_optical_thickness_due_to_convective_cloud", "atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_dust_dry_aerosol_particles", "atmosphere_optical_thickness_due_to_nitrate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm10_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm1_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm2p5_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_stratiform_cloud", "atmosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_water_in_ambient_aerosol_particles", "atmosphere_potential_energy_content", "atmosphere_sigma_coordinate", "atmosphere_sleve_coordinate", "atmosphere_stability_k_index", "atmosphere_stability_showalter_index", "atmosphere_stability_total_totals_index", "atmosphere_transformed_eulerian_mean_meridional_overturning_mass_streamfunction", "atmosphere_updraft_convective_mass_flux", "atmosphere_upward_absolute_vorticity", "atmosphere_upward_relative_vorticity", "atmosphere_x_relative_vorticity", "atmosphere_y_relative_vorticity", "attenuated_signal_test_quality_flag", "automated_tropical_cyclone_forecasting_system_storm_identifier", "backscattering_ratio_in_air", "baroclinic_eastward_sea_water_velocity", "baroclinic_northward_sea_water_velocity", "barometric_altitude", "barotropic_eastward_sea_water_velocity", "barotropic_northward_sea_water_velocity", "barotropic_sea_water_x_velocity", "barotropic_sea_water_y_velocity", "basal_downward_heat_flux_in_sea_ice", "baseflow_amount", "beam_consistency_indicator_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "beaufort_wind_force", "bedrock_altitude", "bedrock_altitude_change_due_to_isostatic_adjustment", "biological_taxon_lsid", "biological_taxon_name", "bioluminescent_photon_rate_in_sea_water", "biomass_burning_carbon_flux", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "brunt_vaisala_frequency_in_air", "burned_area", "burned_area_fraction", "canopy_albedo", "canopy_and_surface_water_amount", "canopy_height", "canopy_resistance_to_ozone_dry_deposition", "canopy_snow_amount", "canopy_temperature", "canopy_throughfall_flux", "canopy_water_amount", "carbon_mass_content_of_forestry_and_agricultural_products", "carbon_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_litter_and_soil_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_soil_from_litter", "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", "cell_area", "cell_thickness", "change_in_atmosphere_energy_content_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_energy_content_of_atmosphere_layer_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_land_ice_amount", "change_in_land_ice_mass", "change_over_time_in_amount_of_ice_and_snow_on_land", "change_over_time_in_atmosphere_mass_content_of_water_due_to_advection", "change_over_time_in_canopy_water_amount", "change_over_time_in_groundwater_amount", "change_over_time_in_land_surface_liquid_water_amount", "change_over_time_in_land_water_amount", "change_over_time_in_mass_content_of_water_in_soil", "change_over_time_in_river_water_amount", "change_over_time_in_sea_water_absolute_salinity", "change_over_time_in_sea_water_conservative_temperature", "change_over_time_in_sea_water_density", "change_over_time_in_sea_water_neutral_density", "change_over_time_in_sea_water_potential_density", "change_over_time_in_sea_water_potential_temperature", "change_over_time_in_sea_water_practical_salinity", "change_over_time_in_sea_water_preformed_salinity", "change_over_time_in_sea_water_salinity", "change_over_time_in_sea_water_specific_potential_enthalpy", "change_over_time_in_sea_water_temperature", "change_over_time_in_surface_snow_amount", "change_over_time_in_thermal_energy_content_of_ice_and_snow_on_land", "change_over_time_in_thermal_energy_content_of_vegetation_and_litter_and_soil", "charnock_coefficient_for_surface_roughness_length_for_momentum_in_air", "clear_sky_area_fraction", "climatology_test_quality_flag", "cloud_albedo", "cloud_area_fraction", "cloud_area_fraction_in_atmosphere_layer", "cloud_base_altitude", "cloud_binary_mask", "cloud_ice_mixing_ratio", "cloud_liquid_water_mixing_ratio", "cloud_top_altitude", "colony_forming_unit_number_concentration_of_biological_taxon_in_sea_water", "compressive_strength_of_sea_ice", "concentration_of_colored_dissolved_organic_matter_in_sea_water_expressed_as_equivalent_mass_fraction_of_quinine_sulfate_dihydrate", "convection_time_fraction", "convective_cloud_area_fraction", "convective_cloud_area_fraction_in_atmosphere_layer", "convective_cloud_base_altitude", "convective_cloud_base_height", "convective_cloud_longwave_emissivity", "convective_cloud_top_altitude", "convective_cloud_top_height", "convective_precipitation_amount", "convective_precipitation_flux", "convective_precipitation_rate", "convective_rainfall_amount", "convective_rainfall_flux", "convective_rainfall_rate", "convective_snowfall_amount", "convective_snowfall_flux", "coriolis_parameter", "correction_for_model_negative_specific_humidity", "covariance_over_longitude_of_northward_wind_and_air_temperature", "depth", "depth_at_base_of_unfrozen_ground", "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", "depth_at_shallowest_isotherm_defined_by_soil_temperature", "depth_at_shallowest_local_minimum_in_vertical_profile_of_mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "depth_below_geoid", "depth_below_sea_floor", "depth_of_isosurface_of_sea_water_potential_temperature", "dew_point_depression", "dew_point_temperature", "diameter_of_ambient_aerosol_particles", "difference_between_sea_surface_temperature_and_air_temperature", "difference_of_air_pressure_from_model_reference", "diffuse_downwelling_shortwave_flux_in_air", "diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "dimensionless_exner_function", "direct_downwelling_shortwave_flux_in_air", "direction_of_radial_vector_away_from_instrument", "direction_of_radial_vector_toward_instrument", "direction_of_sea_ice_displacement", "direction_of_sea_ice_velocity", "distance_from_geocenter", "distance_from_sun", "distance_from_tropical_cyclone_center_to_leading_edge_of_displaced_convection", "divergence_of_sea_ice_velocity", "divergence_of_wind", "downward_air_velocity", "downward_dry_static_energy_flux_due_to_diffusion", "downward_eastward_momentum_flux_in_air", "downward_eastward_momentum_flux_in_air_due_to_diffusion", "downward_eastward_stress_at_sea_ice_base", "downward_heat_flux_at_ground_level_in_snow", "downward_heat_flux_at_ground_level_in_soil", "downward_heat_flux_in_air", "downward_heat_flux_in_floating_ice", "downward_heat_flux_in_sea_ice", "downward_heat_flux_in_soil", "downward_liquid_water_mass_flux_into_groundwater", "downward_northward_momentum_flux_in_air", "downward_northward_momentum_flux_in_air_due_to_diffusion", "downward_northward_stress_at_sea_ice_base", "downward_sea_ice_basal_salt_flux", "downward_water_vapor_flux_in_air_due_to_diffusion", "downward_x_stress_at_sea_ice_base", "downward_x_stress_at_sea_water_surface", "downward_x_stress_correction_at_sea_water_surface", "downward_y_stress_at_sea_ice_base", "downward_y_stress_at_sea_water_surface", "downward_y_stress_correction_at_sea_water_surface", "downwelling_longwave_flux_in_air", "downwelling_longwave_flux_in_air_assuming_clear_sky", "downwelling_longwave_radiance_in_air", "downwelling_photon_flux_in_sea_water", "downwelling_photon_flux_per_unit_wavelength_in_sea_water", "downwelling_photon_radiance_in_sea_water", "downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "downwelling_photon_spherical_irradiance_in_sea_water", "downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "downwelling_photosynthetic_photon_flux_in_sea_water", "downwelling_photosynthetic_photon_radiance_in_sea_water", "downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "downwelling_photosynthetic_radiance_in_sea_water", "downwelling_photosynthetic_radiative_flux_in_sea_water", "downwelling_photosynthetic_spherical_irradiance_in_sea_water", "downwelling_radiance_in_sea_water", "downwelling_radiance_per_unit_wavelength_in_air", "downwelling_radiance_per_unit_wavelength_in_sea_water", "downwelling_radiative_flux_in_sea_water", "downwelling_radiative_flux_per_unit_wavelength_in_air", "downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "downwelling_shortwave_flux_in_air", "downwelling_shortwave_flux_in_air_assuming_clear_sky", "downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "downwelling_shortwave_flux_in_sea_water", "downwelling_shortwave_flux_in_sea_water_at_sea_ice_base", "downwelling_shortwave_radiance_in_air", "downwelling_spherical_irradiance_in_sea_water", "downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "dry_atmosphere_mole_fraction_of_carbon_dioxide", "dry_atmosphere_mole_fraction_of_methane", "dry_energy_content_of_atmosphere_layer", "dry_static_energy_content_of_atmosphere_layer", "duration_of_sunshine", "dvorak_tropical_cyclone_current_intensity_number", "dvorak_tropical_number", "dynamic_tropopause_potential_temperature", "eastward_air_velocity_relative_to_sea_water", "eastward_atmosphere_dry_static_energy_transport_across_unit_distance", "eastward_atmosphere_water_transport_across_unit_distance", "eastward_atmosphere_water_vapor_transport_across_unit_distance", "eastward_derivative_of_eastward_wind", "eastward_derivative_of_northward_sea_ice_velocity", "eastward_derivative_of_northward_wind", "eastward_derivative_of_wind_from_direction", "eastward_flood_water_velocity", "eastward_friction_velocity_in_air", "eastward_land_ice_velocity", "eastward_mass_flux_of_air", "eastward_momentum_flux_correction", "eastward_sea_ice_displacement", "eastward_sea_ice_velocity", "eastward_sea_water_velocity", "eastward_sea_water_velocity_assuming_no_tide", "eastward_sea_water_velocity_at_sea_floor", "eastward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "eastward_sea_water_velocity_due_to_tides", "eastward_transformed_eulerian_mean_air_velocity", "eastward_water_vapor_flux_in_air", "eastward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "eastward_wind", "eastward_wind_shear", "effective_radius_of_cloud_condensed_water_particles_at_cloud_top", "effective_radius_of_cloud_liquid_water_particles", "effective_radius_of_cloud_liquid_water_particles_at_liquid_water_cloud_top", "effective_radius_of_convective_cloud_ice_particles", "effective_radius_of_convective_cloud_liquid_water_particles", "effective_radius_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "effective_radius_of_convective_cloud_rain_particles", "effective_radius_of_convective_cloud_snow_particles", "effective_radius_of_stratiform_cloud_graupel_particles", "effective_radius_of_stratiform_cloud_ice_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "effective_radius_of_stratiform_cloud_rain_particles", "effective_radius_of_stratiform_cloud_snow_particles", "electrical_mobility_diameter_of_ambient_aerosol_particles", "enrichment_of_14C_in_carbon_dioxide_in_air_expressed_as_uppercase_delta_14C", "enthalpy_content_of_atmosphere_layer", "equilibrium_line_altitude", "equivalent_pressure_of_atmosphere_ozone_content", "equivalent_reflectivity_factor", "equivalent_thickness_at_stp_of_atmosphere_ozone_content", "ertel_potential_vorticity", "fast_soil_pool_mass_content_of_carbon", "final_air_pressure_of_lifted_parcel", "fire_area", "fire_radiative_power", "fire_temperature", "flat_line_test_quality_flag", "floating_ice_shelf_area", "floating_ice_shelf_area_fraction", "floating_ice_thickness", "flood_water_duration_above_threshold", "flood_water_speed", "flood_water_thickness", "fog_area_fraction", "forecast_period", "forecast_reference_time", "fractional_saturation_of_oxygen_in_sea_water", "fraction_of_surface_downwelling_photosynthetic_radiative_flux_absorbed_by_vegetation", "fraction_of_time_with_sea_ice_area_fraction_above_threshold", "freezing_level_altitude", "freezing_temperature_of_sea_water", "frequency_of_lightning_flashes_per_unit_area", "frozen_water_content_of_soil_layer", "fugacity_of_carbon_dioxide_in_sea_water", "gap_test_quality_flag", "geoid_height_above_reference_ellipsoid", "geopotential", "geopotential_height", "geopotential_height_anomaly", "geopotential_height_at_cloud_top", "geopotential_height_at_volcanic_ash_cloud_top", "geostrophic_eastward_sea_water_velocity", "geostrophic_eastward_wind", "geostrophic_northward_sea_water_velocity", "geostrophic_northward_wind", "global_average_sea_level_change", "global_average_steric_sea_level_change", "global_average_thermosteric_sea_level_change", "graupel_and_hail_fall_amount", "graupel_and_hail_fall_flux", "graupel_fall_amount", "graupel_fall_flux", "grid_latitude", "grid_longitude", "gross_primary_productivity_of_biomass_expressed_as_13C", "gross_primary_productivity_of_biomass_expressed_as_14C", "gross_primary_productivity_of_biomass_expressed_as_carbon", "gross_range_test_quality_flag", "gross_rate_of_decrease_in_area_fraction", "gross_rate_of_increase_in_area_fraction", "grounded_ice_sheet_area", "grounded_ice_sheet_area_fraction", "ground_level_altitude", "growth_limitation_of_calcareous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_diatoms_due_to_solar_irradiance", "growth_limitation_of_diazotrophic_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_miscellaneous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_picophytoplankton_due_to_solar_irradiance", "hail_fall_amount", "hail_fall_flux", "halosteric_change_in_mean_sea_level", "halosteric_change_in_sea_surface_height", "harmonic_period", "heat_flux_correction", "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", "heat_flux_into_sea_water_due_to_newtonian_relaxation", "heat_flux_into_sea_water_due_to_sea_ice_thermodynamics", "heat_flux_into_sea_water_due_to_snow_thermodynamics", "heat_index_of_air_temperature", "height", "height_above_geopotential_datum", "height_above_geopotential_datum_at_top_of_atmosphere_model", "height_above_mean_sea_level", "height_above_reference_ellipsoid", "height_above_sea_floor", "height_at_cloud_top", "height_at_effective_cloud_top_defined_by_infrared_radiation", "high_type_cloud_area_fraction", "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid", "histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid", "horizontal_atmosphere_dry_energy_transport", "horizontal_dry_energy_transport_in_atmosphere_layer", "humidity_mixing_ratio", "ice_cloud_area_fraction", "ice_cloud_area_fraction_in_atmosphere_layer", "ice_volume_in_frozen_ground_in_excess_of_pore_volume_in_unfrozen_ground_expressed_as_fraction_of_frozen_ground_volume", "incoming_water_volume_transport_along_river_channel", "indicative_error_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "institution", "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_salinity_and_sea_water_density", "integral_wrt_depth_of_sea_water_practical_salinity", "integral_wrt_depth_of_sea_water_temperature", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "integral_wrt_height_of_product_of_eastward_wind_and_specific_humidity", "integral_wrt_height_of_product_of_northward_wind_and_specific_humidity", "integral_wrt_time_of_air_temperature_deficit", "integral_wrt_time_of_air_temperature_excess", "integral_wrt_time_of_mole_stomatal_uptake_of_ozone", "integral_wrt_time_of_radioactivity_concentration_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_104Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_110mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_11C_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_136Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_139Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_13N_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_145Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_150Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_153Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_154Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_157Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_158Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_15O_in_air", "integral_wrt_time_of_radioactivity_concentration_of_160Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_161Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162mTb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_163Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_165Dy_in_air", "integral_wrt_time_of_radioactivity_concentration_of_18F_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Hg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207mPb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_208Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_220Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_224Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234mPa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m1Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m2Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244mAm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_246Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_247Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_248Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_24Na_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_251Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_252Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254mEs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_255Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_3H_in_air", "integral_wrt_time_of_radioactivity_concentration_of_41Ar_in_air", "integral_wrt_time_of_radioactivity_concentration_of_54Mn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_58Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_60Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Zn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_73Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_75Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77mGe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_79Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86mRb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_96Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_98Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Tc_in_air", "integral_wrt_time_of_surface_downward_eastward_stress", "integral_wrt_time_of_surface_downward_latent_heat_flux", "integral_wrt_time_of_surface_downward_northward_stress", "integral_wrt_time_of_surface_downward_sensible_heat_flux", "integral_wrt_time_of_surface_downwelling_longwave_flux_in_air", "integral_wrt_time_of_surface_downwelling_shortwave_flux_in_air", "integral_wrt_time_of_surface_net_downward_longwave_flux", "integral_wrt_time_of_surface_net_downward_shortwave_flux", "integral_wrt_time_of_toa_net_downward_shortwave_flux", "integral_wrt_time_of_toa_outgoing_longwave_flux", "iron_growth_limitation_of_calcareous_phytoplankton", "iron_growth_limitation_of_diatoms", "iron_growth_limitation_of_diazotrophic_phytoplankton", "iron_growth_limitation_of_miscellaneous_phytoplankton", "iron_growth_limitation_of_picophytoplankton", "isccp_cloud_area_fraction", "isotope_ratio_of_17O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotope_ratio_of_18O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotropic_longwave_radiance_in_air", "isotropic_radiance_per_unit_wavelength_in_air", "isotropic_shortwave_radiance_in_air", "kinetic_energy_content_of_atmosphere_layer", "kinetic_energy_dissipation_in_atmosphere_boundary_layer", "lagrangian_tendency_of_air_pressure", "lagrangian_tendency_of_atmosphere_sigma_coordinate", "land_area_fraction", "land_binary_mask", "land_cover_lccs", "land_ice_area_fraction", "land_ice_basal_drag", "land_ice_basal_melt_rate", "land_ice_basal_specific_mass_balance_flux", "land_ice_basal_temperature", "land_ice_basal_upward_velocity", "land_ice_basal_x_velocity", "land_ice_basal_y_velocity", "land_ice_calving_rate", "land_ice_lwe_basal_melt_rate", "land_ice_lwe_calving_rate", "land_ice_lwe_surface_specific_mass_balance_rate", "land_ice_mass", "land_ice_mass_not_displacing_sea_water", "land_ice_runoff_flux", "land_ice_sigma_coordinate", "land_ice_specific_mass_flux_due_to_calving", "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", "land_ice_surface_melt_flux", "land_ice_surface_specific_mass_balance_flux", "land_ice_surface_specific_mass_balance_rate", "land_ice_surface_upward_velocity", "land_ice_surface_x_velocity", "land_ice_surface_y_velocity", "land_ice_temperature", "land_ice_thickness", "land_ice_vertical_mean_x_velocity", "land_ice_vertical_mean_y_velocity", "land_ice_x_velocity", "land_ice_y_velocity", "land_surface_liquid_water_amount", "land_water_amount", "latitude", "leaf_area_index", "leaf_mass_content_of_carbon", "leaf_mass_content_of_nitrogen", "lightning_potential_index", "lightning_radiant_energy", "liquid_water_cloud_area_fraction", "liquid_water_cloud_area_fraction_in_atmosphere_layer", "liquid_water_content_of_permafrost_layer", "liquid_water_content_of_soil_layer", "liquid_water_content_of_surface_snow", "liquid_water_mass_flux_into_soil_due_to_surface_snow_melt", "litter_mass_content_of_13C", "litter_mass_content_of_14C", "litter_mass_content_of_carbon", "litter_mass_content_of_nitrogen", "location_test_quality_flag", "log10_size_interval_based_number_size_distribution_of_cloud_condensation_nuclei_at_stp_in_air", "longitude", "low_type_cloud_area_fraction", "lwe_convective_precipitation_rate", "lwe_convective_snowfall_rate", "lwe_precipitation_rate", "lwe_snowfall_rate", "lwe_stratiform_precipitation_rate", "lwe_stratiform_snowfall_rate", "lwe_thickness_of_atmosphere_mass_content_of_water_vapor", "lwe_thickness_of_canopy_water_amount", "lwe_thickness_of_convective_precipitation_amount", "lwe_thickness_of_convective_snowfall_amount", "lwe_thickness_of_frozen_water_content_of_soil_layer", "lwe_thickness_of_moisture_content_of_soil_layer", "lwe_thickness_of_precipitation_amount", "lwe_thickness_of_snowfall_amount", "lwe_thickness_of_soil_moisture_content", "lwe_thickness_of_stratiform_precipitation_amount", "lwe_thickness_of_stratiform_snowfall_amount", "lwe_thickness_of_surface_snow_amount", "lwe_thickness_of_water_evaporation_amount", "lwe_water_evaporation_rate", "magnitude_of_air_velocity_relative_to_sea_water", "magnitude_of_derivative_of_position_wrt_model_level_number", "magnitude_of_derivative_of_position_wrt_x_coordinate_index", "magnitude_of_derivative_of_position_wrt_y_coordinate_index", "magnitude_of_heat_flux_in_sea_water_due_to_advection", "magnitude_of_sea_ice_displacement", "magnitude_of_surface_downward_stress", "mass_concentration_of_19_butanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_19_hexanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_acetic_acid_in_air", "mass_concentration_of_aceto_nitrile_in_air", "mass_concentration_of_adenosine_triphosphate_in_sea_water", "mass_concentration_of_alkanes_in_air", "mass_concentration_of_alkenes_in_air", "mass_concentration_of_alpha_carotene_in_sea_water", "mass_concentration_of_alpha_hexachlorocyclohexane_in_air", "mass_concentration_of_alpha_pinene_in_air", "mass_concentration_of_ammonia_in_air", "mass_concentration_of_ammonium_dry_aerosol_particles_in_air", "mass_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_aromatic_compounds_in_air", "mass_concentration_of_atomic_bromine_in_air", "mass_concentration_of_atomic_chlorine_in_air", "mass_concentration_of_atomic_nitrogen_in_air", "mass_concentration_of_benzene_in_air", "mass_concentration_of_beta_carotene_in_sea_water", "mass_concentration_of_beta_pinene_in_air", "mass_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_biomass_burning_dry_aerosol_particles_in_air", "mass_concentration_of_bromine_chloride_in_air", "mass_concentration_of_bromine_monoxide_in_air", "mass_concentration_of_bromine_nitrate_in_air", "mass_concentration_of_brox_expressed_as_bromine_in_air", "mass_concentration_of_butane_in_air", "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_carbon_dioxide_in_air", "mass_concentration_of_carbon_monoxide_in_air", "mass_concentration_of_carbon_tetrachloride_in_air", "mass_concentration_of_carotene_in_sea_water", "mass_concentration_of_cfc113a_in_air", "mass_concentration_of_cfc113_in_air", "mass_concentration_of_cfc114_in_air", "mass_concentration_of_cfc115_in_air", "mass_concentration_of_cfc11_in_air", "mass_concentration_of_cfc12_in_air", "mass_concentration_of_chlorine_dioxide_in_air", "mass_concentration_of_chlorine_monoxide_in_air", "mass_concentration_of_chlorine_nitrate_in_air", "mass_concentration_of_chlorophyll_a_in_sea_water", "mass_concentration_of_chlorophyll_b_in_sea_water", "mass_concentration_of_chlorophyll_c1_and_chlorophyll_c2_in_sea_water", "mass_concentration_of_chlorophyll_c3_in_sea_water", "mass_concentration_of_chlorophyll_c_in_sea_water", "mass_concentration_of_chlorophyllide_a_in_sea_water", "mass_concentration_of_chlorophyll_in_sea_water", "mass_concentration_of_cloud_liquid_water_in_air", "mass_concentration_of_clox_expressed_as_chlorine_in_air", "mass_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "mass_concentration_of_condensed_water_in_soil", "mass_concentration_of_diadinoxanthin_in_sea_water", "mass_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_dichlorine_peroxide_in_air", "mass_concentration_of_dimethyl_sulfide_in_air", "mass_concentration_of_dinitrogen_pentoxide_in_air", "mass_concentration_of_divinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_drizzle_in_air", "mass_concentration_of_dust_dry_aerosol_particles_in_air", "mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_concentration_of_ethane_in_air", "mass_concentration_of_ethanol_in_air", "mass_concentration_of_ethene_in_air", "mass_concentration_of_ethyne_in_air", "mass_concentration_of_flagellates_expressed_as_carbon_in_sea_water", "mass_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_formaldehyde_in_air", "mass_concentration_of_formic_acid_in_air", "mass_concentration_of_fucoxanthin_in_sea_water", "mass_concentration_of_gaseous_divalent_mercury_in_air", "mass_concentration_of_gaseous_elemental_mercury_in_air", "mass_concentration_of_halon1202_in_air", "mass_concentration_of_halon1211_in_air", "mass_concentration_of_halon1301_in_air", "mass_concentration_of_halon2402_in_air", "mass_concentration_of_hcc140a_in_air", "mass_concentration_of_hcfc141b_in_air", "mass_concentration_of_hcfc142b_in_air", "mass_concentration_of_hcfc22_in_air", "mass_concentration_of_hexachlorobiphenyl_in_air", "mass_concentration_of_hox_expressed_as_hydrogen_in_air", "mass_concentration_of_hydrogen_bromide_in_air", "mass_concentration_of_hydrogen_chloride_in_air", "mass_concentration_of_hydrogen_cyanide_in_air", "mass_concentration_of_hydrogen_peroxide_in_air", "mass_concentration_of_hydroperoxyl_radical_in_air", "mass_concentration_of_hydroxyl_radical_in_air", "mass_concentration_of_hypobromous_acid_in_air", "mass_concentration_of_hypochlorous_acid_in_air", "mass_concentration_of_inorganic_bromine_in_air", "mass_concentration_of_inorganic_chlorine_in_air", "mass_concentration_of_inorganic_nitrogen_in_sea_water", "mass_concentration_of_isoprene_in_air", "mass_concentration_of_limonene_in_air", "mass_concentration_of_liquid_water_in_air", "mass_concentration_of_lutein_in_sea_water", "mass_concentration_of_mercury_dry_aerosol_particles_in_air", "mass_concentration_of_methane_in_air", "mass_concentration_of_methanol_in_air", "mass_concentration_of_methyl_bromide_in_air", "mass_concentration_of_methyl_chloride_in_air", "mass_concentration_of_methyl_hydroperoxide_in_air", "mass_concentration_of_methyl_peroxy_radical_in_air", "mass_concentration_of_microphytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_molecular_hydrogen_in_air", "mass_concentration_of_monovinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_nanophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_nitrate_dry_aerosol_particles_in_air", "mass_concentration_of_nitrate_radical_in_air", "mass_concentration_of_nitric_acid_in_air", "mass_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_concentration_of_nitrogen_dioxide_in_air", "mass_concentration_of_nitrogen_monoxide_in_air", "mass_concentration_of_nitrous_acid_in_air", "mass_concentration_of_nitrous_oxide_in_air", "mass_concentration_of_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_nox_expressed_as_nitrogen_in_air", "mass_concentration_of_noy_expressed_as_nitrogen_in_air", "mass_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mass_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_oxygenated_hydrocarbons_in_air", "mass_concentration_of_oxygen_in_sea_water", "mass_concentration_of_ozone_in_air", "mass_concentration_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_peridinin_in_sea_water", "mass_concentration_of_peroxyacetyl_nitrate_in_air", "mass_concentration_of_peroxynitric_acid_in_air", "mass_concentration_of_peroxy_radicals_in_air", "mass_concentration_of_petroleum_hydrocarbons_in_sea_water", "mass_concentration_of_phaeopigments_in_sea_water", "mass_concentration_of_phosphate_in_sea_water", "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_pm10_ambient_aerosol_particles_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_pm1_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_prasinoxanthin_in_sea_water", "mass_concentration_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_propane_in_air", "mass_concentration_of_propene_in_air", "mass_concentration_of_radon_in_air", "mass_concentration_of_rain_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_silicate_in_sea_water", "mass_concentration_of_sulfate_ambient_aerosol_particles_in_air", "mass_concentration_of_sulfate_dry_aerosol_particles_in_air", "mass_concentration_of_sulfur_dioxide_in_air", "mass_concentration_of_suspended_matter_in_sea_water", "mass_concentration_of_terpenes_in_air", "mass_concentration_of_toluene_in_air", "mass_concentration_of_violaxanthin_in_sea_water", "mass_concentration_of_volcanic_ash_in_air", "mass_concentration_of_water_in_ambient_aerosol_particles_in_air", "mass_concentration_of_water_vapor_in_air", "mass_concentration_of_xylene_in_air", "mass_concentration_of_zeaxanthin_in_sea_water", "mass_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mass_content_of_13C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_14C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_cloud_condensed_water_in_atmosphere_layer", "mass_content_of_cloud_ice_in_atmosphere_layer", "mass_content_of_cloud_liquid_water_in_atmosphere_layer", "mass_content_of_nitrogen_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_water_in_atmosphere_layer", "mass_content_of_water_in_soil", "mass_content_of_water_in_soil_layer", "mass_content_of_water_in_soil_layer_defined_by_root_depth", "mass_content_of_water_vapor_containing_17O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_18O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_single_2H_in_atmosphere_layer", "mass_content_of_water_vapor_in_atmosphere_layer", "mass_flux_of_carbon_into_forestry_and_agricultural_products_due_to_crop_harvesting", "mass_flux_of_carbon_into_litter_from_vegetation", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence", "mass_flux_of_carbon_into_sea_water_from_rivers", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_senescence", "mass_flux_of_carbon_out_of_soil_due_to_leaching_and_runoff", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_into_sea_from_rivers", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_litter_and_soil_due_to_immobilisation_and_remineralization", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil_due_to_leaching_and_runoff", "mass_fraction_of_acetic_acid_in_air", "mass_fraction_of_aceto_nitrile_in_air", "mass_fraction_of_alkanes_in_air", "mass_fraction_of_alkenes_in_air", "mass_fraction_of_alpha_hexachlorocyclohexane_in_air", "mass_fraction_of_alpha_pinene_in_air", "mass_fraction_of_ammonia_in_air", "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_aromatic_compounds_in_air", "mass_fraction_of_atomic_bromine_in_air", "mass_fraction_of_atomic_chlorine_in_air", "mass_fraction_of_atomic_nitrogen_in_air", "mass_fraction_of_benzene_in_air", "mass_fraction_of_beta_pinene_in_air", "mass_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_bromine_chloride_in_air", "mass_fraction_of_bromine_monoxide_in_air", "mass_fraction_of_bromine_nitrate_in_air", "mass_fraction_of_brox_expressed_as_bromine_in_air", "mass_fraction_of_butane_in_air", "mass_fraction_of_carbon_dioxide_in_air", "mass_fraction_of_carbon_dioxide_tracer_in_air", "mass_fraction_of_carbon_monoxide_in_air", "mass_fraction_of_carbon_tetrachloride_in_air", "mass_fraction_of_cfc113a_in_air", "mass_fraction_of_cfc113_in_air", "mass_fraction_of_cfc114_in_air", "mass_fraction_of_cfc115_in_air", "mass_fraction_of_cfc11_in_air", "mass_fraction_of_cfc12_in_air", "mass_fraction_of_chlorine_dioxide_in_air", "mass_fraction_of_chlorine_monoxide_in_air", "mass_fraction_of_chlorine_nitrate_in_air", "mass_fraction_of_chlorophyll_a_in_sea_water", "mass_fraction_of_clay_in_soil", "mass_fraction_of_cloud_condensed_water_in_air", "mass_fraction_of_cloud_ice_in_air", "mass_fraction_of_cloud_liquid_water_in_air", "mass_fraction_of_clox_expressed_as_chlorine_in_air", "mass_fraction_of_convective_cloud_condensed_water_in_air", "mass_fraction_of_convective_cloud_ice_in_air", "mass_fraction_of_convective_cloud_liquid_water_in_air", "mass_fraction_of_dichlorine_peroxide_in_air", "mass_fraction_of_dimethyl_sulfide_in_air", "mass_fraction_of_dinitrogen_pentoxide_in_air", "mass_fraction_of_dust_dry_aerosol_particles_in_air", "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_ethane_in_air", "mass_fraction_of_ethanol_in_air", "mass_fraction_of_ethene_in_air", "mass_fraction_of_ethyne_in_air", "mass_fraction_of_formaldehyde_in_air", "mass_fraction_of_formic_acid_in_air", "mass_fraction_of_frozen_water_in_soil_moisture", "mass_fraction_of_gaseous_divalent_mercury_in_air", "mass_fraction_of_gaseous_elemental_mercury_in_air", "mass_fraction_of_graupel_and_hail_in_air", "mass_fraction_of_graupel_in_air", "mass_fraction_of_gravel_in_soil", "mass_fraction_of_hail_in_air", "mass_fraction_of_halon1202_in_air", "mass_fraction_of_halon1211_in_air", "mass_fraction_of_halon1301_in_air", "mass_fraction_of_halon2402_in_air", "mass_fraction_of_hcc140a_in_air", "mass_fraction_of_hcfc141b_in_air", "mass_fraction_of_hcfc142b_in_air", "mass_fraction_of_hcfc22_in_air", "mass_fraction_of_hexachlorobiphenyl_in_air", "mass_fraction_of_hox_expressed_as_hydrogen_in_air", "mass_fraction_of_hydrogen_bromide_in_air", "mass_fraction_of_hydrogen_chloride_in_air", "mass_fraction_of_hydrogen_cyanide_in_air", "mass_fraction_of_hydrogen_peroxide_in_air", "mass_fraction_of_hydroperoxyl_radical_in_air", "mass_fraction_of_hydroxyl_radical_in_air", "mass_fraction_of_hypobromous_acid_in_air", "mass_fraction_of_hypochlorous_acid_in_air", "mass_fraction_of_inorganic_bromine_in_air", "mass_fraction_of_inorganic_chlorine_in_air", "mass_fraction_of_isoprene_in_air", "mass_fraction_of_limonene_in_air", "mass_fraction_of_liquid_precipitation_in_air", "mass_fraction_of_mercury_dry_aerosol_particles_in_air", "mass_fraction_of_methane_in_air", "mass_fraction_of_methanesulfonic_acid_dry_aerosol_particles_in_air", "mass_fraction_of_methanol_in_air", "mass_fraction_of_methyl_bromide_in_air", "mass_fraction_of_methyl_chloride_in_air", "mass_fraction_of_methyl_hydroperoxide_in_air", "mass_fraction_of_methyl_peroxy_radical_in_air", "mass_fraction_of_molecular_hydrogen_in_air", "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_nitrate_radical_in_air", "mass_fraction_of_nitric_acid_in_air", "mass_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_fraction_of_nitrogen_dioxide_in_air", "mass_fraction_of_nitrogen_monoxide_in_air", "mass_fraction_of_nitrous_acid_in_air", "mass_fraction_of_nitrous_oxide_in_air", "mass_fraction_of_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_nox_expressed_as_nitrogen_in_air", "mass_fraction_of_noy_expressed_as_nitrogen_in_air", "mass_fraction_of_organic_matter_in_soil", "mass_fraction_of_oxygenated_hydrocarbons_in_air", "mass_fraction_of_ozone_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_peroxyacetyl_nitrate_in_air", "mass_fraction_of_peroxynitric_acid_in_air", "mass_fraction_of_peroxy_radicals_in_air", "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_pm10_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_pm1_ambient_aerosol_particles_in_air", "mass_fraction_of_pm1_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_precipitation_in_air", "mass_fraction_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_propane_in_air", "mass_fraction_of_propene_in_air", "mass_fraction_of_radon_in_air", "mass_fraction_of_rainfall_falling_onto_surface_snow", "mass_fraction_of_sand_in_soil", "mass_fraction_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_shallow_convective_cloud_liquid_water_in_air", "mass_fraction_of_silt_in_soil", "mass_fraction_of_snow_in_air", "mass_fraction_of_solid_precipitation_falling_onto_surface_snow", "mass_fraction_of_stratiform_cloud_ice_in_air", "mass_fraction_of_stratiform_cloud_liquid_water_in_air", "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_sulfur_dioxide_in_air", "mass_fraction_of_sulfuric_acid_in_air", "mass_fraction_of_terpenes_in_air", "mass_fraction_of_toluene_in_air", "mass_fraction_of_unfrozen_water_in_soil_moisture", "mass_fraction_of_water_in_air", "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_xylene_in_air", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_strain_rate", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_stress", "medium_soil_pool_mass_content_of_carbon", "medium_type_cloud_area_fraction", "minimum_depth_of_aragonite_undersaturation_in_sea_water", "minimum_depth_of_calcite_undersaturation_in_sea_water", "minus_one_times_surface_upwelling_longwave_flux_in_air", "minus_one_times_surface_upwelling_shortwave_flux_in_air", "minus_one_times_toa_outgoing_shortwave_flux", "minus_one_times_water_flux_into_sea_water_from_rivers", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "minus_tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "minus_tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "miscellaneous_living_matter_mass_content_of_carbon", "miscellaneous_living_matter_mass_content_of_nitrogen", "model_level_number", "model_level_number_at_base_of_ocean_mixed_layer_defined_by_sigma_theta", "model_level_number_at_convective_cloud_base", "model_level_number_at_convective_cloud_top", "model_level_number_at_sea_floor", "model_level_number_at_top_of_atmosphere_boundary_layer", "moisture_content_of_soil_layer_at_field_capacity", "mole_concentration_of_acetic_acid_in_air", "mole_concentration_of_aceto_nitrile_in_air", "mole_concentration_of_adenosine_triphosphate_in_sea_water", "mole_concentration_of_alpha_hexachlorocyclohexane_in_air", "mole_concentration_of_alpha_pinene_in_air", "mole_concentration_of_ammonia_in_air", "mole_concentration_of_ammonium_in_sea_water", "mole_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_atomic_bromine_in_air", "mole_concentration_of_atomic_chlorine_in_air", "mole_concentration_of_atomic_nitrogen_in_air", "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", "mole_concentration_of_benzene_in_air", "mole_concentration_of_beta_pinene_in_air", "mole_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mole_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_bromine_chloride_in_air", "mole_concentration_of_bromine_monoxide_in_air", "mole_concentration_of_bromine_nitrate_in_air", "mole_concentration_of_brox_expressed_as_bromine_in_air", "mole_concentration_of_butane_in_air", "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_carbonate_abiotic_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_calcite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_natural_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbon_dioxide_in_air", "mole_concentration_of_carbon_monoxide_in_air", "mole_concentration_of_carbon_tetrachloride_in_air", "mole_concentration_of_cfc113a_in_air", "mole_concentration_of_cfc113_in_air", "mole_concentration_of_cfc114_in_air", "mole_concentration_of_cfc115_in_air", "mole_concentration_of_cfc11_in_air", "mole_concentration_of_cfc11_in_sea_water", "mole_concentration_of_cfc12_in_air", "mole_concentration_of_cfc12_in_sea_water", "mole_concentration_of_chlorine_dioxide_in_air", "mole_concentration_of_chlorine_monoxide_in_air", "mole_concentration_of_chlorine_nitrate_in_air", "mole_concentration_of_clox_expressed_as_chlorine_in_air", "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_dichlorine_peroxide_in_air", "mole_concentration_of_dimethyl_sulfide_in_air", "mole_concentration_of_dimethyl_sulfide_in_sea_water", "mole_concentration_of_dinitrogen_pentoxide_in_air", "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_abiotic_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_natural_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", "mole_concentration_of_dissolved_iron_in_sea_water", "mole_concentration_of_dissolved_molecular_nitrogen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile", "mole_concentration_of_dissolved_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_carbon_in_sea_water", "mole_concentration_of_dissolved_organic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_phosphorus_in_sea_water", "mole_concentration_of_ethane_in_air", "mole_concentration_of_ethanol_in_air", "mole_concentration_of_ethene_in_air", "mole_concentration_of_ethyne_in_air", "mole_concentration_of_formaldehyde_in_air", "mole_concentration_of_formic_acid_in_air", "mole_concentration_of_gaseous_divalent_mercury_in_air", "mole_concentration_of_gaseous_elemental_mercury_in_air", "mole_concentration_of_halon1202_in_air", "mole_concentration_of_halon1211_in_air", "mole_concentration_of_halon1301_in_air", "mole_concentration_of_halon2402_in_air", "mole_concentration_of_hcc140a_in_air", "mole_concentration_of_hcfc141b_in_air", "mole_concentration_of_hcfc142b_in_air", "mole_concentration_of_hcfc22_in_air", "mole_concentration_of_hexachlorobiphenyl_in_air", "mole_concentration_of_hox_expressed_as_hydrogen_in_air", "mole_concentration_of_hydrogen_bromide_in_air", "mole_concentration_of_hydrogen_chloride_in_air", "mole_concentration_of_hydrogen_cyanide_in_air", "mole_concentration_of_hydrogen_peroxide_in_air", "mole_concentration_of_hydrogen_sulfide_in_sea_water", "mole_concentration_of_hydroperoxyl_radical_in_air", "mole_concentration_of_hydroxyl_radical_in_air", "mole_concentration_of_hypobromous_acid_in_air", "mole_concentration_of_hypochlorous_acid_in_air", "mole_concentration_of_inorganic_bromine_in_air", "mole_concentration_of_inorganic_chlorine_in_air", "mole_concentration_of_isoprene_in_air", "mole_concentration_of_limonene_in_air", "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_methane_in_air", "mole_concentration_of_methanol_in_air", "mole_concentration_of_methyl_bromide_in_air", "mole_concentration_of_methyl_chloride_in_air", "mole_concentration_of_methyl_hydroperoxide_in_air", "mole_concentration_of_methyl_peroxy_radical_in_air", "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_molecular_hydrogen_in_air", "mole_concentration_of_nitrate_and_nitrite_in_sea_water", "mole_concentration_of_nitrate_in_sea_water", "mole_concentration_of_nitrate_radical_in_air", "mole_concentration_of_nitric_acid_in_air", "mole_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_concentration_of_nitrite_in_sea_water", "mole_concentration_of_nitrogen_dioxide_in_air", "mole_concentration_of_nitrogen_monoxide_in_air", "mole_concentration_of_nitrous_acid_in_air", "mole_concentration_of_nitrous_oxide_in_air", "mole_concentration_of_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_nox_expressed_as_nitrogen_in_air", "mole_concentration_of_noy_expressed_as_nitrogen_in_air", "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water", "mole_concentration_of_ozone_in_air", "mole_concentration_of_particulate_matter_expressed_as_carbon_in_sea_water", "mole_concentration_of_particulate_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_nitrogen_in_sea_water", "mole_concentration_of_peroxyacetyl_nitrate_in_air", "mole_concentration_of_peroxynitric_acid_in_air", "mole_concentration_of_phosphate_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water", "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_propane_in_air", "mole_concentration_of_propene_in_air", "mole_concentration_of_radon_in_air", "mole_concentration_of_silicate_in_sea_water", "mole_concentration_of_sulfur_dioxide_in_air", "mole_concentration_of_sulfur_hexafluoride_in_sea_water", "mole_concentration_of_toluene_in_air", "mole_concentration_of_water_vapor_in_air", "mole_concentration_of_xylene_in_air", "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water", "mole_content_of_carbon_monoxide_in_atmosphere_layer", "mole_content_of_methane_in_atmosphere_layer", "mole_content_of_nitrogen_dioxide_in_atmosphere_layer", "mole_content_of_ozone_in_atmosphere_layer", "mole_fraction_of_acetaldehyde_in_air", "mole_fraction_of_acetic_acid_in_air", "mole_fraction_of_acetone_in_air", "mole_fraction_of_aceto_nitrile_in_air", "mole_fraction_of_aldehydes_in_air", "mole_fraction_of_alkanes_in_air", "mole_fraction_of_alkenes_in_air", "mole_fraction_of_alpha_hexachlorocyclohexane_in_air", "mole_fraction_of_alpha_pinene_in_air", "mole_fraction_of_ammonia_in_air", "mole_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_artificial_tracer_with_fixed_lifetime_in_air", "mole_fraction_of_atomic_bromine_in_air", "mole_fraction_of_atomic_chlorine_in_air", "mole_fraction_of_atomic_nitrogen_in_air", "mole_fraction_of_benzene_in_air", "mole_fraction_of_beta_pinene_in_air", "mole_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_bromine_chloride_in_air", "mole_fraction_of_bromine_monoxide_in_air", "mole_fraction_of_bromine_nitrate_in_air", "mole_fraction_of_brox_expressed_as_bromine_in_air", "mole_fraction_of_butane_in_air", "mole_fraction_of_carbon_dioxide_in_air", "mole_fraction_of_carbon_monoxide_in_air", "mole_fraction_of_carbon_tetrachloride_in_air", "mole_fraction_of_carbon_tetrafluoride_in_air", "mole_fraction_of_carbonyl_fluoride_in_air", "mole_fraction_of_carbonyl_sulfide_in_air", "mole_fraction_of_cfc113a_in_air", "mole_fraction_of_cfc113_in_air", "mole_fraction_of_cfc114_in_air", "mole_fraction_of_cfc115_in_air", "mole_fraction_of_cfc11_in_air", "mole_fraction_of_cfc12_in_air", "mole_fraction_of_chlorine_dioxide_in_air", "mole_fraction_of_chlorine_monoxide_in_air", "mole_fraction_of_chlorine_nitrate_in_air", "mole_fraction_of_chloroform_in_air", "mole_fraction_of_clox_expressed_as_chlorine_in_air", "mole_fraction_of_dichlorine_in_air", "mole_fraction_of_dichlorine_peroxide_in_air", "mole_fraction_of_dichloromethane_in_air", "mole_fraction_of_dimethyl_sulfide_in_air", "mole_fraction_of_dinitrogen_pentoxide_in_air", "mole_fraction_of_ethane_in_air", "mole_fraction_of_ethanol_in_air", "mole_fraction_of_ethene_in_air", "mole_fraction_of_ethyne_in_air", "mole_fraction_of_formaldehyde_in_air", "mole_fraction_of_formic_acid_in_air", "mole_fraction_of_gaseous_divalent_mercury_in_air", "mole_fraction_of_gaseous_elemental_mercury_in_air", "mole_fraction_of_glyoxal_in_air", "mole_fraction_of_halon1202_in_air", "mole_fraction_of_halon1211_in_air", "mole_fraction_of_halon1301_in_air", "mole_fraction_of_halon2402_in_air", "mole_fraction_of_hcc140a_in_air", "mole_fraction_of_hcfc124_in_air", "mole_fraction_of_hcfc141b_in_air", "mole_fraction_of_hcfc142b_in_air", "mole_fraction_of_hcfc22_in_air", "mole_fraction_of_hexachlorobiphenyl_in_air", "mole_fraction_of_hfc125_in_air", "mole_fraction_of_hfc134a_in_air", "mole_fraction_of_hfc143a_in_air", "mole_fraction_of_hfc152a_in_air", "mole_fraction_of_hfc227ea_in_air", "mole_fraction_of_hfc236fa_in_air", "mole_fraction_of_hfc23_in_air", "mole_fraction_of_hfc245fa_in_air", "mole_fraction_of_hfc32_in_air", "mole_fraction_of_hfc365mfc_in_air", "mole_fraction_of_hfc4310mee_in_air", "mole_fraction_of_hox_expressed_as_hydrogen_in_air", "mole_fraction_of_hydrogen_bromide_in_air", "mole_fraction_of_hydrogen_chloride_in_air", "mole_fraction_of_hydrogen_cyanide_in_air", "mole_fraction_of_hydrogen_peroxide_in_air", "mole_fraction_of_hydrogen_sulfide_in_air", "mole_fraction_of_hydroperoxyl_radical_in_air", "mole_fraction_of_hydroxyl_radical_in_air", "mole_fraction_of_hypobromous_acid_in_air", "mole_fraction_of_hypochlorous_acid_in_air", "mole_fraction_of_inorganic_bromine_in_air", "mole_fraction_of_inorganic_chlorine_in_air", "mole_fraction_of_isoprene_in_air", "mole_fraction_of_limonene_in_air", "mole_fraction_of_methane_in_air", "mole_fraction_of_methanol_in_air", "mole_fraction_of_methyl_bromide_in_air", "mole_fraction_of_methyl_chloride_in_air", "mole_fraction_of_methylglyoxal_in_air", "mole_fraction_of_methyl_hydroperoxide_in_air", "mole_fraction_of_methyl_peroxy_radical_in_air", "mole_fraction_of_molecular_hydrogen_in_air", "mole_fraction_of_nitrate_radical_in_air", "mole_fraction_of_nitric_acid_in_air", "mole_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_fraction_of_nitrogen_dioxide_in_air", "mole_fraction_of_nitrogen_monoxide_in_air", "mole_fraction_of_nitrogen_trifluoride_in_air", "mole_fraction_of_nitrous_acid_in_air", "mole_fraction_of_nitrous_oxide_in_air", "mole_fraction_of_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_nox_expressed_as_nitrogen_in_air", "mole_fraction_of_noy_expressed_as_nitrogen_in_air", "mole_fraction_of_organic_nitrates_in_air", "mole_fraction_of_ox_in_air", "mole_fraction_of_ozone_in_air", "mole_fraction_of_perchloroethene_in_air", "mole_fraction_of_peroxyacetyl_nitrate_in_air", "mole_fraction_of_peroxynitric_acid_in_air", "mole_fraction_of_pfc116_in_air", "mole_fraction_of_pfc218_in_air", "mole_fraction_of_pfc318_in_air", "mole_fraction_of_propane_in_air", "mole_fraction_of_propene_in_air", "mole_fraction_of_radon_in_air", "mole_fraction_of_sulfur_dioxide_in_air", "mole_fraction_of_sulfur_hexafluoride_in_air", "mole_fraction_of_sulfuryl_fluoride_in_air", "mole_fraction_of_toluene_in_air", "mole_fraction_of_water_vapor_in_air", "mole_fraction_of_xylene_in_air", "mole_ratio_of_nitrate_to_phosphate_in_sea_water", "moles_of_cfc11_per_unit_mass_in_sea_water", "moles_of_dissolved_inorganic_carbon_per_unit_mass_in_sea_water", "moles_of_nitrate_and_nitrite_per_unit_mass_in_sea_water", "moles_of_nitrate_per_unit_mass_in_sea_water", "moles_of_nitrite_per_unit_mass_in_sea_water", "moles_of_oxygen_per_unit_mass_in_sea_water", "moles_of_phosphate_per_unit_mass_in_sea_water", "moles_of_silicate_per_unit_mass_in_sea_water", "multi_variate_test_quality_flag", "neighbor_test_quality_flag", "net_downward_longwave_flux_in_air", "net_downward_longwave_flux_in_air_assuming_clear_sky", "net_downward_radiative_flux_at_top_of_atmosphere_model", "net_downward_shortwave_flux_at_sea_water_surface", "net_downward_shortwave_flux_in_air", "net_downward_shortwave_flux_in_air_assuming_clear_sky", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_calcareous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diatoms", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diazotrophic_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_miscellaneous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_picophytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_due_to_nitrate_utilization", "net_primary_production_of_biomass_expressed_as_carbon_per_unit_volume_in_sea_water", "net_primary_productivity_of_biomass_expressed_as_carbon", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_leaves", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_miscellaneous_living_matter", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_roots", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_wood", "net_rate_of_absorption_of_longwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_ocean_layer", "net_upward_longwave_flux_in_air", "net_upward_longwave_flux_in_air_assuming_clear_sky", "net_upward_shortwave_flux_in_air", "net_upward_shortwave_flux_in_air_assuming_clear_sky", "nitrogen_growth_limitation_of_calcareous_phytoplankton", "nitrogen_growth_limitation_of_diatoms", "nitrogen_growth_limitation_of_diazotrophic_phytoplankton", "nitrogen_growth_limitation_of_miscellaneous_phytoplankton", "nitrogen_growth_limitation_of_picophytoplankton", "nitrogen_mass_content_of_forestry_and_agricultural_products", "nitrogen_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "nitrogen_mass_flux_into_litter_from_vegetation", "nitrogen_mass_flux_into_soil_from_litter", "nitrogen_mass_flux_into_soil_from_vegetation_excluding_litter", "non_tidal_elevation_of_sea_surface_height", "normalized_difference_vegetation_index", "northward_air_velocity_relative_to_sea_water", "northward_atmosphere_dry_static_energy_transport_across_unit_distance", "northward_atmosphere_heat_transport", "northward_atmosphere_water_transport_across_unit_distance", "northward_atmosphere_water_vapor_transport_across_unit_distance", "northward_derivative_of_eastward_sea_ice_velocity", "northward_derivative_of_eastward_wind", "northward_derivative_of_northward_wind", "northward_derivative_of_wind_from_direction", "northward_eliassen_palm_flux_in_air", "northward_flood_water_velocity", "northward_friction_velocity_in_air", "northward_heat_flux_in_air_due_to_eddy_advection", "northward_land_ice_velocity", "northward_mass_flux_of_air", "northward_momentum_flux_correction", "northward_northward_derivative_of_geopotential", "northward_ocean_freshwater_transport", "northward_ocean_freshwater_transport_due_to_diffusion", "northward_ocean_freshwater_transport_due_to_gyre", "northward_ocean_freshwater_transport_due_to_overturning", "northward_ocean_freshwater_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport", "northward_ocean_heat_transport_due_to_diffusion", "northward_ocean_heat_transport_due_to_gyre", "northward_ocean_heat_transport_due_to_overturning", "northward_ocean_heat_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_diffusion", "northward_ocean_heat_transport_due_to_parameterized_submesoscale_eddy_advection", "northward_ocean_salt_transport", "northward_ocean_salt_transport_due_to_diffusion", "northward_ocean_salt_transport_due_to_gyre", "northward_ocean_salt_transport_due_to_overturning", "northward_ocean_salt_transport_due_to_parameterized_eddy_advection", "northward_sea_ice_displacement", "northward_sea_ice_velocity", "northward_sea_water_velocity", "northward_sea_water_velocity_assuming_no_tide", "northward_sea_water_velocity_at_sea_floor", "northward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "northward_sea_water_velocity_due_to_tides", "northward_transformed_eulerian_mean_air_velocity", "northward_upward_derivative_of_geopotential", "northward_water_vapor_flux_in_air", "northward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "northward_westward_derivative_of_geopotential", "northward_wind", "northward_wind_shear", "nudging_increment_in_mass_content_of_water_in_soil", "nudging_increment_in_snow_and_ice_amount_on_land", "number_concentration_of_aerosol_particles_at_stp_in_air", "number_concentration_of_ambient_aerosol_particles_in_air", "number_concentration_of_biological_taxon_in_sea_water", "number_concentration_of_cloud_condensation_nuclei_at_stp_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air_at_liquid_water_cloud_top", "number_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "number_concentration_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "number_concentration_of_ice_crystals_in_air", "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top", "number_concentration_of_nucleation_mode_ambient_aerosol_particles_in_air", "number_concentration_of_ozone_molecules_in_air", "number_concentration_of_pm10_aerosol_particles_in_air", "number_concentration_of_pm2p5_aerosol_particles_in_air", "number_concentration_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "number_of_days_with_air_temperature_above_threshold", "number_of_days_with_air_temperature_below_threshold", "number_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "number_of_days_with_surface_temperature_below_threshold", "number_of_days_with_wind_speed_above_threshold", "number_of_icebergs_per_unit_area", "number_of_missing_observations", "number_of_observations", "ocean_barotropic_mass_streamfunction", "ocean_barotropic_streamfunction", "ocean_double_sigma_coordinate", "ocean_heat_x_transport", "ocean_heat_x_transport_due_to_diffusion", "ocean_heat_x_transport_due_to_parameterized_eddy_advection", "ocean_heat_y_transport", "ocean_heat_y_transport_due_to_diffusion", "ocean_heat_y_transport_due_to_parameterized_eddy_advection", "ocean_isopycnal_layer_thickness_diffusivity", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_vertical_friction", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_xy_friction", "ocean_mass_content_of_dissolved_inorganic_carbon", "ocean_mass_content_of_dissolved_organic_carbon", "ocean_mass_content_of_particulate_organic_matter_expressed_as_carbon", "ocean_mass_x_transport", "ocean_mass_x_transport_due_to_advection", "ocean_mass_x_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_mass_y_transport", "ocean_mass_y_transport_due_to_advection", "ocean_mass_y_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "ocean_meridional_overturning_streamfunction", "ocean_mixed_layer_thickness", "ocean_mixed_layer_thickness_defined_by_mixing_scheme", "ocean_mixed_layer_thickness_defined_by_sigma_t", "ocean_mixed_layer_thickness_defined_by_sigma_theta", "ocean_mixed_layer_thickness_defined_by_temperature", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_deficit", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_threshold", "ocean_momentum_xy_biharmonic_diffusivity", "ocean_momentum_xy_laplacian_diffusivity", "ocean_montgomery_potential", "ocean_relative_vorticity", "ocean_rigid_lid_pressure", "ocean_rigid_lid_pressure_expressed_as_sea_surface_height_above_geoid", "ocean_salt_x_transport", "ocean_salt_y_transport", "ocean_s_coordinate", "ocean_s_coordinate_g1", "ocean_s_coordinate_g2", "ocean_sigma_coordinate", "ocean_sigma_z_coordinate", "ocean_tracer_biharmonic_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_epineutral_biharmonic_diffusivity", "ocean_tracer_epineutral_laplacian_diffusivity", "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_xy_biharmonic_diffusivity", "ocean_tracer_xy_laplacian_diffusivity", "ocean_vertical_diffusivity", "ocean_vertical_heat_diffusivity", "ocean_vertical_momentum_diffusivity", "ocean_vertical_momentum_diffusivity_due_to_background", "ocean_vertical_momentum_diffusivity_due_to_convection", "ocean_vertical_momentum_diffusivity_due_to_form_drag", "ocean_vertical_momentum_diffusivity_due_to_tides", "ocean_vertical_salt_diffusivity", "ocean_vertical_tracer_diffusivity", "ocean_vertical_tracer_diffusivity_due_to_background", "ocean_vertical_tracer_diffusivity_due_to_convection", "ocean_vertical_tracer_diffusivity_due_to_tides", "ocean_vertical_tracer_diffusivity_due_to_wind_mixing", "ocean_volume", "ocean_volume_fraction", "ocean_volume_transport_across_line", "ocean_volume_x_transport", "ocean_volume_y_transport", "ocean_y_overturning_mass_streamfunction", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "omnidirectional_photosynthetic_spherical_irradiance_in_sea_water", "omnidirectional_spherical_irradiance_per_unit_wavelength_in_sea_water", "optical_thickness_of_atmosphere_layer_due_to_ambient_aerosol_particles", "original_air_pressure_of_lifted_parcel", "outgoing_water_volume_transport_along_river_channel", "partial_pressure_of_carbon_dioxide_in_sea_water", "partial_pressure_of_methane_in_sea_water", "permafrost_active_layer_thickness", "permafrost_area_fraction", "permafrost_layer_thickness", "phase_of_global_average_sea_level_change", "photolysis_rate_of_molecular_oxygen", "photolysis_rate_of_nitrogen_dioxide", "photolysis_rate_of_ozone", "photolysis_rate_of_ozone_to_1D_oxygen_atom", "planetary_albedo", "platform_azimuth_angle", "platform_course", "platform_heave", "platform_heave_down", "platform_heave_rate", "platform_heave_rate_down", "platform_heave_rate_up", "platform_heave_up", "platform_id", "platform_name", "platform_orientation", "platform_pitch", "platform_pitch_fore_down", "platform_pitch_fore_up", "platform_pitch_rate", "platform_pitch_rate_fore_down", "platform_pitch_rate_fore_up", "platform_roll", "platform_roll_rate", "platform_roll_rate_starboard_down", "platform_roll_rate_starboard_up", "platform_roll_starboard_down", "platform_roll_starboard_up", "platform_speed_wrt_air", "platform_speed_wrt_ground", "platform_speed_wrt_sea_water", "platform_surge", "platform_surge_aft", "platform_surge_fore", "platform_surge_rate", "platform_surge_rate_aft", "platform_surge_rate_fore", "platform_sway", "platform_sway_port", "platform_sway_rate", "platform_sway_rate_port", "platform_sway_rate_starboard", "platform_sway_starboard", "platform_view_angle", "platform_yaw", "platform_yaw_fore_port", "platform_yaw_fore_starboard", "platform_yaw_rate", "platform_yaw_rate_fore_port", "platform_yaw_rate_fore_starboard", "platform_zenith_angle", "potential_energy_content_of_atmosphere_layer", "potential_vorticity_of_atmosphere_layer", "potential_vorticity_of_ocean_layer", "precipitation_amount", "precipitation_flux", "precipitation_flux_containing_17O", "precipitation_flux_containing_18O", "precipitation_flux_containing_single_2H", "precipitation_flux_onto_canopy", "predominant_precipitation_type_at_surface", "pressure_at_effective_cloud_top_defined_by_infrared_radiation", "probability_distribution_of_wind_from_direction_over_time", "product_of_air_temperature_and_specific_humidity", "product_of_eastward_sea_water_velocity_and_salinity", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_eastward_wind_and_air_temperature", "product_of_eastward_wind_and_geopotential_height", "product_of_eastward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_eastward_wind_and_northward_wind", "product_of_eastward_wind_and_specific_humidity", "product_of_eastward_wind_and_upward_air_velocity", "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", "product_of_lagrangian_tendency_of_air_pressure_and_geopotential_height", "product_of_lagrangian_tendency_of_air_pressure_and_specific_humidity", "product_of_northward_sea_water_velocity_and_salinity", "product_of_northward_sea_water_velocity_and_temperature", "product_of_northward_wind_and_air_temperature", "product_of_northward_wind_and_geopotential_height", "product_of_northward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_northward_wind_and_specific_humidity", "product_of_northward_wind_and_upward_air_velocity", "product_of_upward_air_velocity_and_air_temperature", "product_of_upward_air_velocity_and_specific_humidity", "projection_x_angular_coordinate", "projection_x_coordinate", "projection_y_angular_coordinate", "projection_y_coordinate", "proportion_of_acceptable_signal_returns_from_acoustic_instrument_in_sea_water", "quality_flag", "radial_sea_water_velocity_away_from_instrument", "radial_sea_water_velocity_toward_instrument", "radial_velocity_of_scatterers_away_from_instrument", "radial_velocity_of_scatterers_toward_instrument", "radiation_frequency", "radiation_wavelength", "radioactivity_concentration_in_air", "radioactivity_concentration_of_101Mo_in_air", "radioactivity_concentration_of_101Tc_in_air", "radioactivity_concentration_of_102Mo_in_air", "radioactivity_concentration_of_102mTc_in_air", "radioactivity_concentration_of_102Tc_in_air", "radioactivity_concentration_of_103mRh_in_air", "radioactivity_concentration_of_103Ru_in_air", "radioactivity_concentration_of_104Tc_in_air", "radioactivity_concentration_of_105mRh_in_air", "radioactivity_concentration_of_105Rh_in_air", "radioactivity_concentration_of_105Ru_in_air", "radioactivity_concentration_of_106mRh_in_air", "radioactivity_concentration_of_106Rh_in_air", "radioactivity_concentration_of_106Ru_in_air", "radioactivity_concentration_of_107mPd_in_air", "radioactivity_concentration_of_107Pd_in_air", "radioactivity_concentration_of_107Rh_in_air", "radioactivity_concentration_of_109mAg_in_air", "radioactivity_concentration_of_109Pd_in_air", "radioactivity_concentration_of_110mAg_in_air", "radioactivity_concentration_of_111Ag_in_air", "radioactivity_concentration_of_111mAg_in_air", "radioactivity_concentration_of_111mCd_in_air", "radioactivity_concentration_of_111mPd_in_air", "radioactivity_concentration_of_111Pd_in_air", "radioactivity_concentration_of_112Ag_in_air", "radioactivity_concentration_of_112Pd_in_air", "radioactivity_concentration_of_113Ag_in_air", "radioactivity_concentration_of_113Cd_in_air", "radioactivity_concentration_of_113mAg_in_air", "radioactivity_concentration_of_113mCd_in_air", "radioactivity_concentration_of_113mIn_in_air", "radioactivity_concentration_of_115Ag_in_air", "radioactivity_concentration_of_115Cd_in_air", "radioactivity_concentration_of_115In_in_air", "radioactivity_concentration_of_115mAg_in_air", "radioactivity_concentration_of_115mCd_in_air", "radioactivity_concentration_of_115mIn_in_air", "radioactivity_concentration_of_116In_in_air", "radioactivity_concentration_of_116mIn_in_air", "radioactivity_concentration_of_117Cd_in_air", "radioactivity_concentration_of_117In_in_air", "radioactivity_concentration_of_117mCd_in_air", "radioactivity_concentration_of_117mIn_in_air", "radioactivity_concentration_of_117mSn_in_air", "radioactivity_concentration_of_118Cd_in_air", "radioactivity_concentration_of_118In_in_air", "radioactivity_concentration_of_118mIn_in_air", "radioactivity_concentration_of_119In_in_air", "radioactivity_concentration_of_119mIn_in_air", "radioactivity_concentration_of_119mSn_in_air", "radioactivity_concentration_of_11C_in_air", "radioactivity_concentration_of_121mSn_in_air", "radioactivity_concentration_of_121Sn_in_air", "radioactivity_concentration_of_123mSn_in_air", "radioactivity_concentration_of_123Sn_in_air", "radioactivity_concentration_of_124mSb_in_air", "radioactivity_concentration_of_124Sb_in_air", "radioactivity_concentration_of_125mTe_in_air", "radioactivity_concentration_of_125Sb_in_air", "radioactivity_concentration_of_125Sn_in_air", "radioactivity_concentration_of_126mSb_in_air", "radioactivity_concentration_of_126Sb_in_air", "radioactivity_concentration_of_126Sn_in_air", "radioactivity_concentration_of_127mTe_in_air", "radioactivity_concentration_of_127Sb_in_air", "radioactivity_concentration_of_127Sn_in_air", "radioactivity_concentration_of_127Te_in_air", "radioactivity_concentration_of_128mSb_in_air", "radioactivity_concentration_of_128Sb_in_air", "radioactivity_concentration_of_128Sn_in_air", "radioactivity_concentration_of_129I_in_air", "radioactivity_concentration_of_129mTe_in_air", "radioactivity_concentration_of_129mXe_in_air", "radioactivity_concentration_of_129Sb_in_air", "radioactivity_concentration_of_129Te_in_air", "radioactivity_concentration_of_130I_in_air", "radioactivity_concentration_of_130mI_in_air", "radioactivity_concentration_of_130mSb_in_air", "radioactivity_concentration_of_130Sb_in_air", "radioactivity_concentration_of_130Sn_in_air", "radioactivity_concentration_of_131I_in_air", "radioactivity_concentration_of_131mTe_in_air", "radioactivity_concentration_of_131mXe_in_air", "radioactivity_concentration_of_131Sb_in_air", "radioactivity_concentration_of_131Te_in_air", "radioactivity_concentration_of_132I_in_air", "radioactivity_concentration_of_132Te_in_air", "radioactivity_concentration_of_133I_in_air", "radioactivity_concentration_of_133mI_in_air", "radioactivity_concentration_of_133mTe_in_air", "radioactivity_concentration_of_133mXe_in_air", "radioactivity_concentration_of_133Te_in_air", "radioactivity_concentration_of_133Xe_in_air", "radioactivity_concentration_of_134Cs_in_air", "radioactivity_concentration_of_134I_in_air", "radioactivity_concentration_of_134mCs_in_air", "radioactivity_concentration_of_134mI_in_air", "radioactivity_concentration_of_134mXe_in_air", "radioactivity_concentration_of_134Te_in_air", "radioactivity_concentration_of_135Cs_in_air", "radioactivity_concentration_of_135I_in_air", "radioactivity_concentration_of_135mBa_in_air", "radioactivity_concentration_of_135mCs_in_air", "radioactivity_concentration_of_135mXe_in_air", "radioactivity_concentration_of_135Xe_in_air", "radioactivity_concentration_of_136Cs_in_air", "radioactivity_concentration_of_137Cs_in_air", "radioactivity_concentration_of_137mBa_in_air", "radioactivity_concentration_of_137Xe_in_air", "radioactivity_concentration_of_138Cs_in_air", "radioactivity_concentration_of_138Xe_in_air", "radioactivity_concentration_of_139Ba_in_air", "radioactivity_concentration_of_13N_in_air", "radioactivity_concentration_of_140Ba_in_air", "radioactivity_concentration_of_140La_in_air", "radioactivity_concentration_of_141Ce_in_air", "radioactivity_concentration_of_141La_in_air", "radioactivity_concentration_of_142Ce_in_air", "radioactivity_concentration_of_142La_in_air", "radioactivity_concentration_of_142mPr_in_air", "radioactivity_concentration_of_142Pr_in_air", "radioactivity_concentration_of_143Ce_in_air", "radioactivity_concentration_of_143La_in_air", "radioactivity_concentration_of_143Pr_in_air", "radioactivity_concentration_of_144Ce_in_air", "radioactivity_concentration_of_144mPr_in_air", "radioactivity_concentration_of_144Nd_in_air", "radioactivity_concentration_of_144Pr_in_air", "radioactivity_concentration_of_145Pr_in_air", "radioactivity_concentration_of_146Ce_in_air", "radioactivity_concentration_of_146Pr_in_air", "radioactivity_concentration_of_147Nd_in_air", "radioactivity_concentration_of_147Pm_in_air", "radioactivity_concentration_of_147Pr_in_air", "radioactivity_concentration_of_147Sm_in_air", "radioactivity_concentration_of_148mPm_in_air", "radioactivity_concentration_of_148Pm_in_air", "radioactivity_concentration_of_148Sm_in_air", "radioactivity_concentration_of_149Nd_in_air", "radioactivity_concentration_of_149Pm_in_air", "radioactivity_concentration_of_149Sm_in_air", "radioactivity_concentration_of_150Pm_in_air", "radioactivity_concentration_of_151Nd_in_air", "radioactivity_concentration_of_151Pm_in_air", "radioactivity_concentration_of_151Sm_in_air", "radioactivity_concentration_of_152mPm_in_air", "radioactivity_concentration_of_152Nd_in_air", "radioactivity_concentration_of_152Pm_in_air", "radioactivity_concentration_of_153Sm_in_air", "radioactivity_concentration_of_154Eu_in_air", "radioactivity_concentration_of_155Eu_in_air", "radioactivity_concentration_of_155Sm_in_air", "radioactivity_concentration_of_156Eu_in_air", "radioactivity_concentration_of_156Sm_in_air", "radioactivity_concentration_of_157Eu_in_air", "radioactivity_concentration_of_158Eu_in_air", "radioactivity_concentration_of_159Eu_in_air", "radioactivity_concentration_of_159Gd_in_air", "radioactivity_concentration_of_15O_in_air", "radioactivity_concentration_of_160Tb_in_air", "radioactivity_concentration_of_161Tb_in_air", "radioactivity_concentration_of_162Gd_in_air", "radioactivity_concentration_of_162mTb_in_air", "radioactivity_concentration_of_162Tb_in_air", "radioactivity_concentration_of_163Tb_in_air", "radioactivity_concentration_of_165Dy_in_air", "radioactivity_concentration_of_18F_in_air", "radioactivity_concentration_of_206Hg_in_air", "radioactivity_concentration_of_206Tl_in_air", "radioactivity_concentration_of_207mPb_in_air", "radioactivity_concentration_of_207Tl_in_air", "radioactivity_concentration_of_208Tl_in_air", "radioactivity_concentration_of_209Bi_in_air", "radioactivity_concentration_of_209Pb_in_air", "radioactivity_concentration_of_209Tl_in_air", "radioactivity_concentration_of_210Bi_in_air", "radioactivity_concentration_of_210Pb_in_air", "radioactivity_concentration_of_210Po_in_air", "radioactivity_concentration_of_210Tl_in_air", "radioactivity_concentration_of_211Bi_in_air", "radioactivity_concentration_of_211Pb_in_air", "radioactivity_concentration_of_211Po_in_air", "radioactivity_concentration_of_212Bi_in_air", "radioactivity_concentration_of_212Pb_in_air", "radioactivity_concentration_of_212Po_in_air", "radioactivity_concentration_of_213Bi_in_air", "radioactivity_concentration_of_213Pb_in_air", "radioactivity_concentration_of_213Po_in_air", "radioactivity_concentration_of_214Bi_in_air", "radioactivity_concentration_of_214Pb_in_air", "radioactivity_concentration_of_214Po_in_air", "radioactivity_concentration_of_215At_in_air", "radioactivity_concentration_of_215Bi_in_air", "radioactivity_concentration_of_215Po_in_air", "radioactivity_concentration_of_216At_in_air", "radioactivity_concentration_of_216Po_in_air", "radioactivity_concentration_of_217At_in_air", "radioactivity_concentration_of_217Po_in_air", "radioactivity_concentration_of_218At_in_air", "radioactivity_concentration_of_218Po_in_air", "radioactivity_concentration_of_218Rn_in_air", "radioactivity_concentration_of_219At_in_air", "radioactivity_concentration_of_219Rn_in_air", "radioactivity_concentration_of_220Rn_in_air", "radioactivity_concentration_of_221Fr_in_air", "radioactivity_concentration_of_221Rn_in_air", "radioactivity_concentration_of_222Fr_in_air", "radioactivity_concentration_of_222Ra_in_air", "radioactivity_concentration_of_222Rn_in_air", "radioactivity_concentration_of_223Fr_in_air", "radioactivity_concentration_of_223Ra_in_air", "radioactivity_concentration_of_223Rn_in_air", "radioactivity_concentration_of_224Ra_in_air", "radioactivity_concentration_of_225Ac_in_air", "radioactivity_concentration_of_225Ra_in_air", "radioactivity_concentration_of_226Ac_in_air", "radioactivity_concentration_of_226Ra_in_air", "radioactivity_concentration_of_226Th_in_air", "radioactivity_concentration_of_227Ac_in_air", "radioactivity_concentration_of_227Ra_in_air", "radioactivity_concentration_of_227Th_in_air", "radioactivity_concentration_of_228Ac_in_air", "radioactivity_concentration_of_228Ra_in_air", "radioactivity_concentration_of_228Th_in_air", "radioactivity_concentration_of_229Ac_in_air", "radioactivity_concentration_of_229Ra_in_air", "radioactivity_concentration_of_229Th_in_air", "radioactivity_concentration_of_230Pa_in_air", "radioactivity_concentration_of_230Th_in_air", "radioactivity_concentration_of_230U_in_air", "radioactivity_concentration_of_231Pa_in_air", "radioactivity_concentration_of_231Th_in_air", "radioactivity_concentration_of_231U_in_air", "radioactivity_concentration_of_232Pa_in_air", "radioactivity_concentration_of_232Th_in_air", "radioactivity_concentration_of_232U_in_air", "radioactivity_concentration_of_233Pa_in_air", "radioactivity_concentration_of_233Th_in_air", "radioactivity_concentration_of_233U_in_air", "radioactivity_concentration_of_234mPa_in_air", "radioactivity_concentration_of_234Pa_in_air", "radioactivity_concentration_of_234Th_in_air", "radioactivity_concentration_of_234U_in_air", "radioactivity_concentration_of_235Np_in_air", "radioactivity_concentration_of_235Pu_in_air", "radioactivity_concentration_of_235U_in_air", "radioactivity_concentration_of_236mNp_in_air", "radioactivity_concentration_of_236Np_in_air", "radioactivity_concentration_of_236Pu_in_air", "radioactivity_concentration_of_236U_in_air", "radioactivity_concentration_of_237Np_in_air", "radioactivity_concentration_of_237Pu_in_air", "radioactivity_concentration_of_237U_in_air", "radioactivity_concentration_of_238Np_in_air", "radioactivity_concentration_of_238Pu_in_air", "radioactivity_concentration_of_238U_in_air", "radioactivity_concentration_of_239Np_in_air", "radioactivity_concentration_of_239Pu_in_air", "radioactivity_concentration_of_239U_in_air", "radioactivity_concentration_of_240Am_in_air", "radioactivity_concentration_of_240mNp_in_air", "radioactivity_concentration_of_240Np_in_air", "radioactivity_concentration_of_240Pu_in_air", "radioactivity_concentration_of_240U_in_air", "radioactivity_concentration_of_241Am_in_air", "radioactivity_concentration_of_241Cm_in_air", "radioactivity_concentration_of_241Pu_in_air", "radioactivity_concentration_of_242Am_in_air", "radioactivity_concentration_of_242Cm_in_air", "radioactivity_concentration_of_242m1Am_in_air", "radioactivity_concentration_of_242m2Am_in_air", "radioactivity_concentration_of_242Pu_in_air", "radioactivity_concentration_of_243Am_in_air", "radioactivity_concentration_of_243Cm_in_air", "radioactivity_concentration_of_243Pu_in_air", "radioactivity_concentration_of_244Am_in_air", "radioactivity_concentration_of_244Cm_in_air", "radioactivity_concentration_of_244mAm_in_air", "radioactivity_concentration_of_244Pu_in_air", "radioactivity_concentration_of_245Am_in_air", "radioactivity_concentration_of_245Cm_in_air", "radioactivity_concentration_of_245Pu_in_air", "radioactivity_concentration_of_246Cm_in_air", "radioactivity_concentration_of_247Cm_in_air", "radioactivity_concentration_of_248Cm_in_air", "radioactivity_concentration_of_249Bk_in_air", "radioactivity_concentration_of_249Cf_in_air", "radioactivity_concentration_of_249Cm_in_air", "radioactivity_concentration_of_24Na_in_air", "radioactivity_concentration_of_250Bk_in_air", "radioactivity_concentration_of_250Cf_in_air", "radioactivity_concentration_of_250Cm_in_air", "radioactivity_concentration_of_251Cf_in_air", "radioactivity_concentration_of_252Cf_in_air", "radioactivity_concentration_of_253Cf_in_air", "radioactivity_concentration_of_253Es_in_air", "radioactivity_concentration_of_254Cf_in_air", "radioactivity_concentration_of_254Es_in_air", "radioactivity_concentration_of_254mEs_in_air", "radioactivity_concentration_of_255Es_in_air", "radioactivity_concentration_of_3H_in_air", "radioactivity_concentration_of_41Ar_in_air", "radioactivity_concentration_of_54Mn_in_air", "radioactivity_concentration_of_58Co_in_air", "radioactivity_concentration_of_60Co_in_air", "radioactivity_concentration_of_72Ga_in_air", "radioactivity_concentration_of_72Zn_in_air", "radioactivity_concentration_of_73Ga_in_air", "radioactivity_concentration_of_75Ge_in_air", "radioactivity_concentration_of_77As_in_air", "radioactivity_concentration_of_77Ge_in_air", "radioactivity_concentration_of_77mGe_in_air", "radioactivity_concentration_of_78As_in_air", "radioactivity_concentration_of_78Ge_in_air", "radioactivity_concentration_of_79Se_in_air", "radioactivity_concentration_of_81mSe_in_air", "radioactivity_concentration_of_81Se_in_air", "radioactivity_concentration_of_82Br_in_air", "radioactivity_concentration_of_82mBr_in_air", "radioactivity_concentration_of_83Br_in_air", "radioactivity_concentration_of_83mKr_in_air", "radioactivity_concentration_of_83mSe_in_air", "radioactivity_concentration_of_83Se_in_air", "radioactivity_concentration_of_84Br_in_air", "radioactivity_concentration_of_84mBr_in_air", "radioactivity_concentration_of_85Kr_in_air", "radioactivity_concentration_of_85mKr_in_air", "radioactivity_concentration_of_86mRb_in_air", "radioactivity_concentration_of_86Rb_in_air", "radioactivity_concentration_of_87Kr_in_air", "radioactivity_concentration_of_87Rb_in_air", "radioactivity_concentration_of_88Kr_in_air", "radioactivity_concentration_of_88Rb_in_air", "radioactivity_concentration_of_89Kr_in_air", "radioactivity_concentration_of_89Rb_in_air", "radioactivity_concentration_of_89Sr_in_air", "radioactivity_concentration_of_90mY_in_air", "radioactivity_concentration_of_90Sr_in_air", "radioactivity_concentration_of_90Y_in_air", "radioactivity_concentration_of_91mY_in_air", "radioactivity_concentration_of_91Sr_in_air", "radioactivity_concentration_of_91Y_in_air", "radioactivity_concentration_of_92Sr_in_air", "radioactivity_concentration_of_92Y_in_air", "radioactivity_concentration_of_93Y_in_air", "radioactivity_concentration_of_93Zr_in_air", "radioactivity_concentration_of_94mNb_in_air", "radioactivity_concentration_of_94Nb_in_air", "radioactivity_concentration_of_94Y_in_air", "radioactivity_concentration_of_95mNb_in_air", "radioactivity_concentration_of_95Nb_in_air", "radioactivity_concentration_of_95Y_in_air", "radioactivity_concentration_of_95Zr_in_air", "radioactivity_concentration_of_96Nb_in_air", "radioactivity_concentration_of_97mNb_in_air", "radioactivity_concentration_of_97Nb_in_air", "radioactivity_concentration_of_97Zr_in_air", "radioactivity_concentration_of_98Nb_in_air", "radioactivity_concentration_of_99Mo_in_air", "radioactivity_concentration_of_99mTc_in_air", "radioactivity_concentration_of_99Tc_in_air", "radius_of_tropical_cyclone_central_dense_overcast_region", "radius_of_tropical_cyclone_eye", "radius_of_tropical_cyclone_maximum_sustained_wind_speed", "rainfall_amount", "rainfall_flux", "rainfall_rate", "rate_of_change_test_quality_flag", "rate_of_hydroxyl_radical_destruction_due_to_reaction_with_nmvoc", "ratio_of_ice_volume_in_frozen_ground_to_pore_volume_in_unfrozen_ground", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "ratio_of_sea_water_practical_salinity_anomaly_to_relaxation_timescale", "ratio_of_x_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "ratio_of_y_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "realization", "reference_air_pressure_for_atmosphere_vertical_coordinate", "reference_epoch", "reference_pressure", "reference_sea_water_density_for_boussinesq_approximation", "region", "relative_humidity", "relative_humidity_for_aerosol_particle_size_selection", "relative_platform_azimuth_angle", "relative_sensor_azimuth_angle", "richardson_number_in_sea_water", "root_depth", "root_mass_content_of_carbon", "root_mass_content_of_nitrogen", "runoff_amount", "runoff_amount_excluding_baseflow", "runoff_flux", "salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "salt_flux_into_sea_water_from_rivers", "scattering_angle", "scene_type_of_dvorak_tropical_cyclone_cloud_region", "scene_type_of_dvorak_tropical_cyclone_eye_region", "sea_area", "sea_area_fraction", "sea_binary_mask", "sea_floor_depth_below_geoid", "sea_floor_depth_below_geopotential_datum", "sea_floor_depth_below_mean_sea_level", "sea_floor_depth_below_reference_ellipsoid", "sea_floor_depth_below_sea_surface", "sea_floor_sediment_grain_size", "sea_ice_albedo", "sea_ice_amount", "sea_ice_and_surface_snow_amount", "sea_ice_area", "sea_ice_area_fraction", "sea_ice_area_transport_across_line", "sea_ice_average_normal_horizontal_stress", "sea_ice_basal_drag_coefficient_for_momentum_in_sea_water", "sea_ice_basal_temperature", "sea_ice_classification", "sea_ice_draft", "sea_ice_extent", "sea_ice_floe_diameter", "sea_ice_freeboard", "sea_ice_mass", "sea_ice_mass_content_of_salt", "sea_ice_melt_pond_thickness", "sea_ice_salinity", "sea_ice_speed", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_ice_thickness", "sea_ice_transport_across_line", "sea_ice_volume", "sea_ice_x_displacement", "sea_ice_x_force_per_unit_area_due_to_coriolis_effect", "sea_ice_x_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_x_internal_stress", "sea_ice_x_transport", "sea_ice_x_velocity", "sea_ice_y_displacement", "sea_ice_y_force_per_unit_area_due_to_coriolis_effect", "sea_ice_y_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_y_internal_stress", "sea_ice_y_transport", "sea_ice_y_velocity", "sea_surface_density", "sea_surface_downward_eastward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_downward_northward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_foundation_temperature", "sea_surface_height_above_geoid", "sea_surface_height_above_geopotential_datum", "sea_surface_height_above_mean_sea_level", "sea_surface_height_above_reference_ellipsoid", "sea_surface_height_amplitude_due_to_earth_tide", "sea_surface_height_amplitude_due_to_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_geocentric_ocean_tide", "sea_surface_height_amplitude_due_to_non_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_pole_tide", "sea_surface_height_bias_due_to_sea_surface_roughness", "sea_surface_height_correction_due_to_air_pressure_and_wind_at_high_frequency", "sea_surface_height_correction_due_to_air_pressure_at_low_frequency", "sea_surface_mean_square_crosswave_slope", "sea_surface_mean_square_upwave_slope", "sea_surface_mean_square_upwave_slope_direction", "sea_surface_primary_swell_wave_directional_spread", "sea_surface_primary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_from_direction", "sea_surface_primary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_mean_period", "sea_surface_primary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_significant_height", "sea_surface_salinity", "sea_surface_secondary_swell_wave_directional_spread", "sea_surface_secondary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_from_direction", "sea_surface_secondary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_mean_period", "sea_surface_secondary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_significant_height", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_swell_wave_directional_spread", "sea_surface_swell_wave_from_direction", "sea_surface_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_swell_wave_mean_period", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_swell_wave_period", "sea_surface_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_swell_wave_significant_height", "sea_surface_swell_wave_to_direction", "sea_surface_temperature", "sea_surface_tertiary_swell_wave_directional_spread", "sea_surface_tertiary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_from_direction", "sea_surface_tertiary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_mean_period", "sea_surface_tertiary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_significant_height", "sea_surface_wave_directional_spread", "sea_surface_wave_directional_spread_at_variance_spectral_density_maximum", "sea_surface_wave_directional_variance_spectral_density", "sea_surface_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wave_from_direction", "sea_surface_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wave_maximum_crest_height", "sea_surface_wave_maximum_height", "sea_surface_wave_maximum_period", "sea_surface_wave_maximum_steepness", "sea_surface_wave_maximum_trough_depth", "sea_surface_wave_mean_height", "sea_surface_wave_mean_height_of_highest_tenth", "sea_surface_wave_mean_period", "sea_surface_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wave_mean_period_of_highest_tenth", "sea_surface_wave_mean_square_slope", "sea_surface_wave_mean_square_x_slope", "sea_surface_wave_mean_square_y_slope", "sea_surface_wave_mean_wavenumber_from_variance_spectral_density_first_wavenumber_moment", "sea_surface_wave_period_at_variance_spectral_density_maximum", "sea_surface_wave_period_of_highest_wave", "sea_surface_wave_significant_height", "sea_surface_wave_significant_period", "sea_surface_wave_stokes_drift_eastward_velocity", "sea_surface_wave_stokes_drift_northward_velocity", "sea_surface_wave_stokes_drift_speed", "sea_surface_wave_stokes_drift_to_direction", "sea_surface_wave_stokes_drift_x_velocity", "sea_surface_wave_stokes_drift_y_velocity", "sea_surface_wave_to_direction", "sea_surface_wave_variance_spectral_density", "sea_surface_wave_xx_radiation_stress", "sea_surface_wave_xy_radiation_stress", "sea_surface_wave_yy_radiation_stress", "sea_surface_wind_wave_directional_spread", "sea_surface_wind_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wind_wave_from_direction", "sea_surface_wind_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wind_wave_mean_period", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wind_wave_period", "sea_surface_wind_wave_period_at_variance_spectral_density_maximum", "sea_surface_wind_wave_significant_height", "sea_surface_wind_wave_to_direction", "sea_water_absolute_salinity", "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", "sea_water_age_since_surface_contact", "sea_water_alkalinity_expressed_as_mole_equivalent", "sea_water_alkalinity_natural_analogue_expressed_as_mole_equivalent", "sea_water_conservative_temperature", "sea_water_cox_salinity", "sea_water_density", "sea_water_electrical_conductivity", "sea_water_knudsen_salinity", "sea_water_mass", "sea_water_mass_per_unit_area", "sea_water_mass_per_unit_area_expressed_as_thickness", "sea_water_neutral_density", "sea_water_ph_abiotic_analogue_reported_on_total_scale", "sea_water_ph_natural_analogue_reported_on_total_scale", "sea_water_ph_reported_on_total_scale", "sea_water_potential_density", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_practical_salinity", "sea_water_practical_salinity_at_sea_floor", "sea_water_preformed_salinity", "sea_water_pressure", "sea_water_pressure_at_sea_floor", "sea_water_pressure_at_sea_water_surface", "sea_water_pressure_due_to_sea_water", "sea_water_redistributed_conservative_temperature", "sea_water_redistributed_potential_temperature", "sea_water_reference_salinity", "sea_water_salinity", "sea_water_salinity_at_sea_floor", "sea_water_sigma_t", "sea_water_sigma_t_difference", "sea_water_sigma_theta", "sea_water_sigma_theta_difference", "sea_water_specific_potential_enthalpy", "sea_water_speed", "sea_water_speed_at_sea_floor", "sea_water_speed_due_to_tides", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "sea_water_transport_across_line", "sea_water_turbidity", "sea_water_velocity_from_direction", "sea_water_velocity_to_direction", "sea_water_velocity_to_direction_at_sea_floor", "sea_water_velocity_to_direction_due_to_tides", "sea_water_volume", "sea_water_x_velocity", "sea_water_x_velocity_due_to_parameterized_mesoscale_eddies", "sea_water_y_velocity", "sea_water_y_velocity_due_to_parameterized_mesoscale_eddies", "secchi_depth_of_sea_water", "sensor_azimuth_angle", "sensor_band_central_radiation_frequency", "sensor_band_central_radiation_wavelength", "sensor_band_central_radiation_wavenumber", "sensor_band_identifier", "sensor_view_angle", "sensor_zenith_angle", "shallow_convection_time_fraction", "shallow_convective_cloud_base_altitude", "shallow_convective_cloud_top_altitude", "shallow_convective_precipitation_flux", "signal_intensity_from_multibeam_acoustic_doppler_velocity_sensor_in_sea_water", "single_scattering_albedo_in_air_due_to_ambient_aerosol_particles", "sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_iron_in_sea_water", "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_organic_nitrogen_in_sea_water", "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", "sinking_mole_flux_of_particulate_silicon_in_sea_water", "slow_soil_pool_mass_content_of_carbon", "snow_area_fraction_viewable_from_above", "snowfall_amount", "snowfall_flux", "snow_grain_size", "snow_transport_across_line_due_to_sea_ice_dynamics", "soil_albedo", "soil_frozen_water_content", "soil_hydraulic_conductivity_at_saturation", "soil_mass_content_of_13C", "soil_mass_content_of_14C", "soil_mass_content_of_carbon", "soil_mass_content_of_inorganic_ammonium_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrate_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", "soil_mass_content_of_nitrogen", "soil_moisture_content_at_field_capacity", "soil_pool", "soil_pool_carbon_decay_rate", "soil_porosity", "soil_suction_at_saturation", "soil_temperature", "soil_thermal_capacity", "soil_thermal_conductivity", "soil_type", "soil_water_ph", "solar_azimuth_angle", "solar_elevation_angle", "solar_irradiance", "solar_irradiance_per_unit_wavelength", "solar_zenith_angle", "solid_precipitation_flux", "solid_precipitation_flux_containing_17O", "solid_precipitation_flux_containing_18O", "solid_precipitation_flux_containing_single_2H", "soot_content_of_surface_snow", "sound_frequency", "sound_intensity_in_air", "sound_intensity_in_water", "sound_intensity_level_in_air", "sound_intensity_level_in_water", "sound_pressure_in_air", "sound_pressure_in_water", "sound_pressure_level_in_air", "sound_pressure_level_in_water", "source", "specific_dry_energy_of_air", "specific_gravitational_potential_energy", "specific_heat_capacity_of_frozen_ground", "specific_heat_capacity_of_sea_water", "specific_humidity", "specific_kinetic_energy_of_air", "specific_kinetic_energy_of_sea_water", "specific_turbulent_kinetic_energy_dissipation_in_sea_water", "specific_turbulent_kinetic_energy_of_sea_water", "speed_of_sound_in_air", "speed_of_sound_in_sea_water", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_below_threshold", "spike_test_quality_flag", "square_of_air_temperature", "square_of_brunt_vaisala_frequency_in_air", "square_of_brunt_vaisala_frequency_in_sea_water", "square_of_eastward_wind", "square_of_geopotential_height", "square_of_lagrangian_tendency_of_air_pressure", "square_of_northward_wind", "square_of_ocean_mixed_layer_thickness_defined_by_sigma_t", "square_of_sea_surface_height_above_geoid", "square_of_sea_surface_salinity", "square_of_sea_surface_temperature", "square_of_upward_air_velocity", "square_of_upward_ocean_mass_transport", "status_flag", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "steric_change_in_mean_sea_level", "steric_change_in_sea_surface_height", "storm_motion_speed", "stratiform_cloud_area_fraction", "stratiform_cloud_area_fraction_in_atmosphere_layer", "stratiform_cloud_longwave_emissivity", "stratiform_graupel_fall_amount", "stratiform_graupel_flux", "stratiform_precipitation_amount", "stratiform_precipitation_flux", "stratiform_rainfall_amount", "stratiform_rainfall_flux", "stratiform_rainfall_rate", "stratiform_snowfall_amount", "stratiform_snowfall_flux", "stratosphere_mole_content_of_nitrogen_dioxide", "stratosphere_optical_thickness_due_to_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_volcanic_ambient_aerosol_particles", "subsurface_litter_mass_content_of_carbon", "subsurface_litter_mass_content_of_nitrogen", "subsurface_runoff_amount", "subsurface_runoff_flux", "sunglint_angle", "sunlit_binary_mask", "surface_air_pressure", "surface_albedo", "surface_albedo_assuming_deep_snow", "surface_albedo_assuming_no_snow", "surface_altitude", "surface_backwards_scattering_coefficient_of_radar_wave", "surface_bidirectional_reflectance", "surface_brightness_temperature", "surface_carbon_dioxide_abiotic_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_natural_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_partial_pressure_difference_between_air_and_sea_water", "surface_carbon_dioxide_partial_pressure_difference_between_sea_water_and_air", "surface_diffuse_downwelling_photosynthetic_radiative_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_diffuse_shortwave_hemispherical_reflectance", "surface_direct_along_beam_shortwave_flux_in_air", "surface_direct_downwelling_shortwave_flux_in_air", "surface_direct_shortwave_hemispherical_reflectance", "surface_downward_eastward_stress", "surface_downward_eastward_stress_due_to_boundary_layer_mixing", "surface_downward_eastward_stress_due_to_ocean_viscous_dissipation", "surface_downward_eastward_stress_due_to_sea_surface_waves", "surface_downward_heat_flux_in_air", "surface_downward_heat_flux_in_sea_ice", "surface_downward_heat_flux_in_sea_water", "surface_downward_heat_flux_in_snow", "surface_downward_latent_heat_flux", "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_ammonia", "surface_downward_mass_flux_of_carbon_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_natural_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_methane_due_to_wetland_biological_consumption", "surface_downward_mass_flux_of_water_due_to_irrigation", "surface_downward_mole_flux_of_carbon_dioxide", "surface_downward_mole_flux_of_cfc11", "surface_downward_mole_flux_of_cfc12", "surface_downward_mole_flux_of_molecular_oxygen", "surface_downward_mole_flux_of_sulfur_hexafluoride", "surface_downward_northward_stress", "surface_downward_northward_stress_due_to_boundary_layer_mixing", "surface_downward_northward_stress_due_to_ocean_viscous_dissipation", "surface_downward_northward_stress_due_to_sea_surface_waves", "surface_downward_sensible_heat_flux", "surface_downward_water_flux", "surface_downward_x_stress", "surface_downward_x_stress_correction", "surface_downward_y_stress", "surface_downward_y_stress_correction", "surface_downwelling_longwave_flux_in_air", "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", "surface_downwelling_longwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_photon_flux_in_sea_water", "surface_downwelling_photon_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_radiance_in_sea_water", "surface_downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photosynthetic_photon_flux_in_air", "surface_downwelling_photosynthetic_photon_flux_in_sea_water", "surface_downwelling_photosynthetic_photon_radiance_in_sea_water", "surface_downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photosynthetic_radiance_in_sea_water", "surface_downwelling_photosynthetic_radiative_flux_in_air", "surface_downwelling_photosynthetic_radiative_flux_in_sea_water", "surface_downwelling_photosynthetic_spherical_irradiance_in_sea_water", "surface_downwelling_radiance_in_sea_water", "surface_downwelling_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_radiative_flux_in_sea_water", "surface_downwelling_radiative_flux_per_unit_wavelength_in_air", "surface_downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_shortwave_flux_in_air", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_downwelling_shortwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_spherical_irradiance_in_sea_water", "surface_downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_drag_coefficient_for_heat_in_air", "surface_drag_coefficient_for_momentum_in_air", "surface_drag_coefficient_in_air", "surface_eastward_sea_water_velocity", "surface_frozen_carbon_dioxide_amount", "surface_geopotential", "surface_geostrophic_eastward_sea_water_velocity", "surface_geostrophic_eastward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_northward_sea_water_velocity", "surface_geostrophic_northward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_x_velocity", "surface_geostrophic_sea_water_x_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_y_velocity", "surface_geostrophic_sea_water_y_velocity_assuming_mean_sea_level_for_geoid", "surface_height_above_geopotential_datum", "surface_litter_mass_content_of_carbon", "surface_litter_mass_content_of_nitrogen", "surface_longwave_emissivity", "surface_microwave_emissivity", "surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_longwave_flux", "surface_net_downward_longwave_flux_assuming_clear_sky", "surface_net_downward_mass_flux_of_ammonia_due_to_bidirectional_surface_exchange", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change", "surface_net_downward_radiative_flux", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_shortwave_flux", "surface_net_downward_shortwave_flux_assuming_clear_sky", "surface_net_upward_longwave_flux", "surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change", "surface_net_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_processes", "surface_net_upward_radiative_flux", "surface_net_upward_shortwave_flux", "surface_northward_sea_water_velocity", "surface_partial_pressure_of_carbon_dioxide_abiotic_analogue_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_in_air", "surface_partial_pressure_of_carbon_dioxide_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_natural_analogue_in_sea_water", "surface_radioactivity_content", "surface_radioactivity_content_of_101Mo", "surface_radioactivity_content_of_101Tc", "surface_radioactivity_content_of_102Mo", "surface_radioactivity_content_of_102mTc", "surface_radioactivity_content_of_102Tc", "surface_radioactivity_content_of_103mRh", "surface_radioactivity_content_of_103Ru", "surface_radioactivity_content_of_104Tc", "surface_radioactivity_content_of_105mRh", "surface_radioactivity_content_of_105Rh", "surface_radioactivity_content_of_105Ru", "surface_radioactivity_content_of_106mRh", "surface_radioactivity_content_of_106Rh", "surface_radioactivity_content_of_106Ru", "surface_radioactivity_content_of_107mPd", "surface_radioactivity_content_of_107Pd", "surface_radioactivity_content_of_107Rh", "surface_radioactivity_content_of_109mAg", "surface_radioactivity_content_of_109Pd", "surface_radioactivity_content_of_110mAg", "surface_radioactivity_content_of_111Ag", "surface_radioactivity_content_of_111mAg", "surface_radioactivity_content_of_111mCd", "surface_radioactivity_content_of_111mPd", "surface_radioactivity_content_of_111Pd", "surface_radioactivity_content_of_112Ag", "surface_radioactivity_content_of_112Pd", "surface_radioactivity_content_of_113Ag", "surface_radioactivity_content_of_113Cd", "surface_radioactivity_content_of_113mAg", "surface_radioactivity_content_of_113mCd", "surface_radioactivity_content_of_113mIn", "surface_radioactivity_content_of_115Ag", "surface_radioactivity_content_of_115Cd", "surface_radioactivity_content_of_115In", "surface_radioactivity_content_of_115mAg", "surface_radioactivity_content_of_115mCd", "surface_radioactivity_content_of_115mIn", "surface_radioactivity_content_of_116In", "surface_radioactivity_content_of_116mIn", "surface_radioactivity_content_of_117Cd", "surface_radioactivity_content_of_117In", "surface_radioactivity_content_of_117mCd", "surface_radioactivity_content_of_117mIn", "surface_radioactivity_content_of_117mSn", "surface_radioactivity_content_of_118Cd", "surface_radioactivity_content_of_118In", "surface_radioactivity_content_of_118mIn", "surface_radioactivity_content_of_119In", "surface_radioactivity_content_of_119mIn", "surface_radioactivity_content_of_119mSn", "surface_radioactivity_content_of_11C", "surface_radioactivity_content_of_121mSn", "surface_radioactivity_content_of_121Sn", "surface_radioactivity_content_of_123mSn", "surface_radioactivity_content_of_123Sn", "surface_radioactivity_content_of_124mSb", "surface_radioactivity_content_of_124Sb", "surface_radioactivity_content_of_125mTe", "surface_radioactivity_content_of_125Sb", "surface_radioactivity_content_of_125Sn", "surface_radioactivity_content_of_126mSb", "surface_radioactivity_content_of_126Sb", "surface_radioactivity_content_of_126Sn", "surface_radioactivity_content_of_127mTe", "surface_radioactivity_content_of_127Sb", "surface_radioactivity_content_of_127Sn", "surface_radioactivity_content_of_127Te", "surface_radioactivity_content_of_128mSb", "surface_radioactivity_content_of_128Sb", "surface_radioactivity_content_of_128Sn", "surface_radioactivity_content_of_129I", "surface_radioactivity_content_of_129mTe", "surface_radioactivity_content_of_129mXe", "surface_radioactivity_content_of_129Sb", "surface_radioactivity_content_of_129Te", "surface_radioactivity_content_of_130I", "surface_radioactivity_content_of_130mI", "surface_radioactivity_content_of_130mSb", "surface_radioactivity_content_of_130Sb", "surface_radioactivity_content_of_130Sn", "surface_radioactivity_content_of_131I", "surface_radioactivity_content_of_131mTe", "surface_radioactivity_content_of_131mXe", "surface_radioactivity_content_of_131Sb", "surface_radioactivity_content_of_131Te", "surface_radioactivity_content_of_132I", "surface_radioactivity_content_of_132Te", "surface_radioactivity_content_of_133I", "surface_radioactivity_content_of_133mI", "surface_radioactivity_content_of_133mTe", "surface_radioactivity_content_of_133mXe", "surface_radioactivity_content_of_133Te", "surface_radioactivity_content_of_133Xe", "surface_radioactivity_content_of_134Cs", "surface_radioactivity_content_of_134I", "surface_radioactivity_content_of_134mCs", "surface_radioactivity_content_of_134mI", "surface_radioactivity_content_of_134mXe", "surface_radioactivity_content_of_134Te", "surface_radioactivity_content_of_135Cs", "surface_radioactivity_content_of_135I", "surface_radioactivity_content_of_135mBa", "surface_radioactivity_content_of_135mCs", "surface_radioactivity_content_of_135mXe", "surface_radioactivity_content_of_135Xe", "surface_radioactivity_content_of_136Cs", "surface_radioactivity_content_of_137Cs", "surface_radioactivity_content_of_137mBa", "surface_radioactivity_content_of_137Xe", "surface_radioactivity_content_of_138Cs", "surface_radioactivity_content_of_138Xe", "surface_radioactivity_content_of_139Ba", "surface_radioactivity_content_of_13N", "surface_radioactivity_content_of_140Ba", "surface_radioactivity_content_of_140La", "surface_radioactivity_content_of_141Ce", "surface_radioactivity_content_of_141La", "surface_radioactivity_content_of_142Ce", "surface_radioactivity_content_of_142La", "surface_radioactivity_content_of_142mPr", "surface_radioactivity_content_of_142Pr", "surface_radioactivity_content_of_143Ce", "surface_radioactivity_content_of_143La", "surface_radioactivity_content_of_143Pr", "surface_radioactivity_content_of_144Ce", "surface_radioactivity_content_of_144mPr", "surface_radioactivity_content_of_144Nd", "surface_radioactivity_content_of_144Pr", "surface_radioactivity_content_of_145Pr", "surface_radioactivity_content_of_146Ce", "surface_radioactivity_content_of_146Pr", "surface_radioactivity_content_of_147Nd", "surface_radioactivity_content_of_147Pm", "surface_radioactivity_content_of_147Pr", "surface_radioactivity_content_of_147Sm", "surface_radioactivity_content_of_148mPm", "surface_radioactivity_content_of_148Pm", "surface_radioactivity_content_of_148Sm", "surface_radioactivity_content_of_149Nd", "surface_radioactivity_content_of_149Pm", "surface_radioactivity_content_of_149Sm", "surface_radioactivity_content_of_150Pm", "surface_radioactivity_content_of_151Nd", "surface_radioactivity_content_of_151Pm", "surface_radioactivity_content_of_151Sm", "surface_radioactivity_content_of_152mPm", "surface_radioactivity_content_of_152Nd", "surface_radioactivity_content_of_152Pm", "surface_radioactivity_content_of_153Sm", "surface_radioactivity_content_of_154Eu", "surface_radioactivity_content_of_155Eu", "surface_radioactivity_content_of_155Sm", "surface_radioactivity_content_of_156Eu", "surface_radioactivity_content_of_156Sm", "surface_radioactivity_content_of_157Eu", "surface_radioactivity_content_of_158Eu", "surface_radioactivity_content_of_159Eu", "surface_radioactivity_content_of_159Gd", "surface_radioactivity_content_of_15O", "surface_radioactivity_content_of_160Tb", "surface_radioactivity_content_of_161Tb", "surface_radioactivity_content_of_162Gd", "surface_radioactivity_content_of_162mTb", "surface_radioactivity_content_of_162Tb", "surface_radioactivity_content_of_163Tb", "surface_radioactivity_content_of_165Dy", "surface_radioactivity_content_of_18F", "surface_radioactivity_content_of_206Hg", "surface_radioactivity_content_of_206Tl", "surface_radioactivity_content_of_207mPb", "surface_radioactivity_content_of_207Tl", "surface_radioactivity_content_of_208Tl", "surface_radioactivity_content_of_209Bi", "surface_radioactivity_content_of_209Pb", "surface_radioactivity_content_of_209Tl", "surface_radioactivity_content_of_210Bi", "surface_radioactivity_content_of_210Pb", "surface_radioactivity_content_of_210Po", "surface_radioactivity_content_of_210Tl", "surface_radioactivity_content_of_211Bi", "surface_radioactivity_content_of_211Pb", "surface_radioactivity_content_of_211Po", "surface_radioactivity_content_of_212Bi", "surface_radioactivity_content_of_212Pb", "surface_radioactivity_content_of_212Po", "surface_radioactivity_content_of_213Bi", "surface_radioactivity_content_of_213Pb", "surface_radioactivity_content_of_213Po", "surface_radioactivity_content_of_214Bi", "surface_radioactivity_content_of_214Pb", "surface_radioactivity_content_of_214Po", "surface_radioactivity_content_of_215At", "surface_radioactivity_content_of_215Bi", "surface_radioactivity_content_of_215Po", "surface_radioactivity_content_of_216At", "surface_radioactivity_content_of_216Po", "surface_radioactivity_content_of_217At", "surface_radioactivity_content_of_217Po", "surface_radioactivity_content_of_218At", "surface_radioactivity_content_of_218Po", "surface_radioactivity_content_of_218Rn", "surface_radioactivity_content_of_219At", "surface_radioactivity_content_of_219Rn", "surface_radioactivity_content_of_220Rn", "surface_radioactivity_content_of_221Fr", "surface_radioactivity_content_of_221Rn", "surface_radioactivity_content_of_222Fr", "surface_radioactivity_content_of_222Ra", "surface_radioactivity_content_of_222Rn", "surface_radioactivity_content_of_223Fr", "surface_radioactivity_content_of_223Ra", "surface_radioactivity_content_of_223Rn", "surface_radioactivity_content_of_224Ra", "surface_radioactivity_content_of_225Ac", "surface_radioactivity_content_of_225Ra", "surface_radioactivity_content_of_226Ac", "surface_radioactivity_content_of_226Ra", "surface_radioactivity_content_of_226Th", "surface_radioactivity_content_of_227Ac", "surface_radioactivity_content_of_227Ra", "surface_radioactivity_content_of_227Th", "surface_radioactivity_content_of_228Ac", "surface_radioactivity_content_of_228Ra", "surface_radioactivity_content_of_228Th", "surface_radioactivity_content_of_229Ac", "surface_radioactivity_content_of_229Ra", "surface_radioactivity_content_of_229Th", "surface_radioactivity_content_of_230Pa", "surface_radioactivity_content_of_230Th", "surface_radioactivity_content_of_230U", "surface_radioactivity_content_of_231Pa", "surface_radioactivity_content_of_231Th", "surface_radioactivity_content_of_231U", "surface_radioactivity_content_of_232Pa", "surface_radioactivity_content_of_232Th", "surface_radioactivity_content_of_232U", "surface_radioactivity_content_of_233Pa", "surface_radioactivity_content_of_233Th", "surface_radioactivity_content_of_233U", "surface_radioactivity_content_of_234mPa", "surface_radioactivity_content_of_234Pa", "surface_radioactivity_content_of_234Th", "surface_radioactivity_content_of_234U", "surface_radioactivity_content_of_235Np", "surface_radioactivity_content_of_235Pu", "surface_radioactivity_content_of_235U", "surface_radioactivity_content_of_236mNp", "surface_radioactivity_content_of_236Np", "surface_radioactivity_content_of_236Pu", "surface_radioactivity_content_of_236U", "surface_radioactivity_content_of_237Np", "surface_radioactivity_content_of_237Pu", "surface_radioactivity_content_of_237U", "surface_radioactivity_content_of_238Np", "surface_radioactivity_content_of_238Pu", "surface_radioactivity_content_of_238U", "surface_radioactivity_content_of_239Np", "surface_radioactivity_content_of_239Pu", "surface_radioactivity_content_of_239U", "surface_radioactivity_content_of_240Am", "surface_radioactivity_content_of_240mNp", "surface_radioactivity_content_of_240Np", "surface_radioactivity_content_of_240Pu", "surface_radioactivity_content_of_240U", "surface_radioactivity_content_of_241Am", "surface_radioactivity_content_of_241Cm", "surface_radioactivity_content_of_241Pu", "surface_radioactivity_content_of_242Am", "surface_radioactivity_content_of_242Cm", "surface_radioactivity_content_of_242m1Am", "surface_radioactivity_content_of_242m2Am", "surface_radioactivity_content_of_242Pu", "surface_radioactivity_content_of_243Am", "surface_radioactivity_content_of_243Cm", "surface_radioactivity_content_of_243Pu", "surface_radioactivity_content_of_244Am", "surface_radioactivity_content_of_244Cm", "surface_radioactivity_content_of_244mAm", "surface_radioactivity_content_of_244Pu", "surface_radioactivity_content_of_245Am", "surface_radioactivity_content_of_245Cm", "surface_radioactivity_content_of_245Pu", "surface_radioactivity_content_of_246Cm", "surface_radioactivity_content_of_247Cm", "surface_radioactivity_content_of_248Cm", "surface_radioactivity_content_of_249Bk", "surface_radioactivity_content_of_249Cf", "surface_radioactivity_content_of_249Cm", "surface_radioactivity_content_of_24Na", "surface_radioactivity_content_of_250Bk", "surface_radioactivity_content_of_250Cf", "surface_radioactivity_content_of_250Cm", "surface_radioactivity_content_of_251Cf", "surface_radioactivity_content_of_252Cf", "surface_radioactivity_content_of_253Cf", "surface_radioactivity_content_of_253Es", "surface_radioactivity_content_of_254Cf", "surface_radioactivity_content_of_254Es", "surface_radioactivity_content_of_254mEs", "surface_radioactivity_content_of_255Es", "surface_radioactivity_content_of_3H", "surface_radioactivity_content_of_41Ar", "surface_radioactivity_content_of_54Mn", "surface_radioactivity_content_of_58Co", "surface_radioactivity_content_of_60Co", "surface_radioactivity_content_of_72Ga", "surface_radioactivity_content_of_72Zn", "surface_radioactivity_content_of_73Ga", "surface_radioactivity_content_of_75Ge", "surface_radioactivity_content_of_77As", "surface_radioactivity_content_of_77Ge", "surface_radioactivity_content_of_77mGe", "surface_radioactivity_content_of_78As", "surface_radioactivity_content_of_78Ge", "surface_radioactivity_content_of_79Se", "surface_radioactivity_content_of_81mSe", "surface_radioactivity_content_of_81Se", "surface_radioactivity_content_of_82Br", "surface_radioactivity_content_of_82mBr", "surface_radioactivity_content_of_83Br", "surface_radioactivity_content_of_83mKr", "surface_radioactivity_content_of_83mSe", "surface_radioactivity_content_of_83Se", "surface_radioactivity_content_of_84Br", "surface_radioactivity_content_of_84mBr", "surface_radioactivity_content_of_85Kr", "surface_radioactivity_content_of_85mKr", "surface_radioactivity_content_of_86mRb", "surface_radioactivity_content_of_86Rb", "surface_radioactivity_content_of_87Kr", "surface_radioactivity_content_of_87Rb", "surface_radioactivity_content_of_88Kr", "surface_radioactivity_content_of_88Rb", "surface_radioactivity_content_of_89Kr", "surface_radioactivity_content_of_89Rb", "surface_radioactivity_content_of_89Sr", "surface_radioactivity_content_of_90mY", "surface_radioactivity_content_of_90Sr", "surface_radioactivity_content_of_90Y", "surface_radioactivity_content_of_91mY", "surface_radioactivity_content_of_91Sr", "surface_radioactivity_content_of_91Y", "surface_radioactivity_content_of_92Sr", "surface_radioactivity_content_of_92Y", "surface_radioactivity_content_of_93Y", "surface_radioactivity_content_of_93Zr", "surface_radioactivity_content_of_94mNb", "surface_radioactivity_content_of_94Nb", "surface_radioactivity_content_of_94Y", "surface_radioactivity_content_of_95mNb", "surface_radioactivity_content_of_95Nb", "surface_radioactivity_content_of_95Y", "surface_radioactivity_content_of_95Zr", "surface_radioactivity_content_of_96Nb", "surface_radioactivity_content_of_97mNb", "surface_radioactivity_content_of_97Nb", "surface_radioactivity_content_of_97Zr", "surface_radioactivity_content_of_98Nb", "surface_radioactivity_content_of_99Mo", "surface_radioactivity_content_of_99mTc", "surface_radioactivity_content_of_99Tc", "surface_ratio_of_upwelling_radiance_emerging_from_sea_water_to_downwelling_radiative_flux_in_air", "surface_roughness_length", "surface_roughness_length_for_heat_in_air", "surface_roughness_length_for_humidity_in_air", "surface_roughness_length_for_momentum_in_air", "surface_runoff_amount", "surface_runoff_flux", "surface_snow_amount", "surface_snow_and_ice_melt_flux", "surface_snow_and_ice_melt_heat_flux", "surface_snow_and_ice_refreezing_flux", "surface_snow_area_fraction", "surface_snow_binary_mask", "surface_snow_density", "surface_snow_melt_amount", "surface_snow_melt_and_sublimation_heat_flux", "surface_snow_melt_flux", "surface_snow_melt_heat_flux", "surface_snow_sublimation_amount", "surface_snow_sublimation_heat_flux", "surface_snow_thickness", "surface_specific_humidity", "surface_temperature", "surface_temperature_anomaly", "surface_upward_eastward_stress_due_to_sea_surface_waves", "surface_upward_heat_flux_due_to_anthropogenic_energy_consumption", "surface_upward_heat_flux_in_air", "surface_upward_latent_heat_flux", "surface_upward_latent_heat_flux_due_to_sublimation", "surface_upward_mass_flux_of_ammonia", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change_excluding_forestry_and_agricultural_products", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_grazing", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_litter_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_vegetation_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_growth", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_maintenance", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_leaves", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_miscellaneous_living_matter", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_roots", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_respiration_in_soil", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_litter", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_soil", "surface_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_production", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_all_land_processes_excluding_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_emission_from_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mole_flux_of_carbon_dioxide", "surface_upward_mole_flux_of_dimethyl_sulfide", "surface_upward_northward_stress_due_to_sea_surface_waves", "surface_upward_sensible_heat_flux", "surface_upward_water_flux", "surface_upward_water_vapor_flux_in_air", "surface_upwelling_longwave_flux_in_air", "surface_upwelling_longwave_flux_in_air_assuming_clear_sky", "surface_upwelling_photosynthetic_photon_flux_in_air", "surface_upwelling_radiance_in_air", "surface_upwelling_radiance_in_air_emerging_from_sea_water", "surface_upwelling_radiance_in_air_reflected_by_sea_water", "surface_upwelling_radiance_in_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air", "surface_upwelling_radiance_per_unit_wavelength_in_air_emerging_from_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air_reflected_by_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_sea_water", "surface_upwelling_radiative_flux_per_unit_wavelength_in_air", "surface_upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_upwelling_shortwave_flux_in_air", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_water_amount", "surface_water_evaporation_flux", "syntax_test_quality_flag", "temperature_at_base_of_ice_sheet_model", "temperature_at_top_of_ice_sheet_model", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically_from_the_surface", "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "tendency_of_air_density", "tendency_of_air_pressure", "tendency_of_air_temperature", "tendency_of_air_temperature_due_to_advection", "tendency_of_air_temperature_due_to_boundary_layer_mixing", "tendency_of_air_temperature_due_to_convection", "tendency_of_air_temperature_due_to_diabatic_processes", "tendency_of_air_temperature_due_to_diffusion", "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", "tendency_of_air_temperature_due_to_dry_convection", "tendency_of_air_temperature_due_to_longwave_heating", "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_model_physics", "tendency_of_air_temperature_due_to_moist_convection", "tendency_of_air_temperature_due_to_radiative_heating", "tendency_of_air_temperature_due_to_shortwave_heating", "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_air_temperature_due_to_stratiform_precipitation", "tendency_of_air_temperature_due_to_turbulence", "tendency_of_atmosphere_dry_energy_content", "tendency_of_atmosphere_enthalpy_content_due_to_advection", "tendency_of_atmosphere_kinetic_energy_content_due_to_advection", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetone_due_to_emission", "tendency_of_atmosphere_mass_content_of_aceto_nitrile_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alkanes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alkenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alpha_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_aromatic_compounds_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_beta_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_forestry_and_agricultural_products", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_tetrachloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113a_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc114_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc115_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc11_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc12_due_to_emission", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_halon1202_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1211_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1301_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon2402_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcc140a_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc141b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc142b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc22_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_emission", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_limonene_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_methanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_bromide_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_chloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_monoterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_land_use_or_land_cover_change", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_soil", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition_into_stomata", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_peroxyacetyl_nitrate_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_peroxynitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_radon_due_to_emission", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sesquiterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_aqueous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_gaseous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_trimethylbenzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_water_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_deep_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_shallow_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_turbulence", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_per_unit_area", "tendency_of_atmosphere_mass_per_unit_area_due_to_advection", "tendency_of_atmosphere_mole_concentration_of_carbon_monoxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_nitrous_oxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_production", "tendency_of_atmosphere_moles_of_acetic_acid", "tendency_of_atmosphere_moles_of_aceto_nitrile", "tendency_of_atmosphere_moles_of_alpha_hexachlorocyclohexane", "tendency_of_atmosphere_moles_of_alpha_pinene", "tendency_of_atmosphere_moles_of_ammonia", "tendency_of_atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_atomic_bromine", "tendency_of_atmosphere_moles_of_atomic_chlorine", "tendency_of_atmosphere_moles_of_atomic_nitrogen", "tendency_of_atmosphere_moles_of_benzene", "tendency_of_atmosphere_moles_of_beta_pinene", "tendency_of_atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_bromine_chloride", "tendency_of_atmosphere_moles_of_bromine_monoxide", "tendency_of_atmosphere_moles_of_bromine_nitrate", "tendency_of_atmosphere_moles_of_brox_expressed_as_bromine", "tendency_of_atmosphere_moles_of_butane", "tendency_of_atmosphere_moles_of_carbon_dioxide", "tendency_of_atmosphere_moles_of_carbon_monoxide", "tendency_of_atmosphere_moles_of_carbon_tetrachloride", "tendency_of_atmosphere_moles_of_cfc11", "tendency_of_atmosphere_moles_of_cfc113", "tendency_of_atmosphere_moles_of_cfc113a", "tendency_of_atmosphere_moles_of_cfc114", "tendency_of_atmosphere_moles_of_cfc115", "tendency_of_atmosphere_moles_of_cfc12", "tendency_of_atmosphere_moles_of_chlorine_dioxide", "tendency_of_atmosphere_moles_of_chlorine_monoxide", "tendency_of_atmosphere_moles_of_chlorine_nitrate", "tendency_of_atmosphere_moles_of_clox_expressed_as_chlorine", "tendency_of_atmosphere_moles_of_dichlorine_peroxide", "tendency_of_atmosphere_moles_of_dimethyl_sulfide", "tendency_of_atmosphere_moles_of_dinitrogen_pentoxide", "tendency_of_atmosphere_moles_of_ethane", "tendency_of_atmosphere_moles_of_ethanol", "tendency_of_atmosphere_moles_of_ethene", "tendency_of_atmosphere_moles_of_ethyne", "tendency_of_atmosphere_moles_of_formaldehyde", "tendency_of_atmosphere_moles_of_formic_acid", "tendency_of_atmosphere_moles_of_gaseous_divalent_mercury", "tendency_of_atmosphere_moles_of_gaseous_elemental_mercury", "tendency_of_atmosphere_moles_of_halon1202", "tendency_of_atmosphere_moles_of_halon1211", "tendency_of_atmosphere_moles_of_halon1301", "tendency_of_atmosphere_moles_of_halon2402", "tendency_of_atmosphere_moles_of_hcc140a", "tendency_of_atmosphere_moles_of_hcfc141b", "tendency_of_atmosphere_moles_of_hcfc142b", "tendency_of_atmosphere_moles_of_hcfc22", "tendency_of_atmosphere_moles_of_hexachlorobiphenyl", "tendency_of_atmosphere_moles_of_hox_expressed_as_hydrogen", "tendency_of_atmosphere_moles_of_hydrogen_bromide", "tendency_of_atmosphere_moles_of_hydrogen_chloride", "tendency_of_atmosphere_moles_of_hydrogen_cyanide", "tendency_of_atmosphere_moles_of_hydrogen_peroxide", "tendency_of_atmosphere_moles_of_hydroperoxyl_radical", "tendency_of_atmosphere_moles_of_hydroxyl_radical", "tendency_of_atmosphere_moles_of_hypobromous_acid", "tendency_of_atmosphere_moles_of_hypochlorous_acid", "tendency_of_atmosphere_moles_of_inorganic_bromine", "tendency_of_atmosphere_moles_of_inorganic_chlorine", "tendency_of_atmosphere_moles_of_isoprene", "tendency_of_atmosphere_moles_of_limonene", "tendency_of_atmosphere_moles_of_methane", "tendency_of_atmosphere_moles_of_methanol", "tendency_of_atmosphere_moles_of_methyl_bromide", "tendency_of_atmosphere_moles_of_methyl_chloride", "tendency_of_atmosphere_moles_of_methyl_hydroperoxide", "tendency_of_atmosphere_moles_of_methyl_peroxy_radical", "tendency_of_atmosphere_moles_of_molecular_hydrogen", "tendency_of_atmosphere_moles_of_nitrate_radical", "tendency_of_atmosphere_moles_of_nitric_acid", "tendency_of_atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "tendency_of_atmosphere_moles_of_nitrogen_dioxide", "tendency_of_atmosphere_moles_of_nitrogen_monoxide", "tendency_of_atmosphere_moles_of_nitrous_acid", "tendency_of_atmosphere_moles_of_nitrous_oxide", "tendency_of_atmosphere_moles_of_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_nox_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_noy_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_ozone", "tendency_of_atmosphere_moles_of_peroxyacetyl_nitrate", "tendency_of_atmosphere_moles_of_peroxynitric_acid", "tendency_of_atmosphere_moles_of_propane", "tendency_of_atmosphere_moles_of_propene", "tendency_of_atmosphere_moles_of_radon", "tendency_of_atmosphere_moles_of_sulfate_dry_aerosol_particles", "tendency_of_atmosphere_moles_of_sulfur_dioxide", "tendency_of_atmosphere_moles_of_toluene", "tendency_of_atmosphere_moles_of_water_vapor", "tendency_of_atmosphere_moles_of_xylene", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_potential_energy_content_due_to_advection", "tendency_of_bedrock_altitude", "tendency_of_canopy_water_amount_due_to_evaporation_of_intercepted_precipitation", "tendency_of_change_in_land_ice_amount", "tendency_of_dry_energy_content_of_atmosphere_layer", "tendency_of_dry_static_energy_content_of_atmosphere_layer", "tendency_of_eastward_wind", "tendency_of_eastward_wind_due_to_advection", "tendency_of_eastward_wind_due_to_advection_by_northward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_advection_by_upward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_convection", "tendency_of_eastward_wind_due_to_diffusion", "tendency_of_eastward_wind_due_to_eliassen_palm_flux_divergence", "tendency_of_eastward_wind_due_to_gravity_wave_drag", "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_eastward_wind_due_to_numerical_artefacts", "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_enthalpy_content_of_atmosphere_layer_due_to_advection", "tendency_of_global_average_sea_level_change", "tendency_of_kinetic_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_land_ice_mass", "tendency_of_land_ice_mass_due_to_basal_mass_balance", "tendency_of_land_ice_mass_due_to_calving", "tendency_of_land_ice_mass_due_to_surface_mass_balance", "tendency_of_land_ice_thickness", "tendency_of_mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_dioxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nox_expressed_as_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_deep_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_shallow_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_turbulence", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_convective_cloud_ice_in_air", "tendency_of_mass_fraction_of_convective_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_aggregation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_bergeron_findeisen_process_from_cloud_liquid", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_deposition_and_sublimation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_evaporation_of_melting_ice", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_water_vapor", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_autoconversion", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_bergeron_findeisen_process_to_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_convection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_longwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_pressure_change", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_shortwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_turbulence", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_heterogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_melting_from_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_riming", "tendency_of_middle_atmosphere_moles_of_carbon_monoxide", "tendency_of_middle_atmosphere_moles_of_hcc140a", "tendency_of_middle_atmosphere_moles_of_methane", "tendency_of_middle_atmosphere_moles_of_methyl_bromide", "tendency_of_middle_atmosphere_moles_of_methyl_chloride", "tendency_of_middle_atmosphere_moles_of_molecular_hydrogen", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_dissolved_inorganic_carbon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_iron_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_silicon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_dissolution_from_inorganic_particles", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_scavenging_by_inorganic_particles", "tendency_of_mole_concentration_of_iron_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_and_photolytic_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_destruction", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_calcareous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diatoms", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diazotrophic_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_miscellaneous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_picophytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_nitrate_utilization", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_remineralization", "tendency_of_mole_concentration_of_silicon_in_sea_water_due_to_biological_production", "tendency_of_northward_wind", "tendency_of_northward_wind_due_to_advection", "tendency_of_northward_wind_due_to_convection", "tendency_of_northward_wind_due_to_diffusion", "tendency_of_northward_wind_due_to_gravity_wave_drag", "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_northward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_ocean_barotropic_streamfunction", "tendency_of_ocean_eddy_kinetic_energy_content_due_to_parameterized_eddy_advection", "tendency_of_ocean_mole_content_of_aragonite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_calcite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_deposition_and_fixation_and_runoff", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_fixation", "tendency_of_ocean_mole_content_of_inorganic_carbon", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_iron_due_to_biological_production", "tendency_of_ocean_mole_content_of_iron_due_to_deposition_and_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "tendency_of_ocean_mole_content_of_nitrogen_due_to_biological_production", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_phosphorus_due_to_biological_production", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_silicon_due_to_biological_production", "tendency_of_ocean_potential_energy_content", "tendency_of_ocean_potential_energy_content_due_to_background", "tendency_of_ocean_potential_energy_content_due_to_tides", "tendency_of_potential_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_convection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_diffusion", "tendency_of_sea_ice_amount_due_to_basal_melting", "tendency_of_sea_ice_amount_due_to_congelation_ice_accumulation", "tendency_of_sea_ice_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_sea_ice_amount_due_to_frazil_ice_accumulation_in_leads", "tendency_of_sea_ice_amount_due_to_lateral_growth_of_ice_floes", "tendency_of_sea_ice_amount_due_to_lateral_melting", "tendency_of_sea_ice_amount_due_to_sea_ice_dynamics", "tendency_of_sea_ice_amount_due_to_sea_ice_thermodynamics", "tendency_of_sea_ice_amount_due_to_surface_melting", "tendency_of_sea_ice_area_fraction_due_to_dynamics", "tendency_of_sea_ice_area_fraction_due_to_ridging", "tendency_of_sea_ice_area_fraction_due_to_thermodynamics", "tendency_of_sea_ice_thickness_due_to_dynamics", "tendency_of_sea_ice_thickness_due_to_thermodynamics", "tendency_of_sea_surface_height_above_mean_sea_level", "tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_salinity", "tendency_of_sea_water_salinity_due_to_advection", "tendency_of_sea_water_salinity_due_to_horizontal_mixing", "tendency_of_sea_water_salinity_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_due_to_sea_ice_thermodynamics", "tendency_of_sea_water_salinity_due_to_vertical_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_residual_mean_advection", "tendency_of_sea_water_temperature", "tendency_of_sea_water_temperature_due_to_advection", "tendency_of_sea_water_temperature_due_to_horizontal_mixing", "tendency_of_sea_water_temperature_due_to_parameterized_eddy_advection", "tendency_of_sea_water_temperature_due_to_vertical_mixing", "tendency_of_soil_and_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_soil_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fertilization", "tendency_of_specific_humidity", "tendency_of_specific_humidity_due_to_advection", "tendency_of_specific_humidity_due_to_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_convection", "tendency_of_specific_humidity_due_to_diffusion", "tendency_of_specific_humidity_due_to_model_physics", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_stratiform_precipitation", "tendency_of_surface_air_pressure", "tendency_of_surface_snow_amount", "tendency_of_surface_snow_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_surface_snow_amount_due_to_drifting_into_sea", "tendency_of_surface_snow_amount_due_to_sea_ice_dynamics", "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", "tendency_of_troposphere_moles_of_carbon_monoxide", "tendency_of_troposphere_moles_of_hcc140a", "tendency_of_troposphere_moles_of_hcfc22", "tendency_of_troposphere_moles_of_methane", "tendency_of_troposphere_moles_of_methyl_bromide", "tendency_of_troposphere_moles_of_methyl_chloride", "tendency_of_troposphere_moles_of_molecular_hydrogen", "tendency_of_upward_air_velocity", "tendency_of_upward_air_velocity_due_to_advection", "tendency_of_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_wind_speed_due_to_convection", "tendency_of_wind_speed_due_to_gravity_wave_drag", "thermal_conductivity_of_frozen_ground", "thermal_energy_content_of_surface_snow", "thermodynamic_phase_of_cloud_water_particles_at_cloud_top", "thermosteric_change_in_mean_sea_level", "thermosteric_change_in_sea_surface_height", "thickness_of_convective_rainfall_amount", "thickness_of_convective_snowfall_amount", "thickness_of_ice_on_sea_ice_melt_pond", "thickness_of_liquid_water_cloud", "thickness_of_rainfall_amount", "thickness_of_snowfall_amount", "thickness_of_stratiform_rainfall_amount", "thickness_of_stratiform_snowfall_amount", "thunderstorm_probability", "tidal_sea_surface_height_above_lowest_astronomical_tide", "tidal_sea_surface_height_above_mean_higher_high_water", "tidal_sea_surface_height_above_mean_lower_low_water", "tidal_sea_surface_height_above_mean_low_water_springs", "tidal_sea_surface_height_above_mean_sea_level", "time", "time_of_maximum_flood_depth", "time_sample_difference_due_to_collocation", "time_when_flood_water_falls_below_threshold", "time_when_flood_water_rises_above_threshold", "toa_adjusted_longwave_forcing", "toa_adjusted_radiative_forcing", "toa_adjusted_shortwave_forcing", "toa_bidirectional_reflectance", "toa_brightness_temperature", "toa_brightness_temperature_assuming_clear_sky", "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", "toa_brightness_temperature_of_standard_scene", "toa_cloud_radiative_effect", "toa_incoming_shortwave_flux", "toa_instantaneous_longwave_forcing", "toa_instantaneous_radiative_forcing", "toa_instantaneous_shortwave_forcing", "toa_longwave_cloud_radiative_effect", "toa_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "toa_net_downward_longwave_flux", "toa_net_downward_longwave_flux_assuming_clear_sky", "toa_net_downward_radiative_flux", "toa_net_downward_shortwave_flux", "toa_net_downward_shortwave_flux_assuming_clear_sky", "toa_net_upward_longwave_flux", "toa_net_upward_longwave_flux_assuming_clear_sky", "toa_net_upward_shortwave_flux", "toa_outgoing_longwave_flux", "toa_outgoing_longwave_flux_assuming_clear_sky", "toa_outgoing_longwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_outgoing_radiance_per_unit_wavelength", "toa_outgoing_radiance_per_unit_wavelength_due_to_solar_induced_fluorescence", "toa_outgoing_radiance_per_unit_wavenumber", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_target", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_target", "toa_outgoing_shortwave_flux", "toa_outgoing_shortwave_flux_assuming_clear_sky", "toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol", "toa_outgoing_shortwave_flux_assuming_no_aerosol", "toa_outgoing_shortwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_shortwave_cloud_radiative_effect", "to_direction_of_air_velocity_relative_to_sea_water", "to_direction_of_surface_downward_stress", "tracer_lifetime", "transpiration_amount", "transpiration_flux", "tropical_cyclone_eye_brightness_temperature", "tropical_cyclone_maximum_sustained_wind_speed", "tropopause_adjusted_longwave_forcing", "tropopause_adjusted_radiative_forcing", "tropopause_adjusted_shortwave_forcing", "tropopause_air_pressure", "tropopause_air_temperature", "tropopause_altitude", "tropopause_downwelling_longwave_flux", "tropopause_instantaneous_longwave_forcing", "tropopause_instantaneous_radiative_forcing", "tropopause_instantaneous_shortwave_forcing", "tropopause_net_downward_longwave_flux", "tropopause_net_downward_shortwave_flux", "tropopause_upwelling_shortwave_flux", "troposphere_mole_content_of_bromine_monoxide", "troposphere_mole_content_of_formaldehyde", "troposphere_mole_content_of_glyoxal", "troposphere_mole_content_of_iodine_monoxide", "troposphere_mole_content_of_nitrogen_dioxide", "troposphere_mole_content_of_ozone", "troposphere_mole_content_of_sulfur_dioxide", "turbulent_mixing_length_of_sea_water", "ultraviolet_index", "ultraviolet_index_assuming_clear_sky", "ultraviolet_index_assuming_overcast_sky", "upward_air_velocity", "upward_derivative_of_eastward_wind", "upward_derivative_of_northward_wind", "upward_derivative_of_wind_from_direction", "upward_dry_static_energy_flux_due_to_diffusion", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_eastward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_westward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_orographic_gravity_waves", "upward_eastward_stress_at_sea_ice_base", "upward_eliassen_palm_flux_in_air", "upward_geothermal_heat_flux_at_ground_level_in_land_ice", "upward_geothermal_heat_flux_at_sea_floor", "upward_heat_flux_at_ground_level_in_snow", "upward_heat_flux_at_ground_level_in_soil", "upward_heat_flux_in_air", "upward_heat_flux_in_sea_water_due_to_convection", "upward_latent_heat_flux_in_air", "upward_mass_flux_of_air", "upward_northward_stress_at_sea_ice_base", "upward_ocean_mass_transport", "upward_sea_ice_basal_heat_flux", "upward_sea_water_velocity", "upward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "upward_sensible_heat_flux_in_air", "upward_transformed_eulerian_mean_air_velocity", "upward_upward_derivative_of_geopotential", "upward_water_vapor_flux_in_air", "upward_water_vapor_flux_in_air_due_to_diffusion", "upward_x_stress_at_sea_ice_base", "upward_y_stress_at_sea_ice_base", "upwelling_longwave_flux_in_air", "upwelling_longwave_flux_in_air_assuming_clear_sky", "upwelling_longwave_radiance_in_air", "upwelling_radiance_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "upwelling_shortwave_flux_in_air", "upwelling_shortwave_flux_in_air_assuming_clear_sky", "upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "upwelling_shortwave_radiance_in_air", "vegetation_area_fraction", "vegetation_carbon_content", "vegetation_mass_content_of_13C", "vegetation_mass_content_of_14C", "vegetation_mass_content_of_nitrogen", "vertical_component_of_ocean_xy_tracer_diffusivity", "vertical_navigation_clearance_above_waterway_surface", "virtual_salt_flux_correction", "virtual_salt_flux_into_sea_water", "virtual_salt_flux_into_sea_water_due_to_evaporation", "virtual_salt_flux_into_sea_water_due_to_newtonian_relaxation", "virtual_salt_flux_into_sea_water_due_to_rainfall", "virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "virtual_salt_flux_into_sea_water_from_rivers", "virtual_temperature", "visibility_in_air", "volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles", "volume_absorption_coefficient_of_radiative_flux_in_sea_water", "volume_absorption_coefficient_of_radiative_flux_in_sea_water_due_to_dissolved_organic_matter", "volume_attenuated_backwards_scattering_function_in_air", "volume_attenuated_backwards_scattering_function_in_air_assuming_no_aerosol_or_cloud", "volume_attenuation_coefficient_of_downwelling_radiative_flux_in_sea_water", "volume_backwards_scattering_coefficient_in_air_due_to_dried_aerosol_particles", "volume_backwards_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water_corrected_for_pure_water_attenuance", "volume_extinction_coefficient_in_air_due_to_ambient_aerosol_particles", "volume_extinction_coefficient_in_air_due_to_cloud_particles", "volume_fraction_of_clay_in_soil", "volume_fraction_of_condensed_water_in_soil", "volume_fraction_of_condensed_water_in_soil_at_critical_point", "volume_fraction_of_condensed_water_in_soil_at_field_capacity", "volume_fraction_of_condensed_water_in_soil_at_wilting_point", "volume_fraction_of_condensed_water_in_soil_pores", "volume_fraction_of_frozen_water_in_soil", "volume_fraction_of_oxygen_in_sea_water", "volume_fraction_of_sand_in_soil", "volume_fraction_of_silt_in_soil", "volume_mixing_ratio_of_oxygen_at_stp_in_sea_water", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_dried_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_scattering_function_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_function_of_radiative_flux_in_sea_water", "water_evaporation_amount", "water_evaporation_amount_from_canopy", "water_evaporation_flux_from_canopy", "water_evaporation_flux_from_soil", "water_evapotranspiration_flux", "water_flux_correction", "water_flux_into_sea_water", "water_flux_into_sea_water_due_to_sea_ice_thermodynamics", "water_flux_into_sea_water_due_to_surface_drainage", "water_flux_into_sea_water_from_icebergs", "water_flux_into_sea_water_from_land_ice", "water_flux_into_sea_water_from_rivers", "water_flux_into_sea_water_from_rivers_and_surface_downward_water_flux", "water_flux_into_sea_water_without_flux_correction", "water_flux_out_of_sea_ice_and_sea_water", "water_flux_out_of_sea_water", "water_flux_out_of_sea_water_due_to_newtonian_relaxation", "water_flux_out_of_sea_water_due_to_sea_ice_thermodynamics", "water_potential_evaporation_amount", "water_potential_evaporation_flux", "water_sublimation_flux", "water_surface_height_above_reference_datum", "water_surface_reference_datum_altitude", "water_table_depth", "water_vapor_partial_pressure_in_air", "water_vapor_saturation_deficit_in_air", "water_volume_transport_in_river_channel", "water_volume_transport_into_sea_water_from_rivers", "wave_frequency", "westward_upward_derivative_of_geopotential", "westward_westward_derivative_of_geopotential", "wet_bulb_potential_temperature", "wet_bulb_temperature", "wind_chill_of_air_temperature", "wind_from_direction", "wind_gust_from_direction", "wind_mixing_energy_flux_into_sea_water", "wind_speed", "wind_speed_of_gust", "wind_speed_shear", "wind_to_direction", "wood_debris_mass_content_of_carbon", "wood_debris_mass_content_of_nitrogen", "x_derivative_of_ocean_rigid_lid_pressure", "x_heat_flux_in_sea_water_due_to_advection", "x_wind", "x_wind_gust", "y_derivative_of_ocean_rigid_lid_pressure", "y_heat_flux_in_sea_water_due_to_advection", "y_wind", "y_wind_gust", "zenith_angle"], "description": "Options", "index": [0], "layout": "IPY_MODEL_483124f7f42d4384ae301928ed3e952e", "rows": 10, "style": "IPY_MODEL_1ec15ed8df21422ba379413c551ad2cb"}}, "d5efc2e4c35449d1933afd7e0218d542": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextModel", "state": {"description": "nickname", "layout": "IPY_MODEL_ddf85189776948bc8fe04f5ff46c2352", "style": "IPY_MODEL_0c00d271116f4e54820186c795a3a339", "value": "temp"}}, "d7f7ef41a41440b986c0c98c8741cebb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "da1f0dc7fd9f4e1585c0766043e0317b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["acoustic_signal_roundtrip_travel_time_in_sea_water", "aerodynamic_particle_diameter", "aerodynamic_resistance", "age_of_stratospheric_air", "aggregate_quality_flag", "air_density", "air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", "air_pressure_at_cloud_base", "air_pressure_at_cloud_top", "air_pressure_at_convective_cloud_base", "air_pressure_at_convective_cloud_top", "air_pressure_at_freezing_level", "air_pressure_at_mean_sea_level", "air_pressure_at_top_of_atmosphere_model", "air_pseudo_equivalent_potential_temperature", "air_pseudo_equivalent_temperature", "air_temperature", "air_temperature_anomaly", "air_temperature_at_cloud_top", "air_temperature_at_effective_cloud_top_defined_by_infrared_radiation", "air_temperature_lapse_rate", "air_temperature_threshold", "altimeter_range", "altimeter_range_correction_due_to_dry_troposphere", "altimeter_range_correction_due_to_ionosphere", "altimeter_range_correction_due_to_wet_troposphere", "altitude", "altitude_at_top_of_atmosphere_model", "altitude_at_top_of_dry_convection", "amplitude_of_global_average_sea_level_change", "angle_of_rotation_from_east_to_x", "angle_of_rotation_from_east_to_y", "angle_of_rotation_from_solar_azimuth_to_platform_azimuth", "angstrom_exponent_of_ambient_aerosol_in_air", "apparent_air_temperature", "apparent_oxygen_utilization", "area_fraction", "area_fraction_below_surface", "area_fraction_of_day_defined_by_solar_zenith_angle", "area_fraction_of_night_defined_by_solar_zenith_angle", "area_fraction_of_twilight_defined_by_solar_zenith_angle", "area_type", "asymmetry_factor_of_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_absorption_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_boundary_layer_thickness", "atmosphere_convective_available_potential_energy", "atmosphere_convective_available_potential_energy_wrt_surface", "atmosphere_convective_inhibition", "atmosphere_convective_inhibition_wrt_surface", "atmosphere_downdraft_convective_mass_flux", "atmosphere_dry_energy_content", "atmosphere_dry_static_energy_content", "atmosphere_eastward_stress_due_to_gravity_wave_drag", "atmosphere_energy_content", "atmosphere_enthalpy_content", "atmosphere_heat_diffusivity", "atmosphere_helicity", "atmosphere_horizontal_streamfunction", "atmosphere_horizontal_velocity_potential", "atmosphere_hybrid_height_coordinate", "atmosphere_hybrid_sigma_pressure_coordinate", "atmosphere_kinetic_energy_content", "atmosphere_layer_thickness_expressed_as_geopotential_height_difference", "atmosphere_level_of_free_convection", "atmosphere_level_of_free_convection_wrt_surface", "atmosphere_lifting_condensation_level", "atmosphere_lifting_condensation_level_wrt_surface", "atmosphere_ln_pressure_coordinate", "atmosphere_mass_content_of_acetic_acid", "atmosphere_mass_content_of_aceto_nitrile", "atmosphere_mass_content_of_alkanes", "atmosphere_mass_content_of_alkenes", "atmosphere_mass_content_of_alpha_hexachlorocyclohexane", "atmosphere_mass_content_of_alpha_pinene", "atmosphere_mass_content_of_ammonia", "atmosphere_mass_content_of_ammonium_dry_aerosol_particles", "atmosphere_mass_content_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_aromatic_compounds", "atmosphere_mass_content_of_atomic_bromine", "atmosphere_mass_content_of_atomic_chlorine", "atmosphere_mass_content_of_atomic_nitrogen", "atmosphere_mass_content_of_benzene", "atmosphere_mass_content_of_beta_pinene", "atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_bromine_chloride", "atmosphere_mass_content_of_bromine_monoxide", "atmosphere_mass_content_of_bromine_nitrate", "atmosphere_mass_content_of_brox_expressed_as_bromine", "atmosphere_mass_content_of_butane", "atmosphere_mass_content_of_carbon_dioxide", "atmosphere_mass_content_of_carbon_monoxide", "atmosphere_mass_content_of_carbon_tetrachloride", "atmosphere_mass_content_of_cfc11", "atmosphere_mass_content_of_cfc113", "atmosphere_mass_content_of_cfc113a", "atmosphere_mass_content_of_cfc114", "atmosphere_mass_content_of_cfc115", "atmosphere_mass_content_of_cfc12", "atmosphere_mass_content_of_chlorine_dioxide", "atmosphere_mass_content_of_chlorine_monoxide", "atmosphere_mass_content_of_chlorine_nitrate", "atmosphere_mass_content_of_cloud_condensed_water", "atmosphere_mass_content_of_cloud_ice", "atmosphere_mass_content_of_cloud_liquid_water", "atmosphere_mass_content_of_clox_expressed_as_chlorine", "atmosphere_mass_content_of_convective_cloud_condensed_water", "atmosphere_mass_content_of_convective_cloud_ice", "atmosphere_mass_content_of_convective_cloud_liquid_water", "atmosphere_mass_content_of_dichlorine_peroxide", "atmosphere_mass_content_of_dimethyl_sulfide", "atmosphere_mass_content_of_dinitrogen_pentoxide", "atmosphere_mass_content_of_dust_dry_aerosol_particles", "atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles", "atmosphere_mass_content_of_ethane", "atmosphere_mass_content_of_ethanol", "atmosphere_mass_content_of_ethene", "atmosphere_mass_content_of_ethyne", "atmosphere_mass_content_of_formaldehyde", "atmosphere_mass_content_of_formic_acid", "atmosphere_mass_content_of_gaseous_divalent_mercury", "atmosphere_mass_content_of_gaseous_elemental_mercury", "atmosphere_mass_content_of_graupel", "atmosphere_mass_content_of_graupel_and_hail", "atmosphere_mass_content_of_hail", "atmosphere_mass_content_of_halon1202", "atmosphere_mass_content_of_halon1211", "atmosphere_mass_content_of_halon1301", "atmosphere_mass_content_of_halon2402", "atmosphere_mass_content_of_hcc140a", "atmosphere_mass_content_of_hcfc141b", "atmosphere_mass_content_of_hcfc142b", "atmosphere_mass_content_of_hcfc22", "atmosphere_mass_content_of_hexachlorobiphenyl", "atmosphere_mass_content_of_hox_expressed_as_hydrogen", "atmosphere_mass_content_of_hydrogen_bromide", "atmosphere_mass_content_of_hydrogen_chloride", "atmosphere_mass_content_of_hydrogen_cyanide", "atmosphere_mass_content_of_hydrogen_peroxide", "atmosphere_mass_content_of_hydroperoxyl_radical", "atmosphere_mass_content_of_hydroxyl_radical", "atmosphere_mass_content_of_hypobromous_acid", "atmosphere_mass_content_of_hypochlorous_acid", "atmosphere_mass_content_of_inorganic_bromine", "atmosphere_mass_content_of_inorganic_chlorine", "atmosphere_mass_content_of_isoprene", "atmosphere_mass_content_of_limonene", "atmosphere_mass_content_of_liquid_precipitation", "atmosphere_mass_content_of_mercury_dry_aerosol_particles", "atmosphere_mass_content_of_methane", "atmosphere_mass_content_of_methanol", "atmosphere_mass_content_of_methyl_bromide", "atmosphere_mass_content_of_methyl_chloride", "atmosphere_mass_content_of_methyl_hydroperoxide", "atmosphere_mass_content_of_methyl_peroxy_radical", "atmosphere_mass_content_of_molecular_hydrogen", "atmosphere_mass_content_of_nitrate_dry_aerosol_particles", "atmosphere_mass_content_of_nitrate_radical", "atmosphere_mass_content_of_nitric_acid", "atmosphere_mass_content_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_mass_content_of_nitrogen_monoxide", "atmosphere_mass_content_of_nitrous_acid", "atmosphere_mass_content_of_nitrous_oxide", "atmosphere_mass_content_of_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_nox_expressed_as_nitrogen", "atmosphere_mass_content_of_noy_expressed_as_nitrogen", "atmosphere_mass_content_of_oxygenated_hydrocarbons", "atmosphere_mass_content_of_ozone", "atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_peroxyacetyl_nitrate", "atmosphere_mass_content_of_peroxynitric_acid", "atmosphere_mass_content_of_peroxy_radicals", "atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_propane", "atmosphere_mass_content_of_propene", "atmosphere_mass_content_of_radon", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_expressed_as_cations", "atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_snow", "atmosphere_mass_content_of_sulfate", "atmosphere_mass_content_of_sulfate_ambient_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur", "atmosphere_mass_content_of_sulfur_dioxide", "atmosphere_mass_content_of_terpenes", "atmosphere_mass_content_of_toluene", "atmosphere_mass_content_of_volcanic_ash", "atmosphere_mass_content_of_water", "atmosphere_mass_content_of_water_in_ambient_aerosol_particles", "atmosphere_mass_content_of_water_vapor", "atmosphere_mass_content_of_xylene", "atmosphere_mass_of_air_per_unit_area", "atmosphere_mass_of_carbon_dioxide", "atmosphere_mass_per_unit_area", "atmosphere_mole_content_of_carbon_monoxide", "atmosphere_mole_content_of_methane", "atmosphere_mole_content_of_nitrogen_dioxide", "atmosphere_mole_content_of_ozone", "atmosphere_mole_content_of_water_vapor", "atmosphere_moles_of_acetic_acid", "atmosphere_moles_of_aceto_nitrile", "atmosphere_moles_of_alpha_hexachlorocyclohexane", "atmosphere_moles_of_alpha_pinene", "atmosphere_moles_of_ammonia", "atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_atomic_bromine", "atmosphere_moles_of_atomic_chlorine", "atmosphere_moles_of_atomic_nitrogen", "atmosphere_moles_of_benzene", "atmosphere_moles_of_beta_pinene", "atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_bromine_chloride", "atmosphere_moles_of_bromine_monoxide", "atmosphere_moles_of_bromine_nitrate", "atmosphere_moles_of_brox_expressed_as_bromine", "atmosphere_moles_of_butane", "atmosphere_moles_of_carbon_dioxide", "atmosphere_moles_of_carbon_monoxide", "atmosphere_moles_of_carbon_tetrachloride", "atmosphere_moles_of_cfc11", "atmosphere_moles_of_cfc113", "atmosphere_moles_of_cfc113a", "atmosphere_moles_of_cfc114", "atmosphere_moles_of_cfc115", "atmosphere_moles_of_cfc12", "atmosphere_moles_of_chlorine_dioxide", "atmosphere_moles_of_chlorine_monoxide", "atmosphere_moles_of_chlorine_nitrate", "atmosphere_moles_of_clox_expressed_as_chlorine", "atmosphere_moles_of_dichlorine_peroxide", "atmosphere_moles_of_dimethyl_sulfide", "atmosphere_moles_of_dinitrogen_pentoxide", "atmosphere_moles_of_ethane", "atmosphere_moles_of_ethanol", "atmosphere_moles_of_ethene", "atmosphere_moles_of_ethyne", "atmosphere_moles_of_formaldehyde", "atmosphere_moles_of_formic_acid", "atmosphere_moles_of_gaseous_divalent_mercury", "atmosphere_moles_of_gaseous_elemental_mercury", "atmosphere_moles_of_halon1202", "atmosphere_moles_of_halon1211", "atmosphere_moles_of_halon1301", "atmosphere_moles_of_halon2402", "atmosphere_moles_of_hcc140a", "atmosphere_moles_of_hcfc141b", "atmosphere_moles_of_hcfc142b", "atmosphere_moles_of_hcfc22", "atmosphere_moles_of_hexachlorobiphenyl", "atmosphere_moles_of_hox_expressed_as_hydrogen", "atmosphere_moles_of_hydrogen_bromide", "atmosphere_moles_of_hydrogen_chloride", "atmosphere_moles_of_hydrogen_cyanide", "atmosphere_moles_of_hydrogen_peroxide", "atmosphere_moles_of_hydroperoxyl_radical", "atmosphere_moles_of_hydroxyl_radical", "atmosphere_moles_of_hypobromous_acid", "atmosphere_moles_of_hypochlorous_acid", "atmosphere_moles_of_inorganic_bromine", "atmosphere_moles_of_inorganic_chlorine", "atmosphere_moles_of_isoprene", "atmosphere_moles_of_limonene", "atmosphere_moles_of_methane", "atmosphere_moles_of_methanol", "atmosphere_moles_of_methyl_bromide", "atmosphere_moles_of_methyl_chloride", "atmosphere_moles_of_methyl_hydroperoxide", "atmosphere_moles_of_methyl_peroxy_radical", "atmosphere_moles_of_molecular_hydrogen", "atmosphere_moles_of_nitrate_radical", "atmosphere_moles_of_nitric_acid", "atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_moles_of_nitrogen_dioxide", "atmosphere_moles_of_nitrogen_monoxide", "atmosphere_moles_of_nitrous_acid", "atmosphere_moles_of_nitrous_oxide", "atmosphere_moles_of_nmvoc_expressed_as_carbon", "atmosphere_moles_of_nox_expressed_as_nitrogen", "atmosphere_moles_of_noy_expressed_as_nitrogen", "atmosphere_moles_of_ozone", "atmosphere_moles_of_peroxyacetyl_nitrate", "atmosphere_moles_of_peroxynitric_acid", "atmosphere_moles_of_propane", "atmosphere_moles_of_propene", "atmosphere_moles_of_radon", "atmosphere_moles_of_sulfur_dioxide", "atmosphere_moles_of_toluene", "atmosphere_moles_of_water_vapor", "atmosphere_moles_of_xylene", "atmosphere_momentum_diffusivity", "atmosphere_net_rate_of_absorption_of_longwave_energy", "atmosphere_net_rate_of_absorption_of_shortwave_energy", "atmosphere_net_upward_convective_mass_flux", "atmosphere_net_upward_deep_convective_mass_flux", "atmosphere_net_upward_shallow_convective_mass_flux", "atmosphere_northward_stress_due_to_gravity_wave_drag", "atmosphere_number_content_of_aerosol_particles", "atmosphere_number_content_of_cloud_droplets", "atmosphere_number_content_of_ice_crystals", "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_ammonium_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_optical_thickness_due_to_cloud", "atmosphere_optical_thickness_due_to_convective_cloud", "atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_dust_dry_aerosol_particles", "atmosphere_optical_thickness_due_to_nitrate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm10_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm1_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm2p5_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_stratiform_cloud", "atmosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_water_in_ambient_aerosol_particles", "atmosphere_potential_energy_content", "atmosphere_sigma_coordinate", "atmosphere_sleve_coordinate", "atmosphere_stability_k_index", "atmosphere_stability_showalter_index", "atmosphere_stability_total_totals_index", "atmosphere_transformed_eulerian_mean_meridional_overturning_mass_streamfunction", "atmosphere_updraft_convective_mass_flux", "atmosphere_upward_absolute_vorticity", "atmosphere_upward_relative_vorticity", "atmosphere_x_relative_vorticity", "atmosphere_y_relative_vorticity", "attenuated_signal_test_quality_flag", "automated_tropical_cyclone_forecasting_system_storm_identifier", "backscattering_ratio_in_air", "baroclinic_eastward_sea_water_velocity", "baroclinic_northward_sea_water_velocity", "barometric_altitude", "barotropic_eastward_sea_water_velocity", "barotropic_northward_sea_water_velocity", "barotropic_sea_water_x_velocity", "barotropic_sea_water_y_velocity", "basal_downward_heat_flux_in_sea_ice", "baseflow_amount", "beam_consistency_indicator_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "beaufort_wind_force", "bedrock_altitude", "bedrock_altitude_change_due_to_isostatic_adjustment", "biological_taxon_lsid", "biological_taxon_name", "bioluminescent_photon_rate_in_sea_water", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "brunt_vaisala_frequency_in_air", "burned_area_fraction", "canopy_and_surface_water_amount", "canopy_height", "canopy_resistance_to_ozone_dry_deposition", "canopy_snow_amount", "canopy_temperature", "canopy_throughfall_flux", "canopy_water_amount", "carbon_mass_content_of_forestry_and_agricultural_products", "carbon_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_litter_and_soil_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_soil_from_litter", "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", "cell_thickness", "change_in_atmosphere_energy_content_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_energy_content_of_atmosphere_layer_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_land_ice_amount", "change_over_time_in_amount_of_ice_and_snow_on_land", "change_over_time_in_atmosphere_mass_content_of_water_due_to_advection", "change_over_time_in_canopy_water_amount", "change_over_time_in_groundwater_amount", "change_over_time_in_land_surface_liquid_water_amount", "change_over_time_in_land_water_amount", "change_over_time_in_mass_content_of_water_in_soil", "change_over_time_in_river_water_amount", "change_over_time_in_sea_water_absolute_salinity", "change_over_time_in_sea_water_conservative_temperature", "change_over_time_in_sea_water_density", "change_over_time_in_sea_water_neutral_density", "change_over_time_in_sea_water_potential_density", "change_over_time_in_sea_water_potential_temperature", "change_over_time_in_sea_water_practical_salinity", "change_over_time_in_sea_water_preformed_salinity", "change_over_time_in_sea_water_salinity", "change_over_time_in_sea_water_specific_potential_enthalpy", "change_over_time_in_sea_water_temperature", "change_over_time_in_surface_snow_amount", "change_over_time_in_thermal_energy_content_of_ice_and_snow_on_land", "change_over_time_in_thermal_energy_content_of_vegetation_and_litter_and_soil", "charnock_coefficient_for_surface_roughness_length_for_momentum_in_air", "clear_sky_area_fraction", "climatology_test_quality_flag", "cloud_area_fraction", "cloud_area_fraction_in_atmosphere_layer", "cloud_base_altitude", "cloud_ice_mixing_ratio", "cloud_liquid_water_mixing_ratio", "cloud_top_altitude", "colony_forming_unit_number_concentration_of_biological_taxon_in_sea_water", "compressive_strength_of_sea_ice", "concentration_of_colored_dissolved_organic_matter_in_sea_water_expressed_as_equivalent_mass_fraction_of_quinine_sulfate_dihydrate", "convection_time_fraction", "convective_cloud_area_fraction", "convective_cloud_area_fraction_in_atmosphere_layer", "convective_cloud_base_altitude", "convective_cloud_base_height", "convective_cloud_longwave_emissivity", "convective_cloud_top_altitude", "convective_cloud_top_height", "convective_precipitation_amount", "convective_precipitation_flux", "convective_precipitation_rate", "convective_rainfall_amount", "convective_rainfall_flux", "convective_rainfall_rate", "convective_snowfall_amount", "convective_snowfall_flux", "coriolis_parameter", "correction_for_model_negative_specific_humidity", "covariance_over_longitude_of_northward_wind_and_air_temperature", "depth", "depth_at_base_of_unfrozen_ground", "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", "depth_at_shallowest_isotherm_defined_by_soil_temperature", "depth_at_shallowest_local_minimum_in_vertical_profile_of_mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "depth_below_geoid", "depth_below_sea_floor", "depth_of_isosurface_of_sea_water_potential_temperature", "dew_point_depression", "dew_point_temperature", "diameter_of_ambient_aerosol_particles", "difference_between_sea_surface_temperature_and_air_temperature", "diffuse_downwelling_shortwave_flux_in_air", "diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "dimensionless_exner_function", "direct_downwelling_shortwave_flux_in_air", "direction_of_radial_vector_away_from_instrument", "direction_of_radial_vector_toward_instrument", "direction_of_sea_ice_displacement", "direction_of_sea_ice_velocity", "distance_from_geocenter", "distance_from_sun", "distance_from_tropical_cyclone_center_to_leading_edge_of_displaced_convection", "divergence_of_sea_ice_velocity", "downward_air_velocity", "downward_dry_static_energy_flux_due_to_diffusion", "downward_eastward_momentum_flux_in_air", "downward_eastward_momentum_flux_in_air_due_to_diffusion", "downward_eastward_stress_at_sea_ice_base", "downward_heat_flux_at_ground_level_in_snow", "downward_heat_flux_at_ground_level_in_soil", "downward_heat_flux_in_air", "downward_heat_flux_in_floating_ice", "downward_heat_flux_in_sea_ice", "downward_heat_flux_in_soil", "downward_liquid_water_mass_flux_into_groundwater", "downward_northward_momentum_flux_in_air", "downward_northward_momentum_flux_in_air_due_to_diffusion", "downward_northward_stress_at_sea_ice_base", "downward_sea_ice_basal_salt_flux", "downward_water_vapor_flux_in_air_due_to_diffusion", "downward_x_stress_at_sea_ice_base", "downward_x_stress_at_sea_water_surface", "downward_x_stress_correction_at_sea_water_surface", "downward_y_stress_at_sea_ice_base", "downward_y_stress_at_sea_water_surface", "downward_y_stress_correction_at_sea_water_surface", "downwelling_photon_flux_in_sea_water", "downwelling_photon_flux_per_unit_wavelength_in_sea_water", "downwelling_photon_radiance_in_sea_water", "downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "downwelling_photon_spherical_irradiance_in_sea_water", "downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "downwelling_photosynthetic_photon_flux_in_sea_water", "downwelling_photosynthetic_photon_radiance_in_sea_water", "downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "downwelling_photosynthetic_radiance_in_sea_water", "downwelling_photosynthetic_radiative_flux_in_sea_water", "downwelling_photosynthetic_spherical_irradiance_in_sea_water", "downwelling_radiance_in_sea_water", "downwelling_radiance_per_unit_wavelength_in_air", "downwelling_radiance_per_unit_wavelength_in_sea_water", "downwelling_radiative_flux_in_sea_water", "downwelling_radiative_flux_per_unit_wavelength_in_air", "downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "downwelling_shortwave_flux_in_air", "downwelling_shortwave_flux_in_air_assuming_clear_sky", "downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "downwelling_shortwave_flux_in_sea_water", "downwelling_shortwave_flux_in_sea_water_at_sea_ice_base", "downwelling_shortwave_radiance_in_air", "downwelling_spherical_irradiance_in_sea_water", "downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "dry_atmosphere_mole_fraction_of_carbon_dioxide", "dry_atmosphere_mole_fraction_of_methane", "dry_energy_content_of_atmosphere_layer", "dry_static_energy_content_of_atmosphere_layer", "duration_of_sunshine", "dvorak_tropical_cyclone_current_intensity_number", "dvorak_tropical_number", "dynamic_tropopause_potential_temperature", "eastward_air_velocity_relative_to_sea_water", "eastward_atmosphere_dry_static_energy_transport_across_unit_distance", "eastward_atmosphere_water_transport_across_unit_distance", "eastward_atmosphere_water_vapor_transport_across_unit_distance", "eastward_derivative_of_eastward_wind", "eastward_derivative_of_northward_sea_ice_velocity", "eastward_derivative_of_northward_wind", "eastward_derivative_of_wind_from_direction", "eastward_flood_water_velocity", "eastward_friction_velocity_in_air", "eastward_land_ice_velocity", "eastward_mass_flux_of_air", "eastward_momentum_flux_correction", "eastward_sea_ice_displacement", "eastward_sea_ice_velocity", "eastward_sea_water_velocity", "eastward_sea_water_velocity_assuming_no_tide", "eastward_sea_water_velocity_at_sea_floor", "eastward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "eastward_sea_water_velocity_due_to_tides", "eastward_transformed_eulerian_mean_air_velocity", "eastward_water_vapor_flux_in_air", "eastward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "eastward_wind", "eastward_wind_shear", "effective_radius_of_cloud_condensed_water_particles_at_cloud_top", "effective_radius_of_cloud_liquid_water_particles", "effective_radius_of_cloud_liquid_water_particles_at_liquid_water_cloud_top", "effective_radius_of_convective_cloud_ice_particles", "effective_radius_of_convective_cloud_liquid_water_particles", "effective_radius_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "effective_radius_of_convective_cloud_rain_particles", "effective_radius_of_convective_cloud_snow_particles", "effective_radius_of_stratiform_cloud_graupel_particles", "effective_radius_of_stratiform_cloud_ice_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "effective_radius_of_stratiform_cloud_rain_particles", "effective_radius_of_stratiform_cloud_snow_particles", "electrical_mobility_diameter_of_ambient_aerosol_particles", "enrichment_of_14C_in_carbon_dioxide_in_air_expressed_as_uppercase_delta_14C", "enthalpy_content_of_atmosphere_layer", "equilibrium_line_altitude", "equivalent_pressure_of_atmosphere_ozone_content", "equivalent_reflectivity_factor", "equivalent_thickness_at_stp_of_atmosphere_ozone_content", "ertel_potential_vorticity", "fast_soil_pool_mass_content_of_carbon", "final_air_pressure_of_lifted_parcel", "fire_radiative_power", "fire_temperature", "flat_line_test_quality_flag", "floating_ice_shelf_area", "floating_ice_shelf_area_fraction", "floating_ice_thickness", "flood_water_duration_above_threshold", "flood_water_speed", "flood_water_thickness", "fog_area_fraction", "forecast_period", "forecast_reference_time", "fractional_saturation_of_oxygen_in_sea_water", "fraction_of_surface_downwelling_photosynthetic_radiative_flux_absorbed_by_vegetation", "fraction_of_time_with_sea_ice_area_fraction_above_threshold", "freezing_level_altitude", "freezing_temperature_of_sea_water", "frequency_of_lightning_flashes_per_unit_area", "frozen_water_content_of_soil_layer", "fugacity_of_carbon_dioxide_in_sea_water", "gap_test_quality_flag", "geoid_height_above_reference_ellipsoid", "geopotential", "geopotential_height", "geopotential_height_anomaly", "geopotential_height_at_cloud_top", "geopotential_height_at_volcanic_ash_cloud_top", "geostrophic_eastward_sea_water_velocity", "geostrophic_eastward_wind", "geostrophic_northward_sea_water_velocity", "geostrophic_northward_wind", "global_average_steric_sea_level_change", "global_average_thermosteric_sea_level_change", "graupel_and_hail_fall_amount", "graupel_fall_amount", "grid_latitude", "grid_longitude", "gross_primary_productivity_of_biomass_expressed_as_13C", "gross_primary_productivity_of_biomass_expressed_as_14C", "gross_primary_productivity_of_biomass_expressed_as_carbon", "gross_range_test_quality_flag", "gross_rate_of_decrease_in_area_fraction", "gross_rate_of_increase_in_area_fraction", "grounded_ice_sheet_area", "grounded_ice_sheet_area_fraction", "ground_level_altitude", "growth_limitation_of_calcareous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_diatoms_due_to_solar_irradiance", "growth_limitation_of_diazotrophic_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_miscellaneous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_picophytoplankton_due_to_solar_irradiance", "hail_fall_amount", "halosteric_change_in_mean_sea_level", "halosteric_change_in_sea_surface_height", "heat_flux_correction", "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", "heat_flux_into_sea_water_due_to_newtonian_relaxation", "heat_flux_into_sea_water_due_to_sea_ice_thermodynamics", "heat_flux_into_sea_water_due_to_snow_thermodynamics", "heat_index_of_air_temperature", "height", "height_above_geopotential_datum", "height_above_geopotential_datum_at_top_of_atmosphere_model", "height_above_mean_sea_level", "height_above_reference_ellipsoid", "height_above_sea_floor", "height_at_cloud_top", "height_at_effective_cloud_top_defined_by_infrared_radiation", "high_type_cloud_area_fraction", "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid", "histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid", "horizontal_atmosphere_dry_energy_transport", "horizontal_dry_energy_transport_in_atmosphere_layer", "humidity_mixing_ratio", "ice_cloud_area_fraction", "ice_cloud_area_fraction_in_atmosphere_layer", "ice_volume_in_frozen_ground_in_excess_of_pore_volume_in_unfrozen_ground_expressed_as_fraction_of_frozen_ground_volume", "incoming_water_volume_transport_along_river_channel", "indicative_error_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "institution", "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_salinity_and_sea_water_density", "integral_wrt_depth_of_sea_water_practical_salinity", "integral_wrt_depth_of_sea_water_temperature", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "integral_wrt_height_of_product_of_eastward_wind_and_specific_humidity", "integral_wrt_height_of_product_of_northward_wind_and_specific_humidity", "integral_wrt_time_of_air_temperature_deficit", "integral_wrt_time_of_air_temperature_excess", "integral_wrt_time_of_mole_stomatal_uptake_of_ozone", "integral_wrt_time_of_radioactivity_concentration_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_104Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_110mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_11C_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_136Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_139Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_13N_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_145Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_150Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_153Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_154Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_157Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_158Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_15O_in_air", "integral_wrt_time_of_radioactivity_concentration_of_160Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_161Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162mTb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_163Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_165Dy_in_air", "integral_wrt_time_of_radioactivity_concentration_of_18F_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Hg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207mPb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_208Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_220Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_224Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234mPa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m1Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m2Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244mAm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_246Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_247Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_248Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_24Na_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_251Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_252Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254mEs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_255Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_3H_in_air", "integral_wrt_time_of_radioactivity_concentration_of_41Ar_in_air", "integral_wrt_time_of_radioactivity_concentration_of_54Mn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_58Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_60Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Zn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_73Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_75Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77mGe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_79Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86mRb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_96Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_98Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Tc_in_air", "integral_wrt_time_of_surface_downward_eastward_stress", "integral_wrt_time_of_surface_downward_latent_heat_flux", "integral_wrt_time_of_surface_downward_northward_stress", "integral_wrt_time_of_surface_downward_sensible_heat_flux", "integral_wrt_time_of_surface_downwelling_longwave_flux_in_air", "integral_wrt_time_of_surface_downwelling_shortwave_flux_in_air", "integral_wrt_time_of_surface_net_downward_longwave_flux", "integral_wrt_time_of_surface_net_downward_shortwave_flux", "integral_wrt_time_of_toa_net_downward_shortwave_flux", "integral_wrt_time_of_toa_outgoing_longwave_flux", "iron_growth_limitation_of_calcareous_phytoplankton", "iron_growth_limitation_of_diatoms", "iron_growth_limitation_of_diazotrophic_phytoplankton", "iron_growth_limitation_of_miscellaneous_phytoplankton", "iron_growth_limitation_of_picophytoplankton", "isccp_cloud_area_fraction", "isotope_ratio_of_17O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotope_ratio_of_18O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotropic_longwave_radiance_in_air", "isotropic_radiance_per_unit_wavelength_in_air", "isotropic_shortwave_radiance_in_air", "kinetic_energy_content_of_atmosphere_layer", "kinetic_energy_dissipation_in_atmosphere_boundary_layer", "lagrangian_tendency_of_air_pressure", "lagrangian_tendency_of_atmosphere_sigma_coordinate", "land_area_fraction", "land_ice_area_fraction", "land_ice_basal_melt_rate", "land_ice_basal_temperature", "land_ice_basal_upward_velocity", "land_ice_basal_x_velocity", "land_ice_basal_y_velocity", "land_ice_calving_rate", "land_ice_lwe_basal_melt_rate", "land_ice_lwe_calving_rate", "land_ice_lwe_surface_specific_mass_balance_rate", "land_ice_mass_not_displacing_sea_water", "land_ice_sigma_coordinate", "land_ice_specific_mass_flux_due_to_calving", "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", "land_ice_surface_melt_flux", "land_ice_surface_specific_mass_balance_rate", "land_ice_surface_upward_velocity", "land_ice_surface_x_velocity", "land_ice_surface_y_velocity", "land_ice_temperature", "land_ice_thickness", "land_ice_vertical_mean_x_velocity", "land_ice_vertical_mean_y_velocity", "land_ice_x_velocity", "land_ice_y_velocity", "land_surface_liquid_water_amount", "land_water_amount", "latitude", "leaf_mass_content_of_carbon", "leaf_mass_content_of_nitrogen", "lightning_potential_index", "lightning_radiant_energy", "liquid_water_cloud_area_fraction", "liquid_water_cloud_area_fraction_in_atmosphere_layer", "liquid_water_content_of_permafrost_layer", "liquid_water_content_of_soil_layer", "liquid_water_content_of_surface_snow", "liquid_water_mass_flux_into_soil_due_to_surface_snow_melt", "litter_mass_content_of_13C", "litter_mass_content_of_14C", "litter_mass_content_of_carbon", "litter_mass_content_of_nitrogen", "location_test_quality_flag", "log10_size_interval_based_number_size_distribution_of_cloud_condensation_nuclei_at_stp_in_air", "longitude", "low_type_cloud_area_fraction", "lwe_convective_precipitation_rate", "lwe_convective_snowfall_rate", "lwe_precipitation_rate", "lwe_snowfall_rate", "lwe_stratiform_precipitation_rate", "lwe_stratiform_snowfall_rate", "lwe_thickness_of_atmosphere_mass_content_of_water_vapor", "lwe_thickness_of_canopy_water_amount", "lwe_thickness_of_convective_precipitation_amount", "lwe_thickness_of_convective_snowfall_amount", "lwe_thickness_of_frozen_water_content_of_soil_layer", "lwe_thickness_of_moisture_content_of_soil_layer", "lwe_thickness_of_precipitation_amount", "lwe_thickness_of_snowfall_amount", "lwe_thickness_of_soil_moisture_content", "lwe_thickness_of_stratiform_precipitation_amount", "lwe_thickness_of_stratiform_snowfall_amount", "lwe_thickness_of_surface_snow_amount", "lwe_thickness_of_water_evaporation_amount", "lwe_water_evaporation_rate", "magnitude_of_air_velocity_relative_to_sea_water", "magnitude_of_derivative_of_position_wrt_model_level_number", "magnitude_of_derivative_of_position_wrt_x_coordinate_index", "magnitude_of_derivative_of_position_wrt_y_coordinate_index", "magnitude_of_heat_flux_in_sea_water_due_to_advection", "magnitude_of_sea_ice_displacement", "magnitude_of_surface_downward_stress", "mass_concentration_of_19_butanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_19_hexanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_acetic_acid_in_air", "mass_concentration_of_aceto_nitrile_in_air", "mass_concentration_of_adenosine_triphosphate_in_sea_water", "mass_concentration_of_alkanes_in_air", "mass_concentration_of_alkenes_in_air", "mass_concentration_of_alpha_carotene_in_sea_water", "mass_concentration_of_alpha_hexachlorocyclohexane_in_air", "mass_concentration_of_alpha_pinene_in_air", "mass_concentration_of_ammonia_in_air", "mass_concentration_of_ammonium_dry_aerosol_particles_in_air", "mass_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_aromatic_compounds_in_air", "mass_concentration_of_atomic_bromine_in_air", "mass_concentration_of_atomic_chlorine_in_air", "mass_concentration_of_atomic_nitrogen_in_air", "mass_concentration_of_benzene_in_air", "mass_concentration_of_beta_carotene_in_sea_water", "mass_concentration_of_beta_pinene_in_air", "mass_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_biomass_burning_dry_aerosol_particles_in_air", "mass_concentration_of_bromine_chloride_in_air", "mass_concentration_of_bromine_monoxide_in_air", "mass_concentration_of_bromine_nitrate_in_air", "mass_concentration_of_brox_expressed_as_bromine_in_air", "mass_concentration_of_butane_in_air", "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_carbon_dioxide_in_air", "mass_concentration_of_carbon_monoxide_in_air", "mass_concentration_of_carbon_tetrachloride_in_air", "mass_concentration_of_carotene_in_sea_water", "mass_concentration_of_cfc113a_in_air", "mass_concentration_of_cfc113_in_air", "mass_concentration_of_cfc114_in_air", "mass_concentration_of_cfc115_in_air", "mass_concentration_of_cfc11_in_air", "mass_concentration_of_cfc12_in_air", "mass_concentration_of_chlorine_dioxide_in_air", "mass_concentration_of_chlorine_monoxide_in_air", "mass_concentration_of_chlorine_nitrate_in_air", "mass_concentration_of_chlorophyll_a_in_sea_water", "mass_concentration_of_chlorophyll_b_in_sea_water", "mass_concentration_of_chlorophyll_c1_and_chlorophyll_c2_in_sea_water", "mass_concentration_of_chlorophyll_c3_in_sea_water", "mass_concentration_of_chlorophyll_c_in_sea_water", "mass_concentration_of_chlorophyllide_a_in_sea_water", "mass_concentration_of_chlorophyll_in_sea_water", "mass_concentration_of_cloud_liquid_water_in_air", "mass_concentration_of_clox_expressed_as_chlorine_in_air", "mass_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "mass_concentration_of_condensed_water_in_soil", "mass_concentration_of_diadinoxanthin_in_sea_water", "mass_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_dichlorine_peroxide_in_air", "mass_concentration_of_dimethyl_sulfide_in_air", "mass_concentration_of_dinitrogen_pentoxide_in_air", "mass_concentration_of_divinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_drizzle_in_air", "mass_concentration_of_dust_dry_aerosol_particles_in_air", "mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_concentration_of_ethane_in_air", "mass_concentration_of_ethanol_in_air", "mass_concentration_of_ethene_in_air", "mass_concentration_of_ethyne_in_air", "mass_concentration_of_flagellates_expressed_as_carbon_in_sea_water", "mass_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_formaldehyde_in_air", "mass_concentration_of_formic_acid_in_air", "mass_concentration_of_fucoxanthin_in_sea_water", "mass_concentration_of_gaseous_divalent_mercury_in_air", "mass_concentration_of_gaseous_elemental_mercury_in_air", "mass_concentration_of_halon1202_in_air", "mass_concentration_of_halon1211_in_air", "mass_concentration_of_halon1301_in_air", "mass_concentration_of_halon2402_in_air", "mass_concentration_of_hcc140a_in_air", "mass_concentration_of_hcfc141b_in_air", "mass_concentration_of_hcfc142b_in_air", "mass_concentration_of_hcfc22_in_air", "mass_concentration_of_hexachlorobiphenyl_in_air", "mass_concentration_of_hox_expressed_as_hydrogen_in_air", "mass_concentration_of_hydrogen_bromide_in_air", "mass_concentration_of_hydrogen_chloride_in_air", "mass_concentration_of_hydrogen_cyanide_in_air", "mass_concentration_of_hydrogen_peroxide_in_air", "mass_concentration_of_hydroperoxyl_radical_in_air", "mass_concentration_of_hydroxyl_radical_in_air", "mass_concentration_of_hypobromous_acid_in_air", "mass_concentration_of_hypochlorous_acid_in_air", "mass_concentration_of_inorganic_bromine_in_air", "mass_concentration_of_inorganic_chlorine_in_air", "mass_concentration_of_inorganic_nitrogen_in_sea_water", "mass_concentration_of_isoprene_in_air", "mass_concentration_of_limonene_in_air", "mass_concentration_of_liquid_water_in_air", "mass_concentration_of_lutein_in_sea_water", "mass_concentration_of_mercury_dry_aerosol_particles_in_air", "mass_concentration_of_methane_in_air", "mass_concentration_of_methanol_in_air", "mass_concentration_of_methyl_bromide_in_air", "mass_concentration_of_methyl_chloride_in_air", "mass_concentration_of_methyl_hydroperoxide_in_air", "mass_concentration_of_methyl_peroxy_radical_in_air", "mass_concentration_of_microphytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_molecular_hydrogen_in_air", "mass_concentration_of_monovinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_nanophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_nitrate_dry_aerosol_particles_in_air", "mass_concentration_of_nitrate_radical_in_air", "mass_concentration_of_nitric_acid_in_air", "mass_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_concentration_of_nitrogen_dioxide_in_air", "mass_concentration_of_nitrogen_monoxide_in_air", "mass_concentration_of_nitrous_acid_in_air", "mass_concentration_of_nitrous_oxide_in_air", "mass_concentration_of_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_nox_expressed_as_nitrogen_in_air", "mass_concentration_of_noy_expressed_as_nitrogen_in_air", "mass_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mass_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_oxygenated_hydrocarbons_in_air", "mass_concentration_of_oxygen_in_sea_water", "mass_concentration_of_ozone_in_air", "mass_concentration_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_peridinin_in_sea_water", "mass_concentration_of_peroxyacetyl_nitrate_in_air", "mass_concentration_of_peroxynitric_acid_in_air", "mass_concentration_of_peroxy_radicals_in_air", "mass_concentration_of_petroleum_hydrocarbons_in_sea_water", "mass_concentration_of_phaeopigments_in_sea_water", "mass_concentration_of_phosphate_in_sea_water", "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_pm10_ambient_aerosol_particles_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_pm1_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_prasinoxanthin_in_sea_water", "mass_concentration_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_propane_in_air", "mass_concentration_of_propene_in_air", "mass_concentration_of_radon_in_air", "mass_concentration_of_rain_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_silicate_in_sea_water", "mass_concentration_of_sulfate_ambient_aerosol_particles_in_air", "mass_concentration_of_sulfate_dry_aerosol_particles_in_air", "mass_concentration_of_sulfur_dioxide_in_air", "mass_concentration_of_suspended_matter_in_sea_water", "mass_concentration_of_terpenes_in_air", "mass_concentration_of_toluene_in_air", "mass_concentration_of_violaxanthin_in_sea_water", "mass_concentration_of_volcanic_ash_in_air", "mass_concentration_of_water_in_ambient_aerosol_particles_in_air", "mass_concentration_of_water_vapor_in_air", "mass_concentration_of_xylene_in_air", "mass_concentration_of_zeaxanthin_in_sea_water", "mass_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mass_content_of_13C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_14C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_cloud_condensed_water_in_atmosphere_layer", "mass_content_of_cloud_ice_in_atmosphere_layer", "mass_content_of_cloud_liquid_water_in_atmosphere_layer", "mass_content_of_nitrogen_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_water_in_atmosphere_layer", "mass_content_of_water_in_soil", "mass_content_of_water_in_soil_layer", "mass_content_of_water_in_soil_layer_defined_by_root_depth", "mass_content_of_water_vapor_containing_17O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_18O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_single_2H_in_atmosphere_layer", "mass_content_of_water_vapor_in_atmosphere_layer", "mass_flux_of_carbon_into_forestry_and_agricultural_products_due_to_crop_harvesting", "mass_flux_of_carbon_into_litter_from_vegetation", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence", "mass_flux_of_carbon_into_sea_water_from_rivers", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_senescence", "mass_flux_of_carbon_out_of_soil_due_to_leaching_and_runoff", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_into_sea_from_rivers", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_litter_and_soil_due_to_immobilisation_and_remineralization", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil_due_to_leaching_and_runoff", "mass_fraction_of_acetic_acid_in_air", "mass_fraction_of_aceto_nitrile_in_air", "mass_fraction_of_alkanes_in_air", "mass_fraction_of_alkenes_in_air", "mass_fraction_of_alpha_hexachlorocyclohexane_in_air", "mass_fraction_of_alpha_pinene_in_air", "mass_fraction_of_ammonia_in_air", "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_aromatic_compounds_in_air", "mass_fraction_of_atomic_bromine_in_air", "mass_fraction_of_atomic_chlorine_in_air", "mass_fraction_of_atomic_nitrogen_in_air", "mass_fraction_of_benzene_in_air", "mass_fraction_of_beta_pinene_in_air", "mass_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_bromine_chloride_in_air", "mass_fraction_of_bromine_monoxide_in_air", "mass_fraction_of_bromine_nitrate_in_air", "mass_fraction_of_brox_expressed_as_bromine_in_air", "mass_fraction_of_butane_in_air", "mass_fraction_of_carbon_dioxide_in_air", "mass_fraction_of_carbon_dioxide_tracer_in_air", "mass_fraction_of_carbon_monoxide_in_air", "mass_fraction_of_carbon_tetrachloride_in_air", "mass_fraction_of_cfc113a_in_air", "mass_fraction_of_cfc113_in_air", "mass_fraction_of_cfc114_in_air", "mass_fraction_of_cfc115_in_air", "mass_fraction_of_cfc11_in_air", "mass_fraction_of_cfc12_in_air", "mass_fraction_of_chlorine_dioxide_in_air", "mass_fraction_of_chlorine_monoxide_in_air", "mass_fraction_of_chlorine_nitrate_in_air", "mass_fraction_of_chlorophyll_a_in_sea_water", "mass_fraction_of_clay_in_soil", "mass_fraction_of_cloud_condensed_water_in_air", "mass_fraction_of_cloud_ice_in_air", "mass_fraction_of_cloud_liquid_water_in_air", "mass_fraction_of_clox_expressed_as_chlorine_in_air", "mass_fraction_of_convective_cloud_condensed_water_in_air", "mass_fraction_of_convective_cloud_ice_in_air", "mass_fraction_of_convective_cloud_liquid_water_in_air", "mass_fraction_of_dichlorine_peroxide_in_air", "mass_fraction_of_dimethyl_sulfide_in_air", "mass_fraction_of_dinitrogen_pentoxide_in_air", "mass_fraction_of_dust_dry_aerosol_particles_in_air", "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_ethane_in_air", "mass_fraction_of_ethanol_in_air", "mass_fraction_of_ethene_in_air", "mass_fraction_of_ethyne_in_air", "mass_fraction_of_formaldehyde_in_air", "mass_fraction_of_formic_acid_in_air", "mass_fraction_of_frozen_water_in_soil_moisture", "mass_fraction_of_gaseous_divalent_mercury_in_air", "mass_fraction_of_gaseous_elemental_mercury_in_air", "mass_fraction_of_graupel_and_hail_in_air", "mass_fraction_of_graupel_in_air", "mass_fraction_of_gravel_in_soil", "mass_fraction_of_hail_in_air", "mass_fraction_of_halon1202_in_air", "mass_fraction_of_halon1211_in_air", "mass_fraction_of_halon1301_in_air", "mass_fraction_of_halon2402_in_air", "mass_fraction_of_hcc140a_in_air", "mass_fraction_of_hcfc141b_in_air", "mass_fraction_of_hcfc142b_in_air", "mass_fraction_of_hcfc22_in_air", "mass_fraction_of_hexachlorobiphenyl_in_air", "mass_fraction_of_hox_expressed_as_hydrogen_in_air", "mass_fraction_of_hydrogen_bromide_in_air", "mass_fraction_of_hydrogen_chloride_in_air", "mass_fraction_of_hydrogen_cyanide_in_air", "mass_fraction_of_hydrogen_peroxide_in_air", "mass_fraction_of_hydroperoxyl_radical_in_air", "mass_fraction_of_hydroxyl_radical_in_air", "mass_fraction_of_hypobromous_acid_in_air", "mass_fraction_of_hypochlorous_acid_in_air", "mass_fraction_of_inorganic_bromine_in_air", "mass_fraction_of_inorganic_chlorine_in_air", "mass_fraction_of_isoprene_in_air", "mass_fraction_of_limonene_in_air", "mass_fraction_of_liquid_precipitation_in_air", "mass_fraction_of_mercury_dry_aerosol_particles_in_air", "mass_fraction_of_methane_in_air", "mass_fraction_of_methanesulfonic_acid_dry_aerosol_particles_in_air", "mass_fraction_of_methanol_in_air", "mass_fraction_of_methyl_bromide_in_air", "mass_fraction_of_methyl_chloride_in_air", "mass_fraction_of_methyl_hydroperoxide_in_air", "mass_fraction_of_methyl_peroxy_radical_in_air", "mass_fraction_of_molecular_hydrogen_in_air", "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_nitrate_radical_in_air", "mass_fraction_of_nitric_acid_in_air", "mass_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_fraction_of_nitrogen_dioxide_in_air", "mass_fraction_of_nitrogen_monoxide_in_air", "mass_fraction_of_nitrous_acid_in_air", "mass_fraction_of_nitrous_oxide_in_air", "mass_fraction_of_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_nox_expressed_as_nitrogen_in_air", "mass_fraction_of_noy_expressed_as_nitrogen_in_air", "mass_fraction_of_organic_matter_in_soil", "mass_fraction_of_oxygenated_hydrocarbons_in_air", "mass_fraction_of_ozone_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_peroxyacetyl_nitrate_in_air", "mass_fraction_of_peroxynitric_acid_in_air", "mass_fraction_of_peroxy_radicals_in_air", "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_pm10_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_pm1_ambient_aerosol_particles_in_air", "mass_fraction_of_pm1_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_precipitation_in_air", "mass_fraction_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_propane_in_air", "mass_fraction_of_propene_in_air", "mass_fraction_of_radon_in_air", "mass_fraction_of_rainfall_falling_onto_surface_snow", "mass_fraction_of_sand_in_soil", "mass_fraction_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_shallow_convective_cloud_liquid_water_in_air", "mass_fraction_of_silt_in_soil", "mass_fraction_of_snow_in_air", "mass_fraction_of_solid_precipitation_falling_onto_surface_snow", "mass_fraction_of_stratiform_cloud_ice_in_air", "mass_fraction_of_stratiform_cloud_liquid_water_in_air", "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_sulfur_dioxide_in_air", "mass_fraction_of_sulfuric_acid_in_air", "mass_fraction_of_terpenes_in_air", "mass_fraction_of_toluene_in_air", "mass_fraction_of_unfrozen_water_in_soil_moisture", "mass_fraction_of_water_in_air", "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_xylene_in_air", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_strain_rate", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_stress", "medium_soil_pool_mass_content_of_carbon", "medium_type_cloud_area_fraction", "minimum_depth_of_aragonite_undersaturation_in_sea_water", "minimum_depth_of_calcite_undersaturation_in_sea_water", "minus_one_times_surface_upwelling_longwave_flux_in_air", "minus_one_times_surface_upwelling_shortwave_flux_in_air", "minus_one_times_toa_outgoing_shortwave_flux", "minus_one_times_water_flux_into_sea_water_from_rivers", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "minus_tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "minus_tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "miscellaneous_living_matter_mass_content_of_carbon", "miscellaneous_living_matter_mass_content_of_nitrogen", "model_level_number_at_base_of_ocean_mixed_layer_defined_by_sigma_theta", "model_level_number_at_convective_cloud_base", "model_level_number_at_convective_cloud_top", "model_level_number_at_sea_floor", "model_level_number_at_top_of_atmosphere_boundary_layer", "moisture_content_of_soil_layer_at_field_capacity", "mole_concentration_of_acetic_acid_in_air", "mole_concentration_of_aceto_nitrile_in_air", "mole_concentration_of_adenosine_triphosphate_in_sea_water", "mole_concentration_of_alpha_hexachlorocyclohexane_in_air", "mole_concentration_of_alpha_pinene_in_air", "mole_concentration_of_ammonia_in_air", "mole_concentration_of_ammonium_in_sea_water", "mole_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_atomic_bromine_in_air", "mole_concentration_of_atomic_chlorine_in_air", "mole_concentration_of_atomic_nitrogen_in_air", "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", "mole_concentration_of_benzene_in_air", "mole_concentration_of_beta_pinene_in_air", "mole_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mole_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_bromine_chloride_in_air", "mole_concentration_of_bromine_monoxide_in_air", "mole_concentration_of_bromine_nitrate_in_air", "mole_concentration_of_brox_expressed_as_bromine_in_air", "mole_concentration_of_butane_in_air", "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_carbonate_abiotic_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_calcite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_natural_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbon_dioxide_in_air", "mole_concentration_of_carbon_monoxide_in_air", "mole_concentration_of_carbon_tetrachloride_in_air", "mole_concentration_of_cfc113a_in_air", "mole_concentration_of_cfc113_in_air", "mole_concentration_of_cfc114_in_air", "mole_concentration_of_cfc115_in_air", "mole_concentration_of_cfc11_in_air", "mole_concentration_of_cfc11_in_sea_water", "mole_concentration_of_cfc12_in_air", "mole_concentration_of_cfc12_in_sea_water", "mole_concentration_of_chlorine_dioxide_in_air", "mole_concentration_of_chlorine_monoxide_in_air", "mole_concentration_of_chlorine_nitrate_in_air", "mole_concentration_of_clox_expressed_as_chlorine_in_air", "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_dichlorine_peroxide_in_air", "mole_concentration_of_dimethyl_sulfide_in_air", "mole_concentration_of_dimethyl_sulfide_in_sea_water", "mole_concentration_of_dinitrogen_pentoxide_in_air", "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_abiotic_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_natural_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", "mole_concentration_of_dissolved_iron_in_sea_water", "mole_concentration_of_dissolved_molecular_nitrogen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile", "mole_concentration_of_dissolved_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_carbon_in_sea_water", "mole_concentration_of_dissolved_organic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_phosphorus_in_sea_water", "mole_concentration_of_ethane_in_air", "mole_concentration_of_ethanol_in_air", "mole_concentration_of_ethene_in_air", "mole_concentration_of_ethyne_in_air", "mole_concentration_of_formaldehyde_in_air", "mole_concentration_of_formic_acid_in_air", "mole_concentration_of_gaseous_divalent_mercury_in_air", "mole_concentration_of_gaseous_elemental_mercury_in_air", "mole_concentration_of_halon1202_in_air", "mole_concentration_of_halon1211_in_air", "mole_concentration_of_halon1301_in_air", "mole_concentration_of_halon2402_in_air", "mole_concentration_of_hcc140a_in_air", "mole_concentration_of_hcfc141b_in_air", "mole_concentration_of_hcfc142b_in_air", "mole_concentration_of_hcfc22_in_air", "mole_concentration_of_hexachlorobiphenyl_in_air", "mole_concentration_of_hox_expressed_as_hydrogen_in_air", "mole_concentration_of_hydrogen_bromide_in_air", "mole_concentration_of_hydrogen_chloride_in_air", "mole_concentration_of_hydrogen_cyanide_in_air", "mole_concentration_of_hydrogen_peroxide_in_air", "mole_concentration_of_hydrogen_sulfide_in_sea_water", "mole_concentration_of_hydroperoxyl_radical_in_air", "mole_concentration_of_hydroxyl_radical_in_air", "mole_concentration_of_hypobromous_acid_in_air", "mole_concentration_of_hypochlorous_acid_in_air", "mole_concentration_of_inorganic_bromine_in_air", "mole_concentration_of_inorganic_chlorine_in_air", "mole_concentration_of_isoprene_in_air", "mole_concentration_of_limonene_in_air", "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_methane_in_air", "mole_concentration_of_methanol_in_air", "mole_concentration_of_methyl_bromide_in_air", "mole_concentration_of_methyl_chloride_in_air", "mole_concentration_of_methyl_hydroperoxide_in_air", "mole_concentration_of_methyl_peroxy_radical_in_air", "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_molecular_hydrogen_in_air", "mole_concentration_of_nitrate_and_nitrite_in_sea_water", "mole_concentration_of_nitrate_in_sea_water", "mole_concentration_of_nitrate_radical_in_air", "mole_concentration_of_nitric_acid_in_air", "mole_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_concentration_of_nitrite_in_sea_water", "mole_concentration_of_nitrogen_dioxide_in_air", "mole_concentration_of_nitrogen_monoxide_in_air", "mole_concentration_of_nitrous_acid_in_air", "mole_concentration_of_nitrous_oxide_in_air", "mole_concentration_of_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_nox_expressed_as_nitrogen_in_air", "mole_concentration_of_noy_expressed_as_nitrogen_in_air", "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water", "mole_concentration_of_ozone_in_air", "mole_concentration_of_particulate_matter_expressed_as_carbon_in_sea_water", "mole_concentration_of_particulate_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_nitrogen_in_sea_water", "mole_concentration_of_peroxyacetyl_nitrate_in_air", "mole_concentration_of_peroxynitric_acid_in_air", "mole_concentration_of_phosphate_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water", "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_propane_in_air", "mole_concentration_of_propene_in_air", "mole_concentration_of_radon_in_air", "mole_concentration_of_silicate_in_sea_water", "mole_concentration_of_sulfur_dioxide_in_air", "mole_concentration_of_sulfur_hexafluoride_in_sea_water", "mole_concentration_of_toluene_in_air", "mole_concentration_of_water_vapor_in_air", "mole_concentration_of_xylene_in_air", "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water", "mole_content_of_carbon_monoxide_in_atmosphere_layer", "mole_content_of_methane_in_atmosphere_layer", "mole_content_of_nitrogen_dioxide_in_atmosphere_layer", "mole_content_of_ozone_in_atmosphere_layer", "mole_fraction_of_acetaldehyde_in_air", "mole_fraction_of_acetic_acid_in_air", "mole_fraction_of_acetone_in_air", "mole_fraction_of_aceto_nitrile_in_air", "mole_fraction_of_aldehydes_in_air", "mole_fraction_of_alkanes_in_air", "mole_fraction_of_alkenes_in_air", "mole_fraction_of_alpha_hexachlorocyclohexane_in_air", "mole_fraction_of_alpha_pinene_in_air", "mole_fraction_of_ammonia_in_air", "mole_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_artificial_tracer_with_fixed_lifetime_in_air", "mole_fraction_of_atomic_bromine_in_air", "mole_fraction_of_atomic_chlorine_in_air", "mole_fraction_of_atomic_nitrogen_in_air", "mole_fraction_of_benzene_in_air", "mole_fraction_of_beta_pinene_in_air", "mole_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_bromine_chloride_in_air", "mole_fraction_of_bromine_monoxide_in_air", "mole_fraction_of_bromine_nitrate_in_air", "mole_fraction_of_brox_expressed_as_bromine_in_air", "mole_fraction_of_butane_in_air", "mole_fraction_of_carbon_dioxide_in_air", "mole_fraction_of_carbon_monoxide_in_air", "mole_fraction_of_carbon_tetrachloride_in_air", "mole_fraction_of_carbon_tetrafluoride_in_air", "mole_fraction_of_carbonyl_fluoride_in_air", "mole_fraction_of_carbonyl_sulfide_in_air", "mole_fraction_of_cfc113a_in_air", "mole_fraction_of_cfc113_in_air", "mole_fraction_of_cfc114_in_air", "mole_fraction_of_cfc115_in_air", "mole_fraction_of_cfc11_in_air", "mole_fraction_of_cfc12_in_air", "mole_fraction_of_chlorine_dioxide_in_air", "mole_fraction_of_chlorine_monoxide_in_air", "mole_fraction_of_chlorine_nitrate_in_air", "mole_fraction_of_chloroform_in_air", "mole_fraction_of_clox_expressed_as_chlorine_in_air", "mole_fraction_of_dichlorine_in_air", "mole_fraction_of_dichlorine_peroxide_in_air", "mole_fraction_of_dichloromethane_in_air", "mole_fraction_of_dimethyl_sulfide_in_air", "mole_fraction_of_dinitrogen_pentoxide_in_air", "mole_fraction_of_ethane_in_air", "mole_fraction_of_ethanol_in_air", "mole_fraction_of_ethene_in_air", "mole_fraction_of_ethyne_in_air", "mole_fraction_of_formaldehyde_in_air", "mole_fraction_of_formic_acid_in_air", "mole_fraction_of_gaseous_divalent_mercury_in_air", "mole_fraction_of_gaseous_elemental_mercury_in_air", "mole_fraction_of_glyoxal_in_air", "mole_fraction_of_halon1202_in_air", "mole_fraction_of_halon1211_in_air", "mole_fraction_of_halon1301_in_air", "mole_fraction_of_halon2402_in_air", "mole_fraction_of_hcc140a_in_air", "mole_fraction_of_hcfc124_in_air", "mole_fraction_of_hcfc141b_in_air", "mole_fraction_of_hcfc142b_in_air", "mole_fraction_of_hcfc22_in_air", "mole_fraction_of_hexachlorobiphenyl_in_air", "mole_fraction_of_hfc125_in_air", "mole_fraction_of_hfc134a_in_air", "mole_fraction_of_hfc143a_in_air", "mole_fraction_of_hfc152a_in_air", "mole_fraction_of_hfc227ea_in_air", "mole_fraction_of_hfc236fa_in_air", "mole_fraction_of_hfc23_in_air", "mole_fraction_of_hfc245fa_in_air", "mole_fraction_of_hfc32_in_air", "mole_fraction_of_hfc365mfc_in_air", "mole_fraction_of_hfc4310mee_in_air", "mole_fraction_of_hox_expressed_as_hydrogen_in_air", "mole_fraction_of_hydrogen_bromide_in_air", "mole_fraction_of_hydrogen_chloride_in_air", "mole_fraction_of_hydrogen_cyanide_in_air", "mole_fraction_of_hydrogen_peroxide_in_air", "mole_fraction_of_hydrogen_sulfide_in_air", "mole_fraction_of_hydroperoxyl_radical_in_air", "mole_fraction_of_hydroxyl_radical_in_air", "mole_fraction_of_hypobromous_acid_in_air", "mole_fraction_of_hypochlorous_acid_in_air", "mole_fraction_of_inorganic_bromine_in_air", "mole_fraction_of_inorganic_chlorine_in_air", "mole_fraction_of_isoprene_in_air", "mole_fraction_of_limonene_in_air", "mole_fraction_of_methane_in_air", "mole_fraction_of_methanol_in_air", "mole_fraction_of_methyl_bromide_in_air", "mole_fraction_of_methyl_chloride_in_air", "mole_fraction_of_methylglyoxal_in_air", "mole_fraction_of_methyl_hydroperoxide_in_air", "mole_fraction_of_methyl_peroxy_radical_in_air", "mole_fraction_of_molecular_hydrogen_in_air", "mole_fraction_of_nitrate_radical_in_air", "mole_fraction_of_nitric_acid_in_air", "mole_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_fraction_of_nitrogen_dioxide_in_air", "mole_fraction_of_nitrogen_monoxide_in_air", "mole_fraction_of_nitrogen_trifluoride_in_air", "mole_fraction_of_nitrous_acid_in_air", "mole_fraction_of_nitrous_oxide_in_air", "mole_fraction_of_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_nox_expressed_as_nitrogen_in_air", "mole_fraction_of_noy_expressed_as_nitrogen_in_air", "mole_fraction_of_organic_nitrates_in_air", "mole_fraction_of_ox_in_air", "mole_fraction_of_ozone_in_air", "mole_fraction_of_perchloroethene_in_air", "mole_fraction_of_peroxyacetyl_nitrate_in_air", "mole_fraction_of_peroxynitric_acid_in_air", "mole_fraction_of_pfc116_in_air", "mole_fraction_of_pfc218_in_air", "mole_fraction_of_pfc318_in_air", "mole_fraction_of_propane_in_air", "mole_fraction_of_propene_in_air", "mole_fraction_of_radon_in_air", "mole_fraction_of_sulfur_dioxide_in_air", "mole_fraction_of_sulfur_hexafluoride_in_air", "mole_fraction_of_sulfuryl_fluoride_in_air", "mole_fraction_of_toluene_in_air", "mole_fraction_of_water_vapor_in_air", "mole_fraction_of_xylene_in_air", "mole_ratio_of_nitrate_to_phosphate_in_sea_water", "moles_of_cfc11_per_unit_mass_in_sea_water", "moles_of_dissolved_inorganic_carbon_per_unit_mass_in_sea_water", "moles_of_nitrate_and_nitrite_per_unit_mass_in_sea_water", "moles_of_nitrate_per_unit_mass_in_sea_water", "moles_of_nitrite_per_unit_mass_in_sea_water", "moles_of_oxygen_per_unit_mass_in_sea_water", "moles_of_phosphate_per_unit_mass_in_sea_water", "moles_of_silicate_per_unit_mass_in_sea_water", "multi_variate_test_quality_flag", "neighbor_test_quality_flag", "net_downward_longwave_flux_in_air", "net_downward_longwave_flux_in_air_assuming_clear_sky", "net_downward_radiative_flux_at_top_of_atmosphere_model", "net_downward_shortwave_flux_at_sea_water_surface", "net_downward_shortwave_flux_in_air", "net_downward_shortwave_flux_in_air_assuming_clear_sky", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_calcareous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diatoms", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diazotrophic_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_miscellaneous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_picophytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_due_to_nitrate_utilization", "net_primary_production_of_biomass_expressed_as_carbon_per_unit_volume_in_sea_water", "net_primary_productivity_of_biomass_expressed_as_carbon", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_leaves", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_miscellaneous_living_matter", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_roots", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_wood", "net_rate_of_absorption_of_longwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_ocean_layer", "net_upward_longwave_flux_in_air", "net_upward_longwave_flux_in_air_assuming_clear_sky", "net_upward_shortwave_flux_in_air", "net_upward_shortwave_flux_in_air_assuming_clear_sky", "nitrogen_growth_limitation_of_calcareous_phytoplankton", "nitrogen_growth_limitation_of_diatoms", "nitrogen_growth_limitation_of_diazotrophic_phytoplankton", "nitrogen_growth_limitation_of_miscellaneous_phytoplankton", "nitrogen_growth_limitation_of_picophytoplankton", "nitrogen_mass_content_of_forestry_and_agricultural_products", "nitrogen_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "nitrogen_mass_flux_into_litter_from_vegetation", "nitrogen_mass_flux_into_soil_from_litter", "nitrogen_mass_flux_into_soil_from_vegetation_excluding_litter", "non_tidal_elevation_of_sea_surface_height", "normalized_difference_vegetation_index", "northward_air_velocity_relative_to_sea_water", "northward_atmosphere_dry_static_energy_transport_across_unit_distance", "northward_atmosphere_heat_transport", "northward_atmosphere_water_transport_across_unit_distance", "northward_atmosphere_water_vapor_transport_across_unit_distance", "northward_derivative_of_eastward_sea_ice_velocity", "northward_derivative_of_eastward_wind", "northward_derivative_of_northward_wind", "northward_derivative_of_wind_from_direction", "northward_eliassen_palm_flux_in_air", "northward_flood_water_velocity", "northward_friction_velocity_in_air", "northward_heat_flux_in_air_due_to_eddy_advection", "northward_land_ice_velocity", "northward_mass_flux_of_air", "northward_momentum_flux_correction", "northward_northward_derivative_of_geopotential", "northward_ocean_freshwater_transport", "northward_ocean_freshwater_transport_due_to_diffusion", "northward_ocean_freshwater_transport_due_to_gyre", "northward_ocean_freshwater_transport_due_to_overturning", "northward_ocean_freshwater_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport", "northward_ocean_heat_transport_due_to_diffusion", "northward_ocean_heat_transport_due_to_gyre", "northward_ocean_heat_transport_due_to_overturning", "northward_ocean_heat_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_diffusion", "northward_ocean_heat_transport_due_to_parameterized_submesoscale_eddy_advection", "northward_ocean_salt_transport", "northward_ocean_salt_transport_due_to_diffusion", "northward_ocean_salt_transport_due_to_gyre", "northward_ocean_salt_transport_due_to_overturning", "northward_ocean_salt_transport_due_to_parameterized_eddy_advection", "northward_sea_ice_displacement", "northward_sea_ice_velocity", "northward_sea_water_velocity", "northward_sea_water_velocity_assuming_no_tide", "northward_sea_water_velocity_at_sea_floor", "northward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "northward_sea_water_velocity_due_to_tides", "northward_transformed_eulerian_mean_air_velocity", "northward_upward_derivative_of_geopotential", "northward_water_vapor_flux_in_air", "northward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "northward_westward_derivative_of_geopotential", "northward_wind", "northward_wind_shear", "nudging_increment_in_mass_content_of_water_in_soil", "nudging_increment_in_snow_and_ice_amount_on_land", "number_concentration_of_aerosol_particles_at_stp_in_air", "number_concentration_of_ambient_aerosol_particles_in_air", "number_concentration_of_biological_taxon_in_sea_water", "number_concentration_of_cloud_condensation_nuclei_at_stp_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air_at_liquid_water_cloud_top", "number_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "number_concentration_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "number_concentration_of_ice_crystals_in_air", "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top", "number_concentration_of_nucleation_mode_ambient_aerosol_particles_in_air", "number_concentration_of_ozone_molecules_in_air", "number_concentration_of_pm10_aerosol_particles_in_air", "number_concentration_of_pm2p5_aerosol_particles_in_air", "number_concentration_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "number_of_days_with_air_temperature_above_threshold", "number_of_days_with_air_temperature_below_threshold", "number_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "number_of_days_with_surface_temperature_below_threshold", "number_of_days_with_wind_speed_above_threshold", "number_of_icebergs_per_unit_area", "number_of_missing_observations", "number_of_observations", "ocean_barotropic_mass_streamfunction", "ocean_barotropic_streamfunction", "ocean_double_sigma_coordinate", "ocean_heat_x_transport", "ocean_heat_x_transport_due_to_diffusion", "ocean_heat_x_transport_due_to_parameterized_eddy_advection", "ocean_heat_y_transport", "ocean_heat_y_transport_due_to_diffusion", "ocean_heat_y_transport_due_to_parameterized_eddy_advection", "ocean_isopycnal_layer_thickness_diffusivity", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_vertical_friction", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_xy_friction", "ocean_mass_content_of_dissolved_inorganic_carbon", "ocean_mass_content_of_dissolved_organic_carbon", "ocean_mass_content_of_particulate_organic_matter_expressed_as_carbon", "ocean_mass_x_transport", "ocean_mass_x_transport_due_to_advection", "ocean_mass_x_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_mass_y_transport", "ocean_mass_y_transport_due_to_advection", "ocean_mass_y_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "ocean_meridional_overturning_streamfunction", "ocean_mixed_layer_thickness", "ocean_mixed_layer_thickness_defined_by_mixing_scheme", "ocean_mixed_layer_thickness_defined_by_sigma_t", "ocean_mixed_layer_thickness_defined_by_sigma_theta", "ocean_mixed_layer_thickness_defined_by_temperature", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_deficit", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_threshold", "ocean_momentum_xy_biharmonic_diffusivity", "ocean_momentum_xy_laplacian_diffusivity", "ocean_montgomery_potential", "ocean_relative_vorticity", "ocean_rigid_lid_pressure_expressed_as_sea_surface_height_above_geoid", "ocean_salt_x_transport", "ocean_salt_y_transport", "ocean_s_coordinate", "ocean_s_coordinate_g1", "ocean_s_coordinate_g2", "ocean_sigma_coordinate", "ocean_sigma_z_coordinate", "ocean_tracer_biharmonic_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_epineutral_biharmonic_diffusivity", "ocean_tracer_epineutral_laplacian_diffusivity", "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_xy_biharmonic_diffusivity", "ocean_tracer_xy_laplacian_diffusivity", "ocean_vertical_diffusivity", "ocean_vertical_heat_diffusivity", "ocean_vertical_momentum_diffusivity", "ocean_vertical_momentum_diffusivity_due_to_background", "ocean_vertical_momentum_diffusivity_due_to_convection", "ocean_vertical_momentum_diffusivity_due_to_form_drag", "ocean_vertical_momentum_diffusivity_due_to_tides", "ocean_vertical_salt_diffusivity", "ocean_vertical_tracer_diffusivity", "ocean_vertical_tracer_diffusivity_due_to_background", "ocean_vertical_tracer_diffusivity_due_to_convection", "ocean_vertical_tracer_diffusivity_due_to_tides", "ocean_vertical_tracer_diffusivity_due_to_wind_mixing", "ocean_volume_fraction", "ocean_volume_transport_across_line", "ocean_volume_x_transport", "ocean_volume_y_transport", "ocean_y_overturning_mass_streamfunction", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "omnidirectional_photosynthetic_spherical_irradiance_in_sea_water", "omnidirectional_spherical_irradiance_per_unit_wavelength_in_sea_water", "optical_thickness_of_atmosphere_layer_due_to_ambient_aerosol_particles", "original_air_pressure_of_lifted_parcel", "outgoing_water_volume_transport_along_river_channel", "partial_pressure_of_carbon_dioxide_in_sea_water", "partial_pressure_of_methane_in_sea_water", "permafrost_active_layer_thickness", "permafrost_area_fraction", "permafrost_layer_thickness", "photolysis_rate_of_molecular_oxygen", "photolysis_rate_of_nitrogen_dioxide", "photolysis_rate_of_ozone", "photolysis_rate_of_ozone_to_1D_oxygen_atom", "planetary_albedo", "platform_azimuth_angle", "platform_course", "platform_heave", "platform_heave_down", "platform_heave_rate", "platform_heave_rate_down", "platform_heave_rate_up", "platform_heave_up", "platform_id", "platform_name", "platform_orientation", "platform_pitch", "platform_pitch_fore_down", "platform_pitch_fore_up", "platform_pitch_rate", "platform_pitch_rate_fore_down", "platform_pitch_rate_fore_up", "platform_roll", "platform_roll_rate", "platform_roll_rate_starboard_down", "platform_roll_rate_starboard_up", "platform_roll_starboard_down", "platform_roll_starboard_up", "platform_speed_wrt_air", "platform_speed_wrt_ground", "platform_speed_wrt_sea_water", "platform_surge", "platform_surge_aft", "platform_surge_fore", "platform_surge_rate", "platform_surge_rate_aft", "platform_surge_rate_fore", "platform_sway", "platform_sway_port", "platform_sway_rate", "platform_sway_rate_port", "platform_sway_rate_starboard", "platform_sway_starboard", "platform_view_angle", "platform_yaw", "platform_yaw_fore_port", "platform_yaw_fore_starboard", "platform_yaw_rate", "platform_yaw_rate_fore_port", "platform_yaw_rate_fore_starboard", "platform_zenith_angle", "potential_energy_content_of_atmosphere_layer", "potential_vorticity_of_atmosphere_layer", "potential_vorticity_of_ocean_layer", "precipitation_amount", "precipitation_flux", "precipitation_flux_containing_17O", "precipitation_flux_containing_18O", "precipitation_flux_containing_single_2H", "precipitation_flux_onto_canopy", "predominant_precipitation_type_at_surface", "pressure_at_effective_cloud_top_defined_by_infrared_radiation", "probability_distribution_of_wind_from_direction_over_time", "product_of_air_temperature_and_specific_humidity", "product_of_eastward_sea_water_velocity_and_salinity", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_eastward_wind_and_air_temperature", "product_of_eastward_wind_and_geopotential_height", "product_of_eastward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_eastward_wind_and_northward_wind", "product_of_eastward_wind_and_specific_humidity", "product_of_eastward_wind_and_upward_air_velocity", "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", "product_of_lagrangian_tendency_of_air_pressure_and_geopotential_height", "product_of_lagrangian_tendency_of_air_pressure_and_specific_humidity", "product_of_northward_sea_water_velocity_and_salinity", "product_of_northward_sea_water_velocity_and_temperature", "product_of_northward_wind_and_air_temperature", "product_of_northward_wind_and_geopotential_height", "product_of_northward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_northward_wind_and_specific_humidity", "product_of_northward_wind_and_upward_air_velocity", "product_of_upward_air_velocity_and_air_temperature", "product_of_upward_air_velocity_and_specific_humidity", "projection_x_angular_coordinate", "projection_x_coordinate", "projection_y_angular_coordinate", "projection_y_coordinate", "proportion_of_acceptable_signal_returns_from_acoustic_instrument_in_sea_water", "quality_flag", "radial_sea_water_velocity_away_from_instrument", "radial_sea_water_velocity_toward_instrument", "radial_velocity_of_scatterers_away_from_instrument", "radial_velocity_of_scatterers_toward_instrument", "radiation_frequency", "radiation_wavelength", "radioactivity_concentration_in_air", "radioactivity_concentration_of_101Mo_in_air", "radioactivity_concentration_of_101Tc_in_air", "radioactivity_concentration_of_102Mo_in_air", "radioactivity_concentration_of_102mTc_in_air", "radioactivity_concentration_of_102Tc_in_air", "radioactivity_concentration_of_103mRh_in_air", "radioactivity_concentration_of_103Ru_in_air", "radioactivity_concentration_of_104Tc_in_air", "radioactivity_concentration_of_105mRh_in_air", "radioactivity_concentration_of_105Rh_in_air", "radioactivity_concentration_of_105Ru_in_air", "radioactivity_concentration_of_106mRh_in_air", "radioactivity_concentration_of_106Rh_in_air", "radioactivity_concentration_of_106Ru_in_air", "radioactivity_concentration_of_107mPd_in_air", "radioactivity_concentration_of_107Pd_in_air", "radioactivity_concentration_of_107Rh_in_air", "radioactivity_concentration_of_109mAg_in_air", "radioactivity_concentration_of_109Pd_in_air", "radioactivity_concentration_of_110mAg_in_air", "radioactivity_concentration_of_111Ag_in_air", "radioactivity_concentration_of_111mAg_in_air", "radioactivity_concentration_of_111mCd_in_air", "radioactivity_concentration_of_111mPd_in_air", "radioactivity_concentration_of_111Pd_in_air", "radioactivity_concentration_of_112Ag_in_air", "radioactivity_concentration_of_112Pd_in_air", "radioactivity_concentration_of_113Ag_in_air", "radioactivity_concentration_of_113Cd_in_air", "radioactivity_concentration_of_113mAg_in_air", "radioactivity_concentration_of_113mCd_in_air", "radioactivity_concentration_of_113mIn_in_air", "radioactivity_concentration_of_115Ag_in_air", "radioactivity_concentration_of_115Cd_in_air", "radioactivity_concentration_of_115In_in_air", "radioactivity_concentration_of_115mAg_in_air", "radioactivity_concentration_of_115mCd_in_air", "radioactivity_concentration_of_115mIn_in_air", "radioactivity_concentration_of_116In_in_air", "radioactivity_concentration_of_116mIn_in_air", "radioactivity_concentration_of_117Cd_in_air", "radioactivity_concentration_of_117In_in_air", "radioactivity_concentration_of_117mCd_in_air", "radioactivity_concentration_of_117mIn_in_air", "radioactivity_concentration_of_117mSn_in_air", "radioactivity_concentration_of_118Cd_in_air", "radioactivity_concentration_of_118In_in_air", "radioactivity_concentration_of_118mIn_in_air", "radioactivity_concentration_of_119In_in_air", "radioactivity_concentration_of_119mIn_in_air", "radioactivity_concentration_of_119mSn_in_air", "radioactivity_concentration_of_11C_in_air", "radioactivity_concentration_of_121mSn_in_air", "radioactivity_concentration_of_121Sn_in_air", "radioactivity_concentration_of_123mSn_in_air", "radioactivity_concentration_of_123Sn_in_air", "radioactivity_concentration_of_124mSb_in_air", "radioactivity_concentration_of_124Sb_in_air", "radioactivity_concentration_of_125mTe_in_air", "radioactivity_concentration_of_125Sb_in_air", "radioactivity_concentration_of_125Sn_in_air", "radioactivity_concentration_of_126mSb_in_air", "radioactivity_concentration_of_126Sb_in_air", "radioactivity_concentration_of_126Sn_in_air", "radioactivity_concentration_of_127mTe_in_air", "radioactivity_concentration_of_127Sb_in_air", "radioactivity_concentration_of_127Sn_in_air", "radioactivity_concentration_of_127Te_in_air", "radioactivity_concentration_of_128mSb_in_air", "radioactivity_concentration_of_128Sb_in_air", "radioactivity_concentration_of_128Sn_in_air", "radioactivity_concentration_of_129I_in_air", "radioactivity_concentration_of_129mTe_in_air", "radioactivity_concentration_of_129mXe_in_air", "radioactivity_concentration_of_129Sb_in_air", "radioactivity_concentration_of_129Te_in_air", "radioactivity_concentration_of_130I_in_air", "radioactivity_concentration_of_130mI_in_air", "radioactivity_concentration_of_130mSb_in_air", "radioactivity_concentration_of_130Sb_in_air", "radioactivity_concentration_of_130Sn_in_air", "radioactivity_concentration_of_131I_in_air", "radioactivity_concentration_of_131mTe_in_air", "radioactivity_concentration_of_131mXe_in_air", "radioactivity_concentration_of_131Sb_in_air", "radioactivity_concentration_of_131Te_in_air", "radioactivity_concentration_of_132I_in_air", "radioactivity_concentration_of_132Te_in_air", "radioactivity_concentration_of_133I_in_air", "radioactivity_concentration_of_133mI_in_air", "radioactivity_concentration_of_133mTe_in_air", "radioactivity_concentration_of_133mXe_in_air", "radioactivity_concentration_of_133Te_in_air", "radioactivity_concentration_of_133Xe_in_air", "radioactivity_concentration_of_134Cs_in_air", "radioactivity_concentration_of_134I_in_air", "radioactivity_concentration_of_134mCs_in_air", "radioactivity_concentration_of_134mI_in_air", "radioactivity_concentration_of_134mXe_in_air", "radioactivity_concentration_of_134Te_in_air", "radioactivity_concentration_of_135Cs_in_air", "radioactivity_concentration_of_135I_in_air", "radioactivity_concentration_of_135mBa_in_air", "radioactivity_concentration_of_135mCs_in_air", "radioactivity_concentration_of_135mXe_in_air", "radioactivity_concentration_of_135Xe_in_air", "radioactivity_concentration_of_136Cs_in_air", "radioactivity_concentration_of_137Cs_in_air", "radioactivity_concentration_of_137mBa_in_air", "radioactivity_concentration_of_137Xe_in_air", "radioactivity_concentration_of_138Cs_in_air", "radioactivity_concentration_of_138Xe_in_air", "radioactivity_concentration_of_139Ba_in_air", "radioactivity_concentration_of_13N_in_air", "radioactivity_concentration_of_140Ba_in_air", "radioactivity_concentration_of_140La_in_air", "radioactivity_concentration_of_141Ce_in_air", "radioactivity_concentration_of_141La_in_air", "radioactivity_concentration_of_142Ce_in_air", "radioactivity_concentration_of_142La_in_air", "radioactivity_concentration_of_142mPr_in_air", "radioactivity_concentration_of_142Pr_in_air", "radioactivity_concentration_of_143Ce_in_air", "radioactivity_concentration_of_143La_in_air", "radioactivity_concentration_of_143Pr_in_air", "radioactivity_concentration_of_144Ce_in_air", "radioactivity_concentration_of_144mPr_in_air", "radioactivity_concentration_of_144Nd_in_air", "radioactivity_concentration_of_144Pr_in_air", "radioactivity_concentration_of_145Pr_in_air", "radioactivity_concentration_of_146Ce_in_air", "radioactivity_concentration_of_146Pr_in_air", "radioactivity_concentration_of_147Nd_in_air", "radioactivity_concentration_of_147Pm_in_air", "radioactivity_concentration_of_147Pr_in_air", "radioactivity_concentration_of_147Sm_in_air", "radioactivity_concentration_of_148mPm_in_air", "radioactivity_concentration_of_148Pm_in_air", "radioactivity_concentration_of_148Sm_in_air", "radioactivity_concentration_of_149Nd_in_air", "radioactivity_concentration_of_149Pm_in_air", "radioactivity_concentration_of_149Sm_in_air", "radioactivity_concentration_of_150Pm_in_air", "radioactivity_concentration_of_151Nd_in_air", "radioactivity_concentration_of_151Pm_in_air", "radioactivity_concentration_of_151Sm_in_air", "radioactivity_concentration_of_152mPm_in_air", "radioactivity_concentration_of_152Nd_in_air", "radioactivity_concentration_of_152Pm_in_air", "radioactivity_concentration_of_153Sm_in_air", "radioactivity_concentration_of_154Eu_in_air", "radioactivity_concentration_of_155Eu_in_air", "radioactivity_concentration_of_155Sm_in_air", "radioactivity_concentration_of_156Eu_in_air", "radioactivity_concentration_of_156Sm_in_air", "radioactivity_concentration_of_157Eu_in_air", "radioactivity_concentration_of_158Eu_in_air", "radioactivity_concentration_of_159Eu_in_air", "radioactivity_concentration_of_159Gd_in_air", "radioactivity_concentration_of_15O_in_air", "radioactivity_concentration_of_160Tb_in_air", "radioactivity_concentration_of_161Tb_in_air", "radioactivity_concentration_of_162Gd_in_air", "radioactivity_concentration_of_162mTb_in_air", "radioactivity_concentration_of_162Tb_in_air", "radioactivity_concentration_of_163Tb_in_air", "radioactivity_concentration_of_165Dy_in_air", "radioactivity_concentration_of_18F_in_air", "radioactivity_concentration_of_206Hg_in_air", "radioactivity_concentration_of_206Tl_in_air", "radioactivity_concentration_of_207mPb_in_air", "radioactivity_concentration_of_207Tl_in_air", "radioactivity_concentration_of_208Tl_in_air", "radioactivity_concentration_of_209Bi_in_air", "radioactivity_concentration_of_209Pb_in_air", "radioactivity_concentration_of_209Tl_in_air", "radioactivity_concentration_of_210Bi_in_air", "radioactivity_concentration_of_210Pb_in_air", "radioactivity_concentration_of_210Po_in_air", "radioactivity_concentration_of_210Tl_in_air", "radioactivity_concentration_of_211Bi_in_air", "radioactivity_concentration_of_211Pb_in_air", "radioactivity_concentration_of_211Po_in_air", "radioactivity_concentration_of_212Bi_in_air", "radioactivity_concentration_of_212Pb_in_air", "radioactivity_concentration_of_212Po_in_air", "radioactivity_concentration_of_213Bi_in_air", "radioactivity_concentration_of_213Pb_in_air", "radioactivity_concentration_of_213Po_in_air", "radioactivity_concentration_of_214Bi_in_air", "radioactivity_concentration_of_214Pb_in_air", "radioactivity_concentration_of_214Po_in_air", "radioactivity_concentration_of_215At_in_air", "radioactivity_concentration_of_215Bi_in_air", "radioactivity_concentration_of_215Po_in_air", "radioactivity_concentration_of_216At_in_air", "radioactivity_concentration_of_216Po_in_air", "radioactivity_concentration_of_217At_in_air", "radioactivity_concentration_of_217Po_in_air", "radioactivity_concentration_of_218At_in_air", "radioactivity_concentration_of_218Po_in_air", "radioactivity_concentration_of_218Rn_in_air", "radioactivity_concentration_of_219At_in_air", "radioactivity_concentration_of_219Rn_in_air", "radioactivity_concentration_of_220Rn_in_air", "radioactivity_concentration_of_221Fr_in_air", "radioactivity_concentration_of_221Rn_in_air", "radioactivity_concentration_of_222Fr_in_air", "radioactivity_concentration_of_222Ra_in_air", "radioactivity_concentration_of_222Rn_in_air", "radioactivity_concentration_of_223Fr_in_air", "radioactivity_concentration_of_223Ra_in_air", "radioactivity_concentration_of_223Rn_in_air", "radioactivity_concentration_of_224Ra_in_air", "radioactivity_concentration_of_225Ac_in_air", "radioactivity_concentration_of_225Ra_in_air", "radioactivity_concentration_of_226Ac_in_air", "radioactivity_concentration_of_226Ra_in_air", "radioactivity_concentration_of_226Th_in_air", "radioactivity_concentration_of_227Ac_in_air", "radioactivity_concentration_of_227Ra_in_air", "radioactivity_concentration_of_227Th_in_air", "radioactivity_concentration_of_228Ac_in_air", "radioactivity_concentration_of_228Ra_in_air", "radioactivity_concentration_of_228Th_in_air", "radioactivity_concentration_of_229Ac_in_air", "radioactivity_concentration_of_229Ra_in_air", "radioactivity_concentration_of_229Th_in_air", "radioactivity_concentration_of_230Pa_in_air", "radioactivity_concentration_of_230Th_in_air", "radioactivity_concentration_of_230U_in_air", "radioactivity_concentration_of_231Pa_in_air", "radioactivity_concentration_of_231Th_in_air", "radioactivity_concentration_of_231U_in_air", "radioactivity_concentration_of_232Pa_in_air", "radioactivity_concentration_of_232Th_in_air", "radioactivity_concentration_of_232U_in_air", "radioactivity_concentration_of_233Pa_in_air", "radioactivity_concentration_of_233Th_in_air", "radioactivity_concentration_of_233U_in_air", "radioactivity_concentration_of_234mPa_in_air", "radioactivity_concentration_of_234Pa_in_air", "radioactivity_concentration_of_234Th_in_air", "radioactivity_concentration_of_234U_in_air", "radioactivity_concentration_of_235Np_in_air", "radioactivity_concentration_of_235Pu_in_air", "radioactivity_concentration_of_235U_in_air", "radioactivity_concentration_of_236mNp_in_air", "radioactivity_concentration_of_236Np_in_air", "radioactivity_concentration_of_236Pu_in_air", "radioactivity_concentration_of_236U_in_air", "radioactivity_concentration_of_237Np_in_air", "radioactivity_concentration_of_237Pu_in_air", "radioactivity_concentration_of_237U_in_air", "radioactivity_concentration_of_238Np_in_air", "radioactivity_concentration_of_238Pu_in_air", "radioactivity_concentration_of_238U_in_air", "radioactivity_concentration_of_239Np_in_air", "radioactivity_concentration_of_239Pu_in_air", "radioactivity_concentration_of_239U_in_air", "radioactivity_concentration_of_240Am_in_air", "radioactivity_concentration_of_240mNp_in_air", "radioactivity_concentration_of_240Np_in_air", "radioactivity_concentration_of_240Pu_in_air", "radioactivity_concentration_of_240U_in_air", "radioactivity_concentration_of_241Am_in_air", "radioactivity_concentration_of_241Cm_in_air", "radioactivity_concentration_of_241Pu_in_air", "radioactivity_concentration_of_242Am_in_air", "radioactivity_concentration_of_242Cm_in_air", "radioactivity_concentration_of_242m1Am_in_air", "radioactivity_concentration_of_242m2Am_in_air", "radioactivity_concentration_of_242Pu_in_air", "radioactivity_concentration_of_243Am_in_air", "radioactivity_concentration_of_243Cm_in_air", "radioactivity_concentration_of_243Pu_in_air", "radioactivity_concentration_of_244Am_in_air", "radioactivity_concentration_of_244Cm_in_air", "radioactivity_concentration_of_244mAm_in_air", "radioactivity_concentration_of_244Pu_in_air", "radioactivity_concentration_of_245Am_in_air", "radioactivity_concentration_of_245Cm_in_air", "radioactivity_concentration_of_245Pu_in_air", "radioactivity_concentration_of_246Cm_in_air", "radioactivity_concentration_of_247Cm_in_air", "radioactivity_concentration_of_248Cm_in_air", "radioactivity_concentration_of_249Bk_in_air", "radioactivity_concentration_of_249Cf_in_air", "radioactivity_concentration_of_249Cm_in_air", "radioactivity_concentration_of_24Na_in_air", "radioactivity_concentration_of_250Bk_in_air", "radioactivity_concentration_of_250Cf_in_air", "radioactivity_concentration_of_250Cm_in_air", "radioactivity_concentration_of_251Cf_in_air", "radioactivity_concentration_of_252Cf_in_air", "radioactivity_concentration_of_253Cf_in_air", "radioactivity_concentration_of_253Es_in_air", "radioactivity_concentration_of_254Cf_in_air", "radioactivity_concentration_of_254Es_in_air", "radioactivity_concentration_of_254mEs_in_air", "radioactivity_concentration_of_255Es_in_air", "radioactivity_concentration_of_3H_in_air", "radioactivity_concentration_of_41Ar_in_air", "radioactivity_concentration_of_54Mn_in_air", "radioactivity_concentration_of_58Co_in_air", "radioactivity_concentration_of_60Co_in_air", "radioactivity_concentration_of_72Ga_in_air", "radioactivity_concentration_of_72Zn_in_air", "radioactivity_concentration_of_73Ga_in_air", "radioactivity_concentration_of_75Ge_in_air", "radioactivity_concentration_of_77As_in_air", "radioactivity_concentration_of_77Ge_in_air", "radioactivity_concentration_of_77mGe_in_air", "radioactivity_concentration_of_78As_in_air", "radioactivity_concentration_of_78Ge_in_air", "radioactivity_concentration_of_79Se_in_air", "radioactivity_concentration_of_81mSe_in_air", "radioactivity_concentration_of_81Se_in_air", "radioactivity_concentration_of_82Br_in_air", "radioactivity_concentration_of_82mBr_in_air", "radioactivity_concentration_of_83Br_in_air", "radioactivity_concentration_of_83mKr_in_air", "radioactivity_concentration_of_83mSe_in_air", "radioactivity_concentration_of_83Se_in_air", "radioactivity_concentration_of_84Br_in_air", "radioactivity_concentration_of_84mBr_in_air", "radioactivity_concentration_of_85Kr_in_air", "radioactivity_concentration_of_85mKr_in_air", "radioactivity_concentration_of_86mRb_in_air", "radioactivity_concentration_of_86Rb_in_air", "radioactivity_concentration_of_87Kr_in_air", "radioactivity_concentration_of_87Rb_in_air", "radioactivity_concentration_of_88Kr_in_air", "radioactivity_concentration_of_88Rb_in_air", "radioactivity_concentration_of_89Kr_in_air", "radioactivity_concentration_of_89Rb_in_air", "radioactivity_concentration_of_89Sr_in_air", "radioactivity_concentration_of_90mY_in_air", "radioactivity_concentration_of_90Sr_in_air", "radioactivity_concentration_of_90Y_in_air", "radioactivity_concentration_of_91mY_in_air", "radioactivity_concentration_of_91Sr_in_air", "radioactivity_concentration_of_91Y_in_air", "radioactivity_concentration_of_92Sr_in_air", "radioactivity_concentration_of_92Y_in_air", "radioactivity_concentration_of_93Y_in_air", "radioactivity_concentration_of_93Zr_in_air", "radioactivity_concentration_of_94mNb_in_air", "radioactivity_concentration_of_94Nb_in_air", "radioactivity_concentration_of_94Y_in_air", "radioactivity_concentration_of_95mNb_in_air", "radioactivity_concentration_of_95Nb_in_air", "radioactivity_concentration_of_95Y_in_air", "radioactivity_concentration_of_95Zr_in_air", "radioactivity_concentration_of_96Nb_in_air", "radioactivity_concentration_of_97mNb_in_air", "radioactivity_concentration_of_97Nb_in_air", "radioactivity_concentration_of_97Zr_in_air", "radioactivity_concentration_of_98Nb_in_air", "radioactivity_concentration_of_99Mo_in_air", "radioactivity_concentration_of_99mTc_in_air", "radioactivity_concentration_of_99Tc_in_air", "radius_of_tropical_cyclone_central_dense_overcast_region", "radius_of_tropical_cyclone_eye", "radius_of_tropical_cyclone_maximum_sustained_wind_speed", "rainfall_amount", "rainfall_rate", "rate_of_change_test_quality_flag", "rate_of_hydroxyl_radical_destruction_due_to_reaction_with_nmvoc", "ratio_of_ice_volume_in_frozen_ground_to_pore_volume_in_unfrozen_ground", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "ratio_of_sea_water_practical_salinity_anomaly_to_relaxation_timescale", "ratio_of_x_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "ratio_of_y_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "realization", "reference_air_pressure_for_atmosphere_vertical_coordinate", "reference_sea_water_density_for_boussinesq_approximation", "relative_humidity", "relative_humidity_for_aerosol_particle_size_selection", "relative_platform_azimuth_angle", "relative_sensor_azimuth_angle", "richardson_number_in_sea_water", "root_depth", "root_mass_content_of_carbon", "root_mass_content_of_nitrogen", "runoff_amount", "runoff_amount_excluding_baseflow", "salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "salt_flux_into_sea_water_from_rivers", "scattering_angle", "scene_type_of_dvorak_tropical_cyclone_cloud_region", "scene_type_of_dvorak_tropical_cyclone_eye_region", "sea_area_fraction", "sea_floor_depth_below_geoid", "sea_floor_depth_below_geopotential_datum", "sea_floor_depth_below_mean_sea_level", "sea_floor_depth_below_reference_ellipsoid", "sea_floor_depth_below_sea_surface", "sea_floor_sediment_grain_size", "sea_ice_amount", "sea_ice_and_surface_snow_amount", "sea_ice_area_fraction", "sea_ice_area_transport_across_line", "sea_ice_average_normal_horizontal_stress", "sea_ice_basal_drag_coefficient_for_momentum_in_sea_water", "sea_ice_basal_temperature", "sea_ice_classification", "sea_ice_draft", "sea_ice_extent", "sea_ice_floe_diameter", "sea_ice_mass_content_of_salt", "sea_ice_melt_pond_thickness", "sea_ice_salinity", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_ice_thickness", "sea_ice_transport_across_line", "sea_ice_x_displacement", "sea_ice_x_force_per_unit_area_due_to_coriolis_effect", "sea_ice_x_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_x_internal_stress", "sea_ice_x_transport", "sea_ice_x_velocity", "sea_ice_y_displacement", "sea_ice_y_force_per_unit_area_due_to_coriolis_effect", "sea_ice_y_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_y_internal_stress", "sea_ice_y_transport", "sea_ice_y_velocity", "sea_surface_density", "sea_surface_downward_eastward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_downward_northward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_foundation_temperature", "sea_surface_height_above_geoid", "sea_surface_height_above_geopotential_datum", "sea_surface_height_above_mean_sea_level", "sea_surface_height_above_reference_ellipsoid", "sea_surface_height_amplitude_due_to_earth_tide", "sea_surface_height_amplitude_due_to_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_geocentric_ocean_tide", "sea_surface_height_amplitude_due_to_non_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_pole_tide", "sea_surface_height_bias_due_to_sea_surface_roughness", "sea_surface_height_correction_due_to_air_pressure_and_wind_at_high_frequency", "sea_surface_height_correction_due_to_air_pressure_at_low_frequency", "sea_surface_mean_square_upwave_slope_direction", "sea_surface_primary_swell_wave_directional_spread", "sea_surface_primary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_from_direction", "sea_surface_primary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_significant_height", "sea_surface_salinity", "sea_surface_secondary_swell_wave_directional_spread", "sea_surface_secondary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_from_direction", "sea_surface_secondary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_significant_height", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_swell_wave_directional_spread", "sea_surface_swell_wave_from_direction", "sea_surface_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_swell_wave_significant_height", "sea_surface_swell_wave_to_direction", "sea_surface_temperature", "sea_surface_tertiary_swell_wave_directional_spread", "sea_surface_tertiary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_from_direction", "sea_surface_tertiary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_mean_period", "sea_surface_tertiary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_significant_height", "sea_surface_wave_directional_spread", "sea_surface_wave_directional_spread_at_variance_spectral_density_maximum", "sea_surface_wave_directional_variance_spectral_density", "sea_surface_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wave_from_direction", "sea_surface_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wave_maximum_crest_height", "sea_surface_wave_maximum_height", "sea_surface_wave_maximum_steepness", "sea_surface_wave_maximum_trough_depth", "sea_surface_wave_mean_height", "sea_surface_wave_mean_height_of_highest_tenth", "sea_surface_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wave_mean_period_of_highest_tenth", "sea_surface_wave_mean_wavenumber_from_variance_spectral_density_first_wavenumber_moment", "sea_surface_wave_period_at_variance_spectral_density_maximum", "sea_surface_wave_period_of_highest_wave", "sea_surface_wave_significant_height", "sea_surface_wave_significant_period", "sea_surface_wave_stokes_drift_eastward_velocity", "sea_surface_wave_stokes_drift_northward_velocity", "sea_surface_wave_stokes_drift_speed", "sea_surface_wave_stokes_drift_to_direction", "sea_surface_wave_stokes_drift_x_velocity", "sea_surface_wave_stokes_drift_y_velocity", "sea_surface_wave_to_direction", "sea_surface_wave_variance_spectral_density", "sea_surface_wave_xx_radiation_stress", "sea_surface_wave_xy_radiation_stress", "sea_surface_wave_yy_radiation_stress", "sea_surface_wind_wave_directional_spread", "sea_surface_wind_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wind_wave_from_direction", "sea_surface_wind_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wind_wave_period_at_variance_spectral_density_maximum", "sea_surface_wind_wave_significant_height", "sea_surface_wind_wave_to_direction", "sea_water_absolute_salinity", "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", "sea_water_age_since_surface_contact", "sea_water_alkalinity_expressed_as_mole_equivalent", "sea_water_alkalinity_natural_analogue_expressed_as_mole_equivalent", "sea_water_conservative_temperature", "sea_water_cox_salinity", "sea_water_density", "sea_water_electrical_conductivity", "sea_water_knudsen_salinity", "sea_water_mass", "sea_water_mass_per_unit_area", "sea_water_mass_per_unit_area_expressed_as_thickness", "sea_water_neutral_density", "sea_water_ph_abiotic_analogue_reported_on_total_scale", "sea_water_ph_natural_analogue_reported_on_total_scale", "sea_water_ph_reported_on_total_scale", "sea_water_potential_density", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_practical_salinity", "sea_water_practical_salinity_at_sea_floor", "sea_water_preformed_salinity", "sea_water_pressure", "sea_water_pressure_at_sea_floor", "sea_water_pressure_at_sea_water_surface", "sea_water_pressure_due_to_sea_water", "sea_water_redistributed_conservative_temperature", "sea_water_redistributed_potential_temperature", "sea_water_reference_salinity", "sea_water_salinity", "sea_water_salinity_at_sea_floor", "sea_water_sigma_t", "sea_water_sigma_t_difference", "sea_water_sigma_theta", "sea_water_sigma_theta_difference", "sea_water_specific_potential_enthalpy", "sea_water_speed", "sea_water_speed_at_sea_floor", "sea_water_speed_due_to_tides", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "sea_water_transport_across_line", "sea_water_turbidity", "sea_water_velocity_from_direction", "sea_water_velocity_to_direction", "sea_water_velocity_to_direction_at_sea_floor", "sea_water_velocity_to_direction_due_to_tides", "sea_water_volume", "sea_water_x_velocity", "sea_water_x_velocity_due_to_parameterized_mesoscale_eddies", "sea_water_y_velocity", "sea_water_y_velocity_due_to_parameterized_mesoscale_eddies", "secchi_depth_of_sea_water", "sensor_azimuth_angle", "sensor_band_central_radiation_frequency", "sensor_band_central_radiation_wavelength", "sensor_band_central_radiation_wavenumber", "sensor_band_identifier", "sensor_zenith_angle", "shallow_convection_time_fraction", "shallow_convective_cloud_base_altitude", "shallow_convective_cloud_top_altitude", "shallow_convective_precipitation_flux", "signal_intensity_from_multibeam_acoustic_doppler_velocity_sensor_in_sea_water", "single_scattering_albedo_in_air_due_to_ambient_aerosol_particles", "sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_iron_in_sea_water", "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_organic_nitrogen_in_sea_water", "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", "sinking_mole_flux_of_particulate_silicon_in_sea_water", "slow_soil_pool_mass_content_of_carbon", "snow_area_fraction_viewable_from_above", "snowfall_amount", "snow_transport_across_line_due_to_sea_ice_dynamics", "soil_frozen_water_content", "soil_hydraulic_conductivity_at_saturation", "soil_mass_content_of_13C", "soil_mass_content_of_14C", "soil_mass_content_of_carbon", "soil_mass_content_of_inorganic_ammonium_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrate_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", "soil_mass_content_of_nitrogen", "soil_moisture_content_at_field_capacity", "soil_pool_carbon_decay_rate", "soil_porosity", "soil_suction_at_saturation", "soil_temperature", "soil_thermal_capacity", "soil_thermal_conductivity", "soil_type", "soil_water_ph", "solar_azimuth_angle", "solar_elevation_angle", "solar_irradiance_per_unit_wavelength", "solar_zenith_angle", "solid_precipitation_flux", "solid_precipitation_flux_containing_17O", "solid_precipitation_flux_containing_18O", "solid_precipitation_flux_containing_single_2H", "soot_content_of_surface_snow", "sound_intensity_in_air", "sound_intensity_in_water", "sound_intensity_level_in_air", "sound_intensity_level_in_water", "sound_pressure_in_water", "sound_pressure_level_in_water", "specific_gravitational_potential_energy", "specific_heat_capacity_of_frozen_ground", "specific_heat_capacity_of_sea_water", "specific_humidity", "specific_kinetic_energy_of_air", "specific_kinetic_energy_of_sea_water", "specific_turbulent_kinetic_energy_dissipation_in_sea_water", "specific_turbulent_kinetic_energy_of_sea_water", "speed_of_sound_in_sea_water", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_below_threshold", "spike_test_quality_flag", "square_of_air_temperature", "square_of_brunt_vaisala_frequency_in_air", "square_of_brunt_vaisala_frequency_in_sea_water", "square_of_eastward_wind", "square_of_geopotential_height", "square_of_lagrangian_tendency_of_air_pressure", "square_of_northward_wind", "square_of_ocean_mixed_layer_thickness_defined_by_sigma_t", "square_of_sea_surface_height_above_geoid", "square_of_sea_surface_salinity", "square_of_sea_surface_temperature", "square_of_upward_air_velocity", "square_of_upward_ocean_mass_transport", "status_flag", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "steric_change_in_mean_sea_level", "steric_change_in_sea_surface_height", "storm_motion_speed", "stratiform_cloud_area_fraction", "stratiform_cloud_area_fraction_in_atmosphere_layer", "stratiform_cloud_longwave_emissivity", "stratiform_graupel_fall_amount", "stratiform_graupel_flux", "stratiform_precipitation_amount", "stratiform_precipitation_flux", "stratiform_rainfall_amount", "stratiform_rainfall_flux", "stratiform_rainfall_rate", "stratiform_snowfall_amount", "stratiform_snowfall_flux", "stratosphere_mole_content_of_nitrogen_dioxide", "stratosphere_optical_thickness_due_to_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_volcanic_ambient_aerosol_particles", "subsurface_litter_mass_content_of_carbon", "subsurface_litter_mass_content_of_nitrogen", "subsurface_runoff_amount", "sunglint_angle", "sunlit_binary_mask", "surface_altitude", "surface_backwards_scattering_coefficient_of_radar_wave", "surface_bidirectional_reflectance", "surface_brightness_temperature", "surface_carbon_dioxide_abiotic_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_natural_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_partial_pressure_difference_between_air_and_sea_water", "surface_carbon_dioxide_partial_pressure_difference_between_sea_water_and_air", "surface_diffuse_downwelling_photosynthetic_radiative_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_diffuse_shortwave_hemispherical_reflectance", "surface_direct_along_beam_shortwave_flux_in_air", "surface_direct_downwelling_shortwave_flux_in_air", "surface_direct_shortwave_hemispherical_reflectance", "surface_downward_eastward_stress", "surface_downward_eastward_stress_due_to_boundary_layer_mixing", "surface_downward_eastward_stress_due_to_ocean_viscous_dissipation", "surface_downward_eastward_stress_due_to_sea_surface_waves", "surface_downward_heat_flux_in_air", "surface_downward_heat_flux_in_sea_ice", "surface_downward_heat_flux_in_sea_water", "surface_downward_heat_flux_in_snow", "surface_downward_latent_heat_flux", "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_natural_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_methane_due_to_wetland_biological_consumption", "surface_downward_mass_flux_of_water_due_to_irrigation", "surface_downward_northward_stress", "surface_downward_northward_stress_due_to_boundary_layer_mixing", "surface_downward_northward_stress_due_to_ocean_viscous_dissipation", "surface_downward_northward_stress_due_to_sea_surface_waves", "surface_downward_sensible_heat_flux", "surface_downward_water_flux", "surface_downward_x_stress", "surface_downward_x_stress_correction", "surface_downward_y_stress", "surface_downward_y_stress_correction", "surface_downwelling_longwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_photon_flux_in_sea_water", "surface_downwelling_photon_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_radiance_in_sea_water", "surface_downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photosynthetic_photon_flux_in_air", "surface_downwelling_photosynthetic_photon_flux_in_sea_water", "surface_downwelling_photosynthetic_photon_radiance_in_sea_water", "surface_downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photosynthetic_radiance_in_sea_water", "surface_downwelling_photosynthetic_radiative_flux_in_air", "surface_downwelling_photosynthetic_radiative_flux_in_sea_water", "surface_downwelling_photosynthetic_spherical_irradiance_in_sea_water", "surface_downwelling_radiance_in_sea_water", "surface_downwelling_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_radiative_flux_in_sea_water", "surface_downwelling_radiative_flux_per_unit_wavelength_in_air", "surface_downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_shortwave_flux_in_air", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_downwelling_shortwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_spherical_irradiance_in_sea_water", "surface_downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_drag_coefficient_for_heat_in_air", "surface_drag_coefficient_for_momentum_in_air", "surface_drag_coefficient_in_air", "surface_eastward_sea_water_velocity", "surface_frozen_carbon_dioxide_amount", "surface_geopotential", "surface_geostrophic_eastward_sea_water_velocity", "surface_geostrophic_eastward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_northward_sea_water_velocity", "surface_geostrophic_northward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_x_velocity", "surface_geostrophic_sea_water_x_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_y_velocity", "surface_geostrophic_sea_water_y_velocity_assuming_mean_sea_level_for_geoid", "surface_height_above_geopotential_datum", "surface_litter_mass_content_of_carbon", "surface_litter_mass_content_of_nitrogen", "surface_longwave_emissivity", "surface_microwave_emissivity", "surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_longwave_flux", "surface_net_downward_longwave_flux_assuming_clear_sky", "surface_net_downward_mass_flux_of_ammonia_due_to_bidirectional_surface_exchange", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change", "surface_net_downward_radiative_flux", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_shortwave_flux", "surface_net_downward_shortwave_flux_assuming_clear_sky", "surface_net_upward_longwave_flux", "surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change", "surface_net_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_processes", "surface_net_upward_radiative_flux", "surface_net_upward_shortwave_flux", "surface_northward_sea_water_velocity", "surface_partial_pressure_of_carbon_dioxide_abiotic_analogue_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_in_air", "surface_partial_pressure_of_carbon_dioxide_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_natural_analogue_in_sea_water", "surface_radioactivity_content", "surface_radioactivity_content_of_101Mo", "surface_radioactivity_content_of_101Tc", "surface_radioactivity_content_of_102Mo", "surface_radioactivity_content_of_102mTc", "surface_radioactivity_content_of_102Tc", "surface_radioactivity_content_of_103mRh", "surface_radioactivity_content_of_103Ru", "surface_radioactivity_content_of_104Tc", "surface_radioactivity_content_of_105mRh", "surface_radioactivity_content_of_105Rh", "surface_radioactivity_content_of_105Ru", "surface_radioactivity_content_of_106mRh", "surface_radioactivity_content_of_106Rh", "surface_radioactivity_content_of_106Ru", "surface_radioactivity_content_of_107mPd", "surface_radioactivity_content_of_107Pd", "surface_radioactivity_content_of_107Rh", "surface_radioactivity_content_of_109mAg", "surface_radioactivity_content_of_109Pd", "surface_radioactivity_content_of_110mAg", "surface_radioactivity_content_of_111Ag", "surface_radioactivity_content_of_111mAg", "surface_radioactivity_content_of_111mCd", "surface_radioactivity_content_of_111mPd", "surface_radioactivity_content_of_111Pd", "surface_radioactivity_content_of_112Ag", "surface_radioactivity_content_of_112Pd", "surface_radioactivity_content_of_113Ag", "surface_radioactivity_content_of_113Cd", "surface_radioactivity_content_of_113mAg", "surface_radioactivity_content_of_113mCd", "surface_radioactivity_content_of_113mIn", "surface_radioactivity_content_of_115Ag", "surface_radioactivity_content_of_115Cd", "surface_radioactivity_content_of_115In", "surface_radioactivity_content_of_115mAg", "surface_radioactivity_content_of_115mCd", "surface_radioactivity_content_of_115mIn", "surface_radioactivity_content_of_116In", "surface_radioactivity_content_of_116mIn", "surface_radioactivity_content_of_117Cd", "surface_radioactivity_content_of_117In", "surface_radioactivity_content_of_117mCd", "surface_radioactivity_content_of_117mIn", "surface_radioactivity_content_of_117mSn", "surface_radioactivity_content_of_118Cd", "surface_radioactivity_content_of_118In", "surface_radioactivity_content_of_118mIn", "surface_radioactivity_content_of_119In", "surface_radioactivity_content_of_119mIn", "surface_radioactivity_content_of_119mSn", "surface_radioactivity_content_of_11C", "surface_radioactivity_content_of_121mSn", "surface_radioactivity_content_of_121Sn", "surface_radioactivity_content_of_123mSn", "surface_radioactivity_content_of_123Sn", "surface_radioactivity_content_of_124mSb", "surface_radioactivity_content_of_124Sb", "surface_radioactivity_content_of_125mTe", "surface_radioactivity_content_of_125Sb", "surface_radioactivity_content_of_125Sn", "surface_radioactivity_content_of_126mSb", "surface_radioactivity_content_of_126Sb", "surface_radioactivity_content_of_126Sn", "surface_radioactivity_content_of_127mTe", "surface_radioactivity_content_of_127Sb", "surface_radioactivity_content_of_127Sn", "surface_radioactivity_content_of_127Te", "surface_radioactivity_content_of_128mSb", "surface_radioactivity_content_of_128Sb", "surface_radioactivity_content_of_128Sn", "surface_radioactivity_content_of_129I", "surface_radioactivity_content_of_129mTe", "surface_radioactivity_content_of_129mXe", "surface_radioactivity_content_of_129Sb", "surface_radioactivity_content_of_129Te", "surface_radioactivity_content_of_130I", "surface_radioactivity_content_of_130mI", "surface_radioactivity_content_of_130mSb", "surface_radioactivity_content_of_130Sb", "surface_radioactivity_content_of_130Sn", "surface_radioactivity_content_of_131I", "surface_radioactivity_content_of_131mTe", "surface_radioactivity_content_of_131mXe", "surface_radioactivity_content_of_131Sb", "surface_radioactivity_content_of_131Te", "surface_radioactivity_content_of_132I", "surface_radioactivity_content_of_132Te", "surface_radioactivity_content_of_133I", "surface_radioactivity_content_of_133mI", "surface_radioactivity_content_of_133mTe", "surface_radioactivity_content_of_133mXe", "surface_radioactivity_content_of_133Te", "surface_radioactivity_content_of_133Xe", "surface_radioactivity_content_of_134Cs", "surface_radioactivity_content_of_134I", "surface_radioactivity_content_of_134mCs", "surface_radioactivity_content_of_134mI", "surface_radioactivity_content_of_134mXe", "surface_radioactivity_content_of_134Te", "surface_radioactivity_content_of_135Cs", "surface_radioactivity_content_of_135I", "surface_radioactivity_content_of_135mBa", "surface_radioactivity_content_of_135mCs", "surface_radioactivity_content_of_135mXe", "surface_radioactivity_content_of_135Xe", "surface_radioactivity_content_of_136Cs", "surface_radioactivity_content_of_137Cs", "surface_radioactivity_content_of_137mBa", "surface_radioactivity_content_of_137Xe", "surface_radioactivity_content_of_138Cs", "surface_radioactivity_content_of_138Xe", "surface_radioactivity_content_of_139Ba", "surface_radioactivity_content_of_13N", "surface_radioactivity_content_of_140Ba", "surface_radioactivity_content_of_140La", "surface_radioactivity_content_of_141Ce", "surface_radioactivity_content_of_141La", "surface_radioactivity_content_of_142Ce", "surface_radioactivity_content_of_142La", "surface_radioactivity_content_of_142mPr", "surface_radioactivity_content_of_142Pr", "surface_radioactivity_content_of_143Ce", "surface_radioactivity_content_of_143La", "surface_radioactivity_content_of_143Pr", "surface_radioactivity_content_of_144Ce", "surface_radioactivity_content_of_144mPr", "surface_radioactivity_content_of_144Nd", "surface_radioactivity_content_of_144Pr", "surface_radioactivity_content_of_145Pr", "surface_radioactivity_content_of_146Ce", "surface_radioactivity_content_of_146Pr", "surface_radioactivity_content_of_147Nd", "surface_radioactivity_content_of_147Pm", "surface_radioactivity_content_of_147Pr", "surface_radioactivity_content_of_147Sm", "surface_radioactivity_content_of_148mPm", "surface_radioactivity_content_of_148Pm", "surface_radioactivity_content_of_148Sm", "surface_radioactivity_content_of_149Nd", "surface_radioactivity_content_of_149Pm", "surface_radioactivity_content_of_149Sm", "surface_radioactivity_content_of_150Pm", "surface_radioactivity_content_of_151Nd", "surface_radioactivity_content_of_151Pm", "surface_radioactivity_content_of_151Sm", "surface_radioactivity_content_of_152mPm", "surface_radioactivity_content_of_152Nd", "surface_radioactivity_content_of_152Pm", "surface_radioactivity_content_of_153Sm", "surface_radioactivity_content_of_154Eu", "surface_radioactivity_content_of_155Eu", "surface_radioactivity_content_of_155Sm", "surface_radioactivity_content_of_156Eu", "surface_radioactivity_content_of_156Sm", "surface_radioactivity_content_of_157Eu", "surface_radioactivity_content_of_158Eu", "surface_radioactivity_content_of_159Eu", "surface_radioactivity_content_of_159Gd", "surface_radioactivity_content_of_15O", "surface_radioactivity_content_of_160Tb", "surface_radioactivity_content_of_161Tb", "surface_radioactivity_content_of_162Gd", "surface_radioactivity_content_of_162mTb", "surface_radioactivity_content_of_162Tb", "surface_radioactivity_content_of_163Tb", "surface_radioactivity_content_of_165Dy", "surface_radioactivity_content_of_18F", "surface_radioactivity_content_of_206Hg", "surface_radioactivity_content_of_206Tl", "surface_radioactivity_content_of_207mPb", "surface_radioactivity_content_of_207Tl", "surface_radioactivity_content_of_208Tl", "surface_radioactivity_content_of_209Bi", "surface_radioactivity_content_of_209Pb", "surface_radioactivity_content_of_209Tl", "surface_radioactivity_content_of_210Bi", "surface_radioactivity_content_of_210Pb", "surface_radioactivity_content_of_210Po", "surface_radioactivity_content_of_210Tl", "surface_radioactivity_content_of_211Bi", "surface_radioactivity_content_of_211Pb", "surface_radioactivity_content_of_211Po", "surface_radioactivity_content_of_212Bi", "surface_radioactivity_content_of_212Pb", "surface_radioactivity_content_of_212Po", "surface_radioactivity_content_of_213Bi", "surface_radioactivity_content_of_213Pb", "surface_radioactivity_content_of_213Po", "surface_radioactivity_content_of_214Bi", "surface_radioactivity_content_of_214Pb", "surface_radioactivity_content_of_214Po", "surface_radioactivity_content_of_215At", "surface_radioactivity_content_of_215Bi", "surface_radioactivity_content_of_215Po", "surface_radioactivity_content_of_216At", "surface_radioactivity_content_of_216Po", "surface_radioactivity_content_of_217At", "surface_radioactivity_content_of_217Po", "surface_radioactivity_content_of_218At", "surface_radioactivity_content_of_218Po", "surface_radioactivity_content_of_218Rn", "surface_radioactivity_content_of_219At", "surface_radioactivity_content_of_219Rn", "surface_radioactivity_content_of_220Rn", "surface_radioactivity_content_of_221Fr", "surface_radioactivity_content_of_221Rn", "surface_radioactivity_content_of_222Fr", "surface_radioactivity_content_of_222Ra", "surface_radioactivity_content_of_222Rn", "surface_radioactivity_content_of_223Fr", "surface_radioactivity_content_of_223Ra", "surface_radioactivity_content_of_223Rn", "surface_radioactivity_content_of_224Ra", "surface_radioactivity_content_of_225Ac", "surface_radioactivity_content_of_225Ra", "surface_radioactivity_content_of_226Ac", "surface_radioactivity_content_of_226Ra", "surface_radioactivity_content_of_226Th", "surface_radioactivity_content_of_227Ac", "surface_radioactivity_content_of_227Ra", "surface_radioactivity_content_of_227Th", "surface_radioactivity_content_of_228Ac", "surface_radioactivity_content_of_228Ra", "surface_radioactivity_content_of_228Th", "surface_radioactivity_content_of_229Ac", "surface_radioactivity_content_of_229Ra", "surface_radioactivity_content_of_229Th", "surface_radioactivity_content_of_230Pa", "surface_radioactivity_content_of_230Th", "surface_radioactivity_content_of_230U", "surface_radioactivity_content_of_231Pa", "surface_radioactivity_content_of_231Th", "surface_radioactivity_content_of_231U", "surface_radioactivity_content_of_232Pa", "surface_radioactivity_content_of_232Th", "surface_radioactivity_content_of_232U", "surface_radioactivity_content_of_233Pa", "surface_radioactivity_content_of_233Th", "surface_radioactivity_content_of_233U", "surface_radioactivity_content_of_234mPa", "surface_radioactivity_content_of_234Pa", "surface_radioactivity_content_of_234Th", "surface_radioactivity_content_of_234U", "surface_radioactivity_content_of_235Np", "surface_radioactivity_content_of_235Pu", "surface_radioactivity_content_of_235U", "surface_radioactivity_content_of_236mNp", "surface_radioactivity_content_of_236Np", "surface_radioactivity_content_of_236Pu", "surface_radioactivity_content_of_236U", "surface_radioactivity_content_of_237Np", "surface_radioactivity_content_of_237Pu", "surface_radioactivity_content_of_237U", "surface_radioactivity_content_of_238Np", "surface_radioactivity_content_of_238Pu", "surface_radioactivity_content_of_238U", "surface_radioactivity_content_of_239Np", "surface_radioactivity_content_of_239Pu", "surface_radioactivity_content_of_239U", "surface_radioactivity_content_of_240Am", "surface_radioactivity_content_of_240mNp", "surface_radioactivity_content_of_240Np", "surface_radioactivity_content_of_240Pu", "surface_radioactivity_content_of_240U", "surface_radioactivity_content_of_241Am", "surface_radioactivity_content_of_241Cm", "surface_radioactivity_content_of_241Pu", "surface_radioactivity_content_of_242Am", "surface_radioactivity_content_of_242Cm", "surface_radioactivity_content_of_242m1Am", "surface_radioactivity_content_of_242m2Am", "surface_radioactivity_content_of_242Pu", "surface_radioactivity_content_of_243Am", "surface_radioactivity_content_of_243Cm", "surface_radioactivity_content_of_243Pu", "surface_radioactivity_content_of_244Am", "surface_radioactivity_content_of_244Cm", "surface_radioactivity_content_of_244mAm", "surface_radioactivity_content_of_244Pu", "surface_radioactivity_content_of_245Am", "surface_radioactivity_content_of_245Cm", "surface_radioactivity_content_of_245Pu", "surface_radioactivity_content_of_246Cm", "surface_radioactivity_content_of_247Cm", "surface_radioactivity_content_of_248Cm", "surface_radioactivity_content_of_249Bk", "surface_radioactivity_content_of_249Cf", "surface_radioactivity_content_of_249Cm", "surface_radioactivity_content_of_24Na", "surface_radioactivity_content_of_250Bk", "surface_radioactivity_content_of_250Cf", "surface_radioactivity_content_of_250Cm", "surface_radioactivity_content_of_251Cf", "surface_radioactivity_content_of_252Cf", "surface_radioactivity_content_of_253Cf", "surface_radioactivity_content_of_253Es", "surface_radioactivity_content_of_254Cf", "surface_radioactivity_content_of_254Es", "surface_radioactivity_content_of_254mEs", "surface_radioactivity_content_of_255Es", "surface_radioactivity_content_of_3H", "surface_radioactivity_content_of_41Ar", "surface_radioactivity_content_of_54Mn", "surface_radioactivity_content_of_58Co", "surface_radioactivity_content_of_60Co", "surface_radioactivity_content_of_72Ga", "surface_radioactivity_content_of_72Zn", "surface_radioactivity_content_of_73Ga", "surface_radioactivity_content_of_75Ge", "surface_radioactivity_content_of_77As", "surface_radioactivity_content_of_77Ge", "surface_radioactivity_content_of_77mGe", "surface_radioactivity_content_of_78As", "surface_radioactivity_content_of_78Ge", "surface_radioactivity_content_of_79Se", "surface_radioactivity_content_of_81mSe", "surface_radioactivity_content_of_81Se", "surface_radioactivity_content_of_82Br", "surface_radioactivity_content_of_82mBr", "surface_radioactivity_content_of_83Br", "surface_radioactivity_content_of_83mKr", "surface_radioactivity_content_of_83mSe", "surface_radioactivity_content_of_83Se", "surface_radioactivity_content_of_84Br", "surface_radioactivity_content_of_84mBr", "surface_radioactivity_content_of_85Kr", "surface_radioactivity_content_of_85mKr", "surface_radioactivity_content_of_86mRb", "surface_radioactivity_content_of_86Rb", "surface_radioactivity_content_of_87Kr", "surface_radioactivity_content_of_87Rb", "surface_radioactivity_content_of_88Kr", "surface_radioactivity_content_of_88Rb", "surface_radioactivity_content_of_89Kr", "surface_radioactivity_content_of_89Rb", "surface_radioactivity_content_of_89Sr", "surface_radioactivity_content_of_90mY", "surface_radioactivity_content_of_90Sr", "surface_radioactivity_content_of_90Y", "surface_radioactivity_content_of_91mY", "surface_radioactivity_content_of_91Sr", "surface_radioactivity_content_of_91Y", "surface_radioactivity_content_of_92Sr", "surface_radioactivity_content_of_92Y", "surface_radioactivity_content_of_93Y", "surface_radioactivity_content_of_93Zr", "surface_radioactivity_content_of_94mNb", "surface_radioactivity_content_of_94Nb", "surface_radioactivity_content_of_94Y", "surface_radioactivity_content_of_95mNb", "surface_radioactivity_content_of_95Nb", "surface_radioactivity_content_of_95Y", "surface_radioactivity_content_of_95Zr", "surface_radioactivity_content_of_96Nb", "surface_radioactivity_content_of_97mNb", "surface_radioactivity_content_of_97Nb", "surface_radioactivity_content_of_97Zr", "surface_radioactivity_content_of_98Nb", "surface_radioactivity_content_of_99Mo", "surface_radioactivity_content_of_99mTc", "surface_radioactivity_content_of_99Tc", "surface_ratio_of_upwelling_radiance_emerging_from_sea_water_to_downwelling_radiative_flux_in_air", "surface_roughness_length", "surface_roughness_length_for_heat_in_air", "surface_roughness_length_for_humidity_in_air", "surface_roughness_length_for_momentum_in_air", "surface_runoff_amount", "surface_snow_amount", "surface_snow_and_ice_melt_flux", "surface_snow_and_ice_melt_heat_flux", "surface_snow_area_fraction", "surface_snow_density", "surface_snow_melt_amount", "surface_snow_melt_and_sublimation_heat_flux", "surface_snow_melt_flux", "surface_snow_melt_heat_flux", "surface_snow_sublimation_amount", "surface_snow_sublimation_heat_flux", "surface_snow_thickness", "surface_specific_humidity", "surface_temperature", "surface_temperature_anomaly", "surface_upward_eastward_stress_due_to_sea_surface_waves", "surface_upward_heat_flux_due_to_anthropogenic_energy_consumption", "surface_upward_heat_flux_in_air", "surface_upward_latent_heat_flux", "surface_upward_latent_heat_flux_due_to_sublimation", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change_excluding_forestry_and_agricultural_products", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_grazing", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_litter_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_vegetation_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_growth", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_maintenance", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_leaves", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_miscellaneous_living_matter", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_roots", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_respiration_in_soil", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_litter", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_soil", "surface_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_production", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_all_land_processes_excluding_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_emission_from_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mole_flux_of_dimethyl_sulfide", "surface_upward_northward_stress_due_to_sea_surface_waves", "surface_upward_sensible_heat_flux", "surface_upward_water_flux", "surface_upward_water_vapor_flux_in_air", "surface_upwelling_photosynthetic_photon_flux_in_air", "surface_upwelling_radiance_in_air_emerging_from_sea_water", "surface_upwelling_radiance_in_air_reflected_by_sea_water", "surface_upwelling_radiance_in_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air", "surface_upwelling_radiance_per_unit_wavelength_in_air_emerging_from_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air_reflected_by_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_sea_water", "surface_upwelling_radiative_flux_per_unit_wavelength_in_air", "surface_upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_upwelling_shortwave_flux_in_air", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_water_amount", "surface_water_evaporation_flux", "syntax_test_quality_flag", "temperature_at_base_of_ice_sheet_model", "temperature_at_top_of_ice_sheet_model", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically_from_the_surface", "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "tendency_of_air_density", "tendency_of_air_pressure", "tendency_of_air_temperature", "tendency_of_air_temperature_due_to_advection", "tendency_of_air_temperature_due_to_boundary_layer_mixing", "tendency_of_air_temperature_due_to_convection", "tendency_of_air_temperature_due_to_diabatic_processes", "tendency_of_air_temperature_due_to_diffusion", "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", "tendency_of_air_temperature_due_to_dry_convection", "tendency_of_air_temperature_due_to_longwave_heating", "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_model_physics", "tendency_of_air_temperature_due_to_moist_convection", "tendency_of_air_temperature_due_to_radiative_heating", "tendency_of_air_temperature_due_to_shortwave_heating", "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_air_temperature_due_to_stratiform_precipitation", "tendency_of_air_temperature_due_to_turbulence", "tendency_of_atmosphere_dry_energy_content", "tendency_of_atmosphere_enthalpy_content_due_to_advection", "tendency_of_atmosphere_kinetic_energy_content_due_to_advection", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetone_due_to_emission", "tendency_of_atmosphere_mass_content_of_aceto_nitrile_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alkanes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alkenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alpha_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_aromatic_compounds_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_beta_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_forestry_and_agricultural_products", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_tetrachloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113a_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc114_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc115_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc11_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc12_due_to_emission", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_halon1202_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1211_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1301_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon2402_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcc140a_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc141b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc142b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc22_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_emission", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_limonene_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_methanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_bromide_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_chloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_monoterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_land_use_or_land_cover_change", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_soil", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition_into_stomata", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_peroxyacetyl_nitrate_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_peroxynitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_radon_due_to_emission", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sesquiterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_aqueous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_gaseous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_trimethylbenzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_water_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_deep_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_shallow_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_turbulence", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_per_unit_area", "tendency_of_atmosphere_mass_per_unit_area_due_to_advection", "tendency_of_atmosphere_mole_concentration_of_carbon_monoxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_nitrous_oxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_production", "tendency_of_atmosphere_moles_of_acetic_acid", "tendency_of_atmosphere_moles_of_aceto_nitrile", "tendency_of_atmosphere_moles_of_alpha_hexachlorocyclohexane", "tendency_of_atmosphere_moles_of_alpha_pinene", "tendency_of_atmosphere_moles_of_ammonia", "tendency_of_atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_atomic_bromine", "tendency_of_atmosphere_moles_of_atomic_chlorine", "tendency_of_atmosphere_moles_of_atomic_nitrogen", "tendency_of_atmosphere_moles_of_benzene", "tendency_of_atmosphere_moles_of_beta_pinene", "tendency_of_atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_bromine_chloride", "tendency_of_atmosphere_moles_of_bromine_monoxide", "tendency_of_atmosphere_moles_of_bromine_nitrate", "tendency_of_atmosphere_moles_of_brox_expressed_as_bromine", "tendency_of_atmosphere_moles_of_butane", "tendency_of_atmosphere_moles_of_carbon_dioxide", "tendency_of_atmosphere_moles_of_carbon_monoxide", "tendency_of_atmosphere_moles_of_carbon_tetrachloride", "tendency_of_atmosphere_moles_of_cfc11", "tendency_of_atmosphere_moles_of_cfc113", "tendency_of_atmosphere_moles_of_cfc113a", "tendency_of_atmosphere_moles_of_cfc114", "tendency_of_atmosphere_moles_of_cfc115", "tendency_of_atmosphere_moles_of_cfc12", "tendency_of_atmosphere_moles_of_chlorine_dioxide", "tendency_of_atmosphere_moles_of_chlorine_monoxide", "tendency_of_atmosphere_moles_of_chlorine_nitrate", "tendency_of_atmosphere_moles_of_clox_expressed_as_chlorine", "tendency_of_atmosphere_moles_of_dichlorine_peroxide", "tendency_of_atmosphere_moles_of_dimethyl_sulfide", "tendency_of_atmosphere_moles_of_dinitrogen_pentoxide", "tendency_of_atmosphere_moles_of_ethane", "tendency_of_atmosphere_moles_of_ethanol", "tendency_of_atmosphere_moles_of_ethene", "tendency_of_atmosphere_moles_of_ethyne", "tendency_of_atmosphere_moles_of_formaldehyde", "tendency_of_atmosphere_moles_of_formic_acid", "tendency_of_atmosphere_moles_of_gaseous_divalent_mercury", "tendency_of_atmosphere_moles_of_gaseous_elemental_mercury", "tendency_of_atmosphere_moles_of_halon1202", "tendency_of_atmosphere_moles_of_halon1211", "tendency_of_atmosphere_moles_of_halon1301", "tendency_of_atmosphere_moles_of_halon2402", "tendency_of_atmosphere_moles_of_hcc140a", "tendency_of_atmosphere_moles_of_hcfc141b", "tendency_of_atmosphere_moles_of_hcfc142b", "tendency_of_atmosphere_moles_of_hcfc22", "tendency_of_atmosphere_moles_of_hexachlorobiphenyl", "tendency_of_atmosphere_moles_of_hox_expressed_as_hydrogen", "tendency_of_atmosphere_moles_of_hydrogen_bromide", "tendency_of_atmosphere_moles_of_hydrogen_chloride", "tendency_of_atmosphere_moles_of_hydrogen_cyanide", "tendency_of_atmosphere_moles_of_hydrogen_peroxide", "tendency_of_atmosphere_moles_of_hydroperoxyl_radical", "tendency_of_atmosphere_moles_of_hydroxyl_radical", "tendency_of_atmosphere_moles_of_hypobromous_acid", "tendency_of_atmosphere_moles_of_hypochlorous_acid", "tendency_of_atmosphere_moles_of_inorganic_bromine", "tendency_of_atmosphere_moles_of_inorganic_chlorine", "tendency_of_atmosphere_moles_of_isoprene", "tendency_of_atmosphere_moles_of_limonene", "tendency_of_atmosphere_moles_of_methane", "tendency_of_atmosphere_moles_of_methanol", "tendency_of_atmosphere_moles_of_methyl_bromide", "tendency_of_atmosphere_moles_of_methyl_chloride", "tendency_of_atmosphere_moles_of_methyl_hydroperoxide", "tendency_of_atmosphere_moles_of_methyl_peroxy_radical", "tendency_of_atmosphere_moles_of_molecular_hydrogen", "tendency_of_atmosphere_moles_of_nitrate_radical", "tendency_of_atmosphere_moles_of_nitric_acid", "tendency_of_atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "tendency_of_atmosphere_moles_of_nitrogen_dioxide", "tendency_of_atmosphere_moles_of_nitrogen_monoxide", "tendency_of_atmosphere_moles_of_nitrous_acid", "tendency_of_atmosphere_moles_of_nitrous_oxide", "tendency_of_atmosphere_moles_of_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_nox_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_noy_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_ozone", "tendency_of_atmosphere_moles_of_peroxyacetyl_nitrate", "tendency_of_atmosphere_moles_of_peroxynitric_acid", "tendency_of_atmosphere_moles_of_propane", "tendency_of_atmosphere_moles_of_propene", "tendency_of_atmosphere_moles_of_radon", "tendency_of_atmosphere_moles_of_sulfate_dry_aerosol_particles", "tendency_of_atmosphere_moles_of_sulfur_dioxide", "tendency_of_atmosphere_moles_of_toluene", "tendency_of_atmosphere_moles_of_water_vapor", "tendency_of_atmosphere_moles_of_xylene", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_potential_energy_content_due_to_advection", "tendency_of_bedrock_altitude", "tendency_of_canopy_water_amount_due_to_evaporation_of_intercepted_precipitation", "tendency_of_change_in_land_ice_amount", "tendency_of_dry_energy_content_of_atmosphere_layer", "tendency_of_dry_static_energy_content_of_atmosphere_layer", "tendency_of_eastward_wind", "tendency_of_eastward_wind_due_to_advection", "tendency_of_eastward_wind_due_to_advection_by_northward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_advection_by_upward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_convection", "tendency_of_eastward_wind_due_to_diffusion", "tendency_of_eastward_wind_due_to_eliassen_palm_flux_divergence", "tendency_of_eastward_wind_due_to_gravity_wave_drag", "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_eastward_wind_due_to_numerical_artefacts", "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_enthalpy_content_of_atmosphere_layer_due_to_advection", "tendency_of_global_average_sea_level_change", "tendency_of_kinetic_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_land_ice_mass", "tendency_of_land_ice_mass_due_to_basal_mass_balance", "tendency_of_land_ice_mass_due_to_calving", "tendency_of_land_ice_mass_due_to_surface_mass_balance", "tendency_of_land_ice_thickness", "tendency_of_mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_dioxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nox_expressed_as_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_deep_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_shallow_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_turbulence", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_convective_cloud_ice_in_air", "tendency_of_mass_fraction_of_convective_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_aggregation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_bergeron_findeisen_process_from_cloud_liquid", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_deposition_and_sublimation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_evaporation_of_melting_ice", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_water_vapor", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_autoconversion", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_bergeron_findeisen_process_to_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_convection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_longwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_pressure_change", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_shortwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_turbulence", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_heterogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_melting_from_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_riming", "tendency_of_middle_atmosphere_moles_of_carbon_monoxide", "tendency_of_middle_atmosphere_moles_of_hcc140a", "tendency_of_middle_atmosphere_moles_of_methane", "tendency_of_middle_atmosphere_moles_of_methyl_bromide", "tendency_of_middle_atmosphere_moles_of_methyl_chloride", "tendency_of_middle_atmosphere_moles_of_molecular_hydrogen", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_dissolved_inorganic_carbon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_iron_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_silicon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_dissolution_from_inorganic_particles", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_scavenging_by_inorganic_particles", "tendency_of_mole_concentration_of_iron_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_and_photolytic_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_destruction", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_calcareous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diatoms", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diazotrophic_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_miscellaneous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_picophytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_nitrate_utilization", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_remineralization", "tendency_of_mole_concentration_of_silicon_in_sea_water_due_to_biological_production", "tendency_of_northward_wind", "tendency_of_northward_wind_due_to_advection", "tendency_of_northward_wind_due_to_convection", "tendency_of_northward_wind_due_to_diffusion", "tendency_of_northward_wind_due_to_gravity_wave_drag", "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_northward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_ocean_barotropic_streamfunction", "tendency_of_ocean_eddy_kinetic_energy_content_due_to_parameterized_eddy_advection", "tendency_of_ocean_mole_content_of_aragonite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_calcite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_deposition_and_fixation_and_runoff", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_fixation", "tendency_of_ocean_mole_content_of_inorganic_carbon", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_iron_due_to_biological_production", "tendency_of_ocean_mole_content_of_iron_due_to_deposition_and_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "tendency_of_ocean_mole_content_of_nitrogen_due_to_biological_production", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_phosphorus_due_to_biological_production", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_silicon_due_to_biological_production", "tendency_of_ocean_potential_energy_content", "tendency_of_ocean_potential_energy_content_due_to_background", "tendency_of_ocean_potential_energy_content_due_to_tides", "tendency_of_potential_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_convection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_diffusion", "tendency_of_sea_ice_amount_due_to_basal_melting", "tendency_of_sea_ice_amount_due_to_congelation_ice_accumulation", "tendency_of_sea_ice_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_sea_ice_amount_due_to_frazil_ice_accumulation_in_leads", "tendency_of_sea_ice_amount_due_to_lateral_growth_of_ice_floes", "tendency_of_sea_ice_amount_due_to_lateral_melting", "tendency_of_sea_ice_amount_due_to_sea_ice_dynamics", "tendency_of_sea_ice_amount_due_to_sea_ice_thermodynamics", "tendency_of_sea_ice_amount_due_to_surface_melting", "tendency_of_sea_ice_area_fraction_due_to_dynamics", "tendency_of_sea_ice_area_fraction_due_to_ridging", "tendency_of_sea_ice_area_fraction_due_to_thermodynamics", "tendency_of_sea_ice_thickness_due_to_dynamics", "tendency_of_sea_ice_thickness_due_to_thermodynamics", "tendency_of_sea_surface_height_above_mean_sea_level", "tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_salinity", "tendency_of_sea_water_salinity_due_to_advection", "tendency_of_sea_water_salinity_due_to_horizontal_mixing", "tendency_of_sea_water_salinity_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_due_to_sea_ice_thermodynamics", "tendency_of_sea_water_salinity_due_to_vertical_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_residual_mean_advection", "tendency_of_sea_water_temperature", "tendency_of_sea_water_temperature_due_to_advection", "tendency_of_sea_water_temperature_due_to_horizontal_mixing", "tendency_of_sea_water_temperature_due_to_parameterized_eddy_advection", "tendency_of_sea_water_temperature_due_to_vertical_mixing", "tendency_of_soil_and_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_soil_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fertilization", "tendency_of_specific_humidity", "tendency_of_specific_humidity_due_to_advection", "tendency_of_specific_humidity_due_to_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_convection", "tendency_of_specific_humidity_due_to_diffusion", "tendency_of_specific_humidity_due_to_model_physics", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_stratiform_precipitation", "tendency_of_surface_air_pressure", "tendency_of_surface_snow_amount", "tendency_of_surface_snow_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_surface_snow_amount_due_to_drifting_into_sea", "tendency_of_surface_snow_amount_due_to_sea_ice_dynamics", "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", "tendency_of_troposphere_moles_of_carbon_monoxide", "tendency_of_troposphere_moles_of_hcc140a", "tendency_of_troposphere_moles_of_hcfc22", "tendency_of_troposphere_moles_of_methane", "tendency_of_troposphere_moles_of_methyl_bromide", "tendency_of_troposphere_moles_of_methyl_chloride", "tendency_of_troposphere_moles_of_molecular_hydrogen", "tendency_of_upward_air_velocity", "tendency_of_upward_air_velocity_due_to_advection", "tendency_of_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_wind_speed_due_to_convection", "tendency_of_wind_speed_due_to_gravity_wave_drag", "thermal_conductivity_of_frozen_ground", "thermal_energy_content_of_surface_snow", "thermodynamic_phase_of_cloud_water_particles_at_cloud_top", "thermosteric_change_in_mean_sea_level", "thermosteric_change_in_sea_surface_height", "thickness_of_convective_rainfall_amount", "thickness_of_convective_snowfall_amount", "thickness_of_ice_on_sea_ice_melt_pond", "thickness_of_liquid_water_cloud", "thickness_of_rainfall_amount", "thickness_of_snowfall_amount", "thickness_of_stratiform_rainfall_amount", "thickness_of_stratiform_snowfall_amount", "thunderstorm_probability", "tidal_sea_surface_height_above_lowest_astronomical_tide", "tidal_sea_surface_height_above_mean_higher_high_water", "tidal_sea_surface_height_above_mean_lower_low_water", "tidal_sea_surface_height_above_mean_low_water_springs", "tidal_sea_surface_height_above_mean_sea_level", "time", "time_of_maximum_flood_depth", "time_sample_difference_due_to_collocation", "time_when_flood_water_falls_below_threshold", "time_when_flood_water_rises_above_threshold", "toa_adjusted_longwave_forcing", "toa_adjusted_radiative_forcing", "toa_adjusted_shortwave_forcing", "toa_bidirectional_reflectance", "toa_brightness_temperature", "toa_brightness_temperature_assuming_clear_sky", "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", "toa_brightness_temperature_of_standard_scene", "toa_cloud_radiative_effect", "toa_incoming_shortwave_flux", "toa_instantaneous_longwave_forcing", "toa_instantaneous_radiative_forcing", "toa_instantaneous_shortwave_forcing", "toa_longwave_cloud_radiative_effect", "toa_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "toa_net_downward_longwave_flux", "toa_net_downward_longwave_flux_assuming_clear_sky", "toa_net_downward_radiative_flux", "toa_net_downward_shortwave_flux", "toa_net_downward_shortwave_flux_assuming_clear_sky", "toa_net_upward_longwave_flux", "toa_net_upward_longwave_flux_assuming_clear_sky", "toa_net_upward_shortwave_flux", "toa_outgoing_longwave_flux", "toa_outgoing_longwave_flux_assuming_clear_sky", "toa_outgoing_longwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_outgoing_radiance_per_unit_wavelength", "toa_outgoing_radiance_per_unit_wavelength_due_to_solar_induced_fluorescence", "toa_outgoing_radiance_per_unit_wavenumber", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_target", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_target", "toa_outgoing_shortwave_flux", "toa_outgoing_shortwave_flux_assuming_clear_sky", "toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol", "toa_outgoing_shortwave_flux_assuming_no_aerosol", "toa_outgoing_shortwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_shortwave_cloud_radiative_effect", "to_direction_of_air_velocity_relative_to_sea_water", "to_direction_of_surface_downward_stress", "tracer_lifetime", "transpiration_amount", "transpiration_flux", "tropical_cyclone_eye_brightness_temperature", "tropical_cyclone_maximum_sustained_wind_speed", "tropopause_adjusted_longwave_forcing", "tropopause_adjusted_radiative_forcing", "tropopause_adjusted_shortwave_forcing", "tropopause_air_pressure", "tropopause_air_temperature", "tropopause_altitude", "tropopause_downwelling_longwave_flux", "tropopause_instantaneous_longwave_forcing", "tropopause_instantaneous_radiative_forcing", "tropopause_instantaneous_shortwave_forcing", "tropopause_net_downward_longwave_flux", "tropopause_net_downward_shortwave_flux", "tropopause_upwelling_shortwave_flux", "troposphere_mole_content_of_bromine_monoxide", "troposphere_mole_content_of_formaldehyde", "troposphere_mole_content_of_glyoxal", "troposphere_mole_content_of_iodine_monoxide", "troposphere_mole_content_of_nitrogen_dioxide", "troposphere_mole_content_of_ozone", "troposphere_mole_content_of_sulfur_dioxide", "turbulent_mixing_length_of_sea_water", "ultraviolet_index", "ultraviolet_index_assuming_clear_sky", "ultraviolet_index_assuming_overcast_sky", "upward_air_velocity", "upward_derivative_of_eastward_wind", "upward_derivative_of_northward_wind", "upward_derivative_of_wind_from_direction", "upward_dry_static_energy_flux_due_to_diffusion", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_eastward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_westward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_orographic_gravity_waves", "upward_eastward_stress_at_sea_ice_base", "upward_geothermal_heat_flux_at_ground_level_in_land_ice", "upward_geothermal_heat_flux_at_sea_floor", "upward_heat_flux_at_ground_level_in_snow", "upward_heat_flux_at_ground_level_in_soil", "upward_heat_flux_in_air", "upward_heat_flux_in_sea_water_due_to_convection", "upward_latent_heat_flux_in_air", "upward_northward_stress_at_sea_ice_base", "upward_ocean_mass_transport", "upward_sea_ice_basal_heat_flux", "upward_sea_water_velocity", "upward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "upward_sensible_heat_flux_in_air", "upward_transformed_eulerian_mean_air_velocity", "upward_upward_derivative_of_geopotential", "upward_water_vapor_flux_in_air", "upward_water_vapor_flux_in_air_due_to_diffusion", "upward_x_stress_at_sea_ice_base", "upward_y_stress_at_sea_ice_base", "upwelling_radiance_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "upwelling_shortwave_flux_in_air", "upwelling_shortwave_flux_in_air_assuming_clear_sky", "upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "upwelling_shortwave_radiance_in_air", "vegetation_area_fraction", "vegetation_carbon_content", "vegetation_mass_content_of_13C", "vegetation_mass_content_of_14C", "vegetation_mass_content_of_nitrogen", "vertical_component_of_ocean_xy_tracer_diffusivity", "vertical_navigation_clearance_above_waterway_surface", "virtual_salt_flux_correction", "virtual_salt_flux_into_sea_water", "virtual_salt_flux_into_sea_water_due_to_evaporation", "virtual_salt_flux_into_sea_water_due_to_newtonian_relaxation", "virtual_salt_flux_into_sea_water_due_to_rainfall", "virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "virtual_salt_flux_into_sea_water_from_rivers", "virtual_temperature", "visibility_in_air", "volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles", "volume_absorption_coefficient_of_radiative_flux_in_sea_water", "volume_absorption_coefficient_of_radiative_flux_in_sea_water_due_to_dissolved_organic_matter", "volume_attenuated_backwards_scattering_function_in_air", "volume_attenuated_backwards_scattering_function_in_air_assuming_no_aerosol_or_cloud", "volume_attenuation_coefficient_of_downwelling_radiative_flux_in_sea_water", "volume_backwards_scattering_coefficient_in_air_due_to_dried_aerosol_particles", "volume_backwards_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water_corrected_for_pure_water_attenuance", "volume_extinction_coefficient_in_air_due_to_ambient_aerosol_particles", "volume_extinction_coefficient_in_air_due_to_cloud_particles", "volume_fraction_of_clay_in_soil", "volume_fraction_of_condensed_water_in_soil", "volume_fraction_of_condensed_water_in_soil_at_critical_point", "volume_fraction_of_condensed_water_in_soil_at_field_capacity", "volume_fraction_of_condensed_water_in_soil_at_wilting_point", "volume_fraction_of_condensed_water_in_soil_pores", "volume_fraction_of_frozen_water_in_soil", "volume_fraction_of_oxygen_in_sea_water", "volume_fraction_of_sand_in_soil", "volume_fraction_of_silt_in_soil", "volume_mixing_ratio_of_oxygen_at_stp_in_sea_water", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_dried_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_scattering_function_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_function_of_radiative_flux_in_sea_water", "water_evaporation_amount", "water_evaporation_amount_from_canopy", "water_evaporation_flux_from_canopy", "water_evaporation_flux_from_soil", "water_evapotranspiration_flux", "water_flux_correction", "water_flux_into_sea_water", "water_flux_into_sea_water_due_to_sea_ice_thermodynamics", "water_flux_into_sea_water_due_to_surface_drainage", "water_flux_into_sea_water_from_icebergs", "water_flux_into_sea_water_from_land_ice", "water_flux_into_sea_water_from_rivers", "water_flux_into_sea_water_from_rivers_and_surface_downward_water_flux", "water_flux_into_sea_water_without_flux_correction", "water_flux_out_of_sea_ice_and_sea_water", "water_flux_out_of_sea_water", "water_flux_out_of_sea_water_due_to_newtonian_relaxation", "water_flux_out_of_sea_water_due_to_sea_ice_thermodynamics", "water_potential_evaporation_amount", "water_potential_evaporation_flux", "water_sublimation_flux", "water_surface_height_above_reference_datum", "water_surface_reference_datum_altitude", "water_table_depth", "water_vapor_partial_pressure_in_air", "water_vapor_saturation_deficit_in_air", "water_volume_transport_in_river_channel", "water_volume_transport_into_sea_water_from_rivers", "westward_upward_derivative_of_geopotential", "westward_westward_derivative_of_geopotential", "wet_bulb_potential_temperature", "wet_bulb_temperature", "wind_chill_of_air_temperature", "wind_from_direction", "wind_gust_from_direction", "wind_mixing_energy_flux_into_sea_water", "wind_speed_of_gust", "wind_to_direction", "wood_debris_mass_content_of_carbon", "wood_debris_mass_content_of_nitrogen", "x_derivative_of_ocean_rigid_lid_pressure", "x_heat_flux_in_sea_water_due_to_advection", "x_wind_gust", "y_derivative_of_ocean_rigid_lid_pressure", "y_heat_flux_in_sea_water_due_to_advection", "y_wind_gust", "zenith_angle"], "description": "Options", "index": [0], "layout": "IPY_MODEL_56c7c6122d3e4c31b48815f285b4c413", "rows": 10, "style": "IPY_MODEL_d7f7ef41a41440b986c0c98c8741cebb"}}, "dc1c6f0321f847e1bddcec5e01d820c0": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "ddf85189776948bc8fe04f5ff46c2352": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "fac52004c9054347ad76d5c54c9220be": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextStyleModel", "state": {"description_width": "", "font_size": null, "text_color": null}}}, "version_major": 2, "version_minor": 0} +{"state": {"0cfffda958cd4fc2836f5f8c760ea631": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "1682834b86a2410988482b141ddab5c4": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["automated_tropical_cyclone_forecasting_system_storm_identifier", "canopy_temperature", "dew_point_temperature", "dynamic_tropopause_potential_temperature", "fire_temperature", "freezing_temperature_of_sea_water", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", "number_of_days_with_surface_temperature_below_threshold", "ocean_mixed_layer_thickness_defined_by_temperature", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_northward_sea_water_velocity_and_temperature", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "sea_surface_foundation_temperature", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_temperature", "sea_water_added_potential_temperature", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_redistributed_potential_temperature", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "soil_temperature", "square_of_sea_surface_temperature", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "surface_temperature", "surface_temperature_anomaly", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "virtual_temperature", "wet_bulb_potential_temperature", "wet_bulb_temperature"], "description": "Options", "index": [15, 17, 21], "layout": "IPY_MODEL_5b08303cdec5483a9e639145cb0abe38", "rows": 10, "style": "IPY_MODEL_938489e78d954b6dbe373339e04bd535"}}, "1a4dfa5aa221435da06af0931936420a": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextStyleModel", "state": {"description_width": "", "font_size": null, "text_color": null}}, "1dc833a4319c46b1978bb2138da29f41": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "32aa7a5751dd4626903545a453f95767": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "35ce78e899b64bf59563c5676a49fd2f": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "39fcba728daa48e8bcf16deeec7e73c1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "409bd05eda7940f593cf2a31cde2a1d2": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "44ab81cf6ec749e9ad65fc52794c32c7": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextModel", "state": {"description": "nickname", "layout": "IPY_MODEL_f9f6d6900ec6433babd736d76b19ca90", "style": "IPY_MODEL_bf14e632c80b4162a4ccb173b413690b", "value": "temp"}}, "472c502c82e24479aa9d31f11343ca5f": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "497fb3755d5d41af909c8a9b547d004d": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "49ee20188ebd491d9aa0fcacab393317": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "4bc3cf8516974a39a6535c12aa3bb4cd": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["acoustic_signal_roundtrip_travel_time_in_sea_water", "aerodynamic_particle_diameter", "aerodynamic_resistance", "age_of_stratospheric_air", "aggregate_quality_flag", "air_density", "air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", "air_pressure_at_cloud_base", "air_pressure_at_cloud_top", "air_pressure_at_convective_cloud_base", "air_pressure_at_convective_cloud_top", "air_pressure_at_freezing_level", "air_pressure_at_mean_sea_level", "air_pressure_at_top_of_atmosphere_model", "air_pseudo_equivalent_potential_temperature", "air_pseudo_equivalent_temperature", "air_temperature", "air_temperature_anomaly", "air_temperature_at_cloud_top", "air_temperature_at_effective_cloud_top_defined_by_infrared_radiation", "air_temperature_lapse_rate", "air_temperature_threshold", "altimeter_range", "altimeter_range_correction_due_to_dry_troposphere", "altimeter_range_correction_due_to_ionosphere", "altimeter_range_correction_due_to_wet_troposphere", "altitude", "altitude_at_top_of_atmosphere_model", "altitude_at_top_of_dry_convection", "amplitude_of_global_average_sea_level_change", "angle_of_rotation_from_east_to_x", "angle_of_rotation_from_east_to_y", "angle_of_rotation_from_solar_azimuth_to_platform_azimuth", "angstrom_exponent_of_ambient_aerosol_in_air", "apparent_air_temperature", "apparent_oxygen_utilization", "area_fraction", "area_fraction_below_surface", "area_fraction_of_day_defined_by_solar_zenith_angle", "area_fraction_of_night_defined_by_solar_zenith_angle", "area_fraction_of_twilight_defined_by_solar_zenith_angle", "area_type", "asymmetry_factor_of_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_absorption_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_boundary_layer_thickness", "atmosphere_convective_available_potential_energy", "atmosphere_convective_available_potential_energy_wrt_surface", "atmosphere_convective_inhibition", "atmosphere_convective_inhibition_wrt_surface", "atmosphere_downdraft_convective_mass_flux", "atmosphere_dry_energy_content", "atmosphere_dry_static_energy_content", "atmosphere_eastward_stress_due_to_gravity_wave_drag", "atmosphere_energy_content", "atmosphere_enthalpy_content", "atmosphere_heat_diffusivity", "atmosphere_helicity", "atmosphere_horizontal_streamfunction", "atmosphere_horizontal_velocity_potential", "atmosphere_hybrid_height_coordinate", "atmosphere_hybrid_sigma_pressure_coordinate", "atmosphere_kinetic_energy_content", "atmosphere_layer_thickness_expressed_as_geopotential_height_difference", "atmosphere_level_of_free_convection", "atmosphere_level_of_free_convection_wrt_surface", "atmosphere_lifting_condensation_level", "atmosphere_lifting_condensation_level_wrt_surface", "atmosphere_ln_pressure_coordinate", "atmosphere_mass_content_of_acetic_acid", "atmosphere_mass_content_of_aceto_nitrile", "atmosphere_mass_content_of_alkanes", "atmosphere_mass_content_of_alkenes", "atmosphere_mass_content_of_alpha_hexachlorocyclohexane", "atmosphere_mass_content_of_alpha_pinene", "atmosphere_mass_content_of_ammonia", "atmosphere_mass_content_of_ammonium_dry_aerosol_particles", "atmosphere_mass_content_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_aromatic_compounds", "atmosphere_mass_content_of_atomic_bromine", "atmosphere_mass_content_of_atomic_chlorine", "atmosphere_mass_content_of_atomic_nitrogen", "atmosphere_mass_content_of_benzene", "atmosphere_mass_content_of_beta_pinene", "atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_bromine_chloride", "atmosphere_mass_content_of_bromine_monoxide", "atmosphere_mass_content_of_bromine_nitrate", "atmosphere_mass_content_of_brox_expressed_as_bromine", "atmosphere_mass_content_of_butane", "atmosphere_mass_content_of_carbon_dioxide", "atmosphere_mass_content_of_carbon_monoxide", "atmosphere_mass_content_of_carbon_tetrachloride", "atmosphere_mass_content_of_cfc11", "atmosphere_mass_content_of_cfc113", "atmosphere_mass_content_of_cfc113a", "atmosphere_mass_content_of_cfc114", "atmosphere_mass_content_of_cfc115", "atmosphere_mass_content_of_cfc12", "atmosphere_mass_content_of_chlorine_dioxide", "atmosphere_mass_content_of_chlorine_monoxide", "atmosphere_mass_content_of_chlorine_nitrate", "atmosphere_mass_content_of_cloud_condensed_water", "atmosphere_mass_content_of_cloud_ice", "atmosphere_mass_content_of_cloud_liquid_water", "atmosphere_mass_content_of_clox_expressed_as_chlorine", "atmosphere_mass_content_of_convective_cloud_condensed_water", "atmosphere_mass_content_of_convective_cloud_ice", "atmosphere_mass_content_of_convective_cloud_liquid_water", "atmosphere_mass_content_of_dichlorine_peroxide", "atmosphere_mass_content_of_dimethyl_sulfide", "atmosphere_mass_content_of_dinitrogen_pentoxide", "atmosphere_mass_content_of_dust_dry_aerosol_particles", "atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles", "atmosphere_mass_content_of_ethane", "atmosphere_mass_content_of_ethanol", "atmosphere_mass_content_of_ethene", "atmosphere_mass_content_of_ethyne", "atmosphere_mass_content_of_formaldehyde", "atmosphere_mass_content_of_formic_acid", "atmosphere_mass_content_of_gaseous_divalent_mercury", "atmosphere_mass_content_of_gaseous_elemental_mercury", "atmosphere_mass_content_of_graupel", "atmosphere_mass_content_of_graupel_and_hail", "atmosphere_mass_content_of_hail", "atmosphere_mass_content_of_halon1202", "atmosphere_mass_content_of_halon1211", "atmosphere_mass_content_of_halon1301", "atmosphere_mass_content_of_halon2402", "atmosphere_mass_content_of_hcc140a", "atmosphere_mass_content_of_hcfc141b", "atmosphere_mass_content_of_hcfc142b", "atmosphere_mass_content_of_hcfc22", "atmosphere_mass_content_of_hexachlorobiphenyl", "atmosphere_mass_content_of_hox_expressed_as_hydrogen", "atmosphere_mass_content_of_hydrogen_bromide", "atmosphere_mass_content_of_hydrogen_chloride", "atmosphere_mass_content_of_hydrogen_cyanide", "atmosphere_mass_content_of_hydrogen_peroxide", "atmosphere_mass_content_of_hydroperoxyl_radical", "atmosphere_mass_content_of_hydroxyl_radical", "atmosphere_mass_content_of_hypobromous_acid", "atmosphere_mass_content_of_hypochlorous_acid", "atmosphere_mass_content_of_inorganic_bromine", "atmosphere_mass_content_of_inorganic_chlorine", "atmosphere_mass_content_of_isoprene", "atmosphere_mass_content_of_limonene", "atmosphere_mass_content_of_liquid_precipitation", "atmosphere_mass_content_of_mercury_dry_aerosol_particles", "atmosphere_mass_content_of_methane", "atmosphere_mass_content_of_methanol", "atmosphere_mass_content_of_methyl_bromide", "atmosphere_mass_content_of_methyl_chloride", "atmosphere_mass_content_of_methyl_hydroperoxide", "atmosphere_mass_content_of_methyl_peroxy_radical", "atmosphere_mass_content_of_molecular_hydrogen", "atmosphere_mass_content_of_nitrate_dry_aerosol_particles", "atmosphere_mass_content_of_nitrate_radical", "atmosphere_mass_content_of_nitric_acid", "atmosphere_mass_content_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_mass_content_of_nitrogen_monoxide", "atmosphere_mass_content_of_nitrous_acid", "atmosphere_mass_content_of_nitrous_oxide", "atmosphere_mass_content_of_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_nox_expressed_as_nitrogen", "atmosphere_mass_content_of_noy_expressed_as_nitrogen", "atmosphere_mass_content_of_oxygenated_hydrocarbons", "atmosphere_mass_content_of_ozone", "atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_peroxyacetyl_nitrate", "atmosphere_mass_content_of_peroxynitric_acid", "atmosphere_mass_content_of_peroxy_radicals", "atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_propane", "atmosphere_mass_content_of_propene", "atmosphere_mass_content_of_radon", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_expressed_as_cations", "atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_snow", "atmosphere_mass_content_of_sulfate", "atmosphere_mass_content_of_sulfate_ambient_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur", "atmosphere_mass_content_of_sulfur_dioxide", "atmosphere_mass_content_of_terpenes", "atmosphere_mass_content_of_toluene", "atmosphere_mass_content_of_volcanic_ash", "atmosphere_mass_content_of_water", "atmosphere_mass_content_of_water_in_ambient_aerosol_particles", "atmosphere_mass_content_of_water_vapor", "atmosphere_mass_content_of_xylene", "atmosphere_mass_of_air_per_unit_area", "atmosphere_mass_of_carbon_dioxide", "atmosphere_mass_per_unit_area", "atmosphere_mole_content_of_carbon_monoxide", "atmosphere_mole_content_of_methane", "atmosphere_mole_content_of_nitrogen_dioxide", "atmosphere_mole_content_of_ozone", "atmosphere_mole_content_of_water_vapor", "atmosphere_moles_of_acetic_acid", "atmosphere_moles_of_aceto_nitrile", "atmosphere_moles_of_alpha_hexachlorocyclohexane", "atmosphere_moles_of_alpha_pinene", "atmosphere_moles_of_ammonia", "atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_atomic_bromine", "atmosphere_moles_of_atomic_chlorine", "atmosphere_moles_of_atomic_nitrogen", "atmosphere_moles_of_benzene", "atmosphere_moles_of_beta_pinene", "atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_bromine_chloride", "atmosphere_moles_of_bromine_monoxide", "atmosphere_moles_of_bromine_nitrate", "atmosphere_moles_of_brox_expressed_as_bromine", "atmosphere_moles_of_butane", "atmosphere_moles_of_carbon_dioxide", "atmosphere_moles_of_carbon_monoxide", "atmosphere_moles_of_carbon_tetrachloride", "atmosphere_moles_of_cfc11", "atmosphere_moles_of_cfc113", "atmosphere_moles_of_cfc113a", "atmosphere_moles_of_cfc114", "atmosphere_moles_of_cfc115", "atmosphere_moles_of_cfc12", "atmosphere_moles_of_chlorine_dioxide", "atmosphere_moles_of_chlorine_monoxide", "atmosphere_moles_of_chlorine_nitrate", "atmosphere_moles_of_clox_expressed_as_chlorine", "atmosphere_moles_of_dichlorine_peroxide", "atmosphere_moles_of_dimethyl_sulfide", "atmosphere_moles_of_dinitrogen_pentoxide", "atmosphere_moles_of_ethane", "atmosphere_moles_of_ethanol", "atmosphere_moles_of_ethene", "atmosphere_moles_of_ethyne", "atmosphere_moles_of_formaldehyde", "atmosphere_moles_of_formic_acid", "atmosphere_moles_of_gaseous_divalent_mercury", "atmosphere_moles_of_gaseous_elemental_mercury", "atmosphere_moles_of_halon1202", "atmosphere_moles_of_halon1211", "atmosphere_moles_of_halon1301", "atmosphere_moles_of_halon2402", "atmosphere_moles_of_hcc140a", "atmosphere_moles_of_hcfc141b", "atmosphere_moles_of_hcfc142b", "atmosphere_moles_of_hcfc22", "atmosphere_moles_of_hexachlorobiphenyl", "atmosphere_moles_of_hox_expressed_as_hydrogen", "atmosphere_moles_of_hydrogen_bromide", "atmosphere_moles_of_hydrogen_chloride", "atmosphere_moles_of_hydrogen_cyanide", "atmosphere_moles_of_hydrogen_peroxide", "atmosphere_moles_of_hydroperoxyl_radical", "atmosphere_moles_of_hydroxyl_radical", "atmosphere_moles_of_hypobromous_acid", "atmosphere_moles_of_hypochlorous_acid", "atmosphere_moles_of_inorganic_bromine", "atmosphere_moles_of_inorganic_chlorine", "atmosphere_moles_of_isoprene", "atmosphere_moles_of_limonene", "atmosphere_moles_of_methane", "atmosphere_moles_of_methanol", "atmosphere_moles_of_methyl_bromide", "atmosphere_moles_of_methyl_chloride", "atmosphere_moles_of_methyl_hydroperoxide", "atmosphere_moles_of_methyl_peroxy_radical", "atmosphere_moles_of_molecular_hydrogen", "atmosphere_moles_of_nitrate_radical", "atmosphere_moles_of_nitric_acid", "atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_moles_of_nitrogen_dioxide", "atmosphere_moles_of_nitrogen_monoxide", "atmosphere_moles_of_nitrous_acid", "atmosphere_moles_of_nitrous_oxide", "atmosphere_moles_of_nmvoc_expressed_as_carbon", "atmosphere_moles_of_nox_expressed_as_nitrogen", "atmosphere_moles_of_noy_expressed_as_nitrogen", "atmosphere_moles_of_ozone", "atmosphere_moles_of_peroxyacetyl_nitrate", "atmosphere_moles_of_peroxynitric_acid", "atmosphere_moles_of_propane", "atmosphere_moles_of_propene", "atmosphere_moles_of_radon", "atmosphere_moles_of_sulfur_dioxide", "atmosphere_moles_of_toluene", "atmosphere_moles_of_water_vapor", "atmosphere_moles_of_xylene", "atmosphere_momentum_diffusivity", "atmosphere_net_rate_of_absorption_of_longwave_energy", "atmosphere_net_rate_of_absorption_of_shortwave_energy", "atmosphere_net_upward_convective_mass_flux", "atmosphere_net_upward_deep_convective_mass_flux", "atmosphere_net_upward_shallow_convective_mass_flux", "atmosphere_northward_stress_due_to_gravity_wave_drag", "atmosphere_number_content_of_aerosol_particles", "atmosphere_number_content_of_cloud_droplets", "atmosphere_number_content_of_ice_crystals", "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_ammonium_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_optical_thickness_due_to_cloud", "atmosphere_optical_thickness_due_to_convective_cloud", "atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_dust_dry_aerosol_particles", "atmosphere_optical_thickness_due_to_nitrate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm10_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm1_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm2p5_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_stratiform_cloud", "atmosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_water_in_ambient_aerosol_particles", "atmosphere_potential_energy_content", "atmosphere_sigma_coordinate", "atmosphere_sleve_coordinate", "atmosphere_stability_k_index", "atmosphere_stability_showalter_index", "atmosphere_stability_total_totals_index", "atmosphere_transformed_eulerian_mean_meridional_overturning_mass_streamfunction", "atmosphere_updraft_convective_mass_flux", "atmosphere_upward_absolute_vorticity", "atmosphere_upward_relative_vorticity", "atmosphere_x_relative_vorticity", "atmosphere_y_relative_vorticity", "attenuated_signal_test_quality_flag", "automated_tropical_cyclone_forecasting_system_storm_identifier", "backscattering_ratio_in_air", "baroclinic_eastward_sea_water_velocity", "baroclinic_northward_sea_water_velocity", "barometric_altitude", "barotropic_eastward_sea_water_velocity", "barotropic_northward_sea_water_velocity", "barotropic_sea_water_x_velocity", "barotropic_sea_water_y_velocity", "basal_downward_heat_flux_in_sea_ice", "baseflow_amount", "beam_consistency_indicator_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "beaufort_wind_force", "bedrock_altitude", "bedrock_altitude_change_due_to_isostatic_adjustment", "biological_taxon_lsid", "biological_taxon_name", "bioluminescent_photon_rate_in_sea_water", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "brunt_vaisala_frequency_in_air", "burned_area_fraction", "canopy_and_surface_water_amount", "canopy_height", "canopy_resistance_to_ozone_dry_deposition", "canopy_snow_amount", "canopy_temperature", "canopy_throughfall_flux", "canopy_water_amount", "carbon_mass_content_of_forestry_and_agricultural_products", "carbon_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_litter_and_soil_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_soil_from_litter", "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", "cell_thickness", "change_in_atmosphere_energy_content_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_energy_content_of_atmosphere_layer_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_land_ice_amount", "change_over_time_in_amount_of_ice_and_snow_on_land", "change_over_time_in_atmosphere_mass_content_of_water_due_to_advection", "change_over_time_in_canopy_water_amount", "change_over_time_in_groundwater_amount", "change_over_time_in_land_surface_liquid_water_amount", "change_over_time_in_land_water_amount", "change_over_time_in_mass_content_of_water_in_soil", "change_over_time_in_river_water_amount", "change_over_time_in_sea_water_absolute_salinity", "change_over_time_in_sea_water_conservative_temperature", "change_over_time_in_sea_water_density", "change_over_time_in_sea_water_neutral_density", "change_over_time_in_sea_water_potential_density", "change_over_time_in_sea_water_potential_temperature", "change_over_time_in_sea_water_practical_salinity", "change_over_time_in_sea_water_preformed_salinity", "change_over_time_in_sea_water_salinity", "change_over_time_in_sea_water_specific_potential_enthalpy", "change_over_time_in_sea_water_temperature", "change_over_time_in_surface_snow_amount", "change_over_time_in_thermal_energy_content_of_ice_and_snow_on_land", "change_over_time_in_thermal_energy_content_of_vegetation_and_litter_and_soil", "charnock_coefficient_for_surface_roughness_length_for_momentum_in_air", "clear_sky_area_fraction", "climatology_test_quality_flag", "cloud_area_fraction", "cloud_area_fraction_in_atmosphere_layer", "cloud_base_altitude", "cloud_ice_mixing_ratio", "cloud_liquid_water_mixing_ratio", "cloud_top_altitude", "colony_forming_unit_number_concentration_of_biological_taxon_in_sea_water", "compressive_strength_of_sea_ice", "concentration_of_colored_dissolved_organic_matter_in_sea_water_expressed_as_equivalent_mass_fraction_of_quinine_sulfate_dihydrate", "convection_time_fraction", "convective_cloud_area_fraction", "convective_cloud_area_fraction_in_atmosphere_layer", "convective_cloud_base_altitude", "convective_cloud_base_height", "convective_cloud_longwave_emissivity", "convective_cloud_top_altitude", "convective_cloud_top_height", "convective_precipitation_amount", "convective_precipitation_flux", "convective_precipitation_rate", "convective_rainfall_amount", "convective_rainfall_flux", "convective_rainfall_rate", "convective_snowfall_amount", "convective_snowfall_flux", "coriolis_parameter", "correction_for_model_negative_specific_humidity", "covariance_over_longitude_of_northward_wind_and_air_temperature", "depth", "depth_at_base_of_unfrozen_ground", "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", "depth_at_shallowest_isotherm_defined_by_soil_temperature", "depth_at_shallowest_local_minimum_in_vertical_profile_of_mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "depth_below_geoid", "depth_below_sea_floor", "depth_of_isosurface_of_sea_water_potential_temperature", "dew_point_depression", "dew_point_temperature", "diameter_of_ambient_aerosol_particles", "difference_between_sea_surface_temperature_and_air_temperature", "diffuse_downwelling_shortwave_flux_in_air", "diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "dimensionless_exner_function", "direct_downwelling_shortwave_flux_in_air", "direction_of_radial_vector_away_from_instrument", "direction_of_radial_vector_toward_instrument", "direction_of_sea_ice_displacement", "direction_of_sea_ice_velocity", "distance_from_geocenter", "distance_from_sun", "distance_from_tropical_cyclone_center_to_leading_edge_of_displaced_convection", "divergence_of_sea_ice_velocity", "downward_air_velocity", "downward_dry_static_energy_flux_due_to_diffusion", "downward_eastward_momentum_flux_in_air", "downward_eastward_momentum_flux_in_air_due_to_diffusion", "downward_eastward_stress_at_sea_ice_base", "downward_heat_flux_at_ground_level_in_snow", "downward_heat_flux_at_ground_level_in_soil", "downward_heat_flux_in_air", "downward_heat_flux_in_floating_ice", "downward_heat_flux_in_sea_ice", "downward_heat_flux_in_soil", "downward_liquid_water_mass_flux_into_groundwater", "downward_northward_momentum_flux_in_air", "downward_northward_momentum_flux_in_air_due_to_diffusion", "downward_northward_stress_at_sea_ice_base", "downward_sea_ice_basal_salt_flux", "downward_water_vapor_flux_in_air_due_to_diffusion", "downward_x_stress_at_sea_ice_base", "downward_x_stress_at_sea_water_surface", "downward_x_stress_correction_at_sea_water_surface", "downward_y_stress_at_sea_ice_base", "downward_y_stress_at_sea_water_surface", "downward_y_stress_correction_at_sea_water_surface", "downwelling_photon_flux_in_sea_water", "downwelling_photon_flux_per_unit_wavelength_in_sea_water", "downwelling_photon_radiance_in_sea_water", "downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "downwelling_photon_spherical_irradiance_in_sea_water", "downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "downwelling_photosynthetic_photon_flux_in_sea_water", "downwelling_photosynthetic_photon_radiance_in_sea_water", "downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "downwelling_photosynthetic_radiance_in_sea_water", "downwelling_photosynthetic_radiative_flux_in_sea_water", "downwelling_photosynthetic_spherical_irradiance_in_sea_water", "downwelling_radiance_in_sea_water", "downwelling_radiance_per_unit_wavelength_in_air", "downwelling_radiance_per_unit_wavelength_in_sea_water", "downwelling_radiative_flux_in_sea_water", "downwelling_radiative_flux_per_unit_wavelength_in_air", "downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "downwelling_shortwave_flux_in_air", "downwelling_shortwave_flux_in_air_assuming_clear_sky", "downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "downwelling_shortwave_flux_in_sea_water", "downwelling_shortwave_flux_in_sea_water_at_sea_ice_base", "downwelling_shortwave_radiance_in_air", "downwelling_spherical_irradiance_in_sea_water", "downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "dry_atmosphere_mole_fraction_of_carbon_dioxide", "dry_atmosphere_mole_fraction_of_methane", "dry_energy_content_of_atmosphere_layer", "dry_static_energy_content_of_atmosphere_layer", "duration_of_sunshine", "dvorak_tropical_cyclone_current_intensity_number", "dvorak_tropical_number", "dynamic_tropopause_potential_temperature", "eastward_air_velocity_relative_to_sea_water", "eastward_atmosphere_dry_static_energy_transport_across_unit_distance", "eastward_atmosphere_water_transport_across_unit_distance", "eastward_atmosphere_water_vapor_transport_across_unit_distance", "eastward_derivative_of_eastward_wind", "eastward_derivative_of_northward_sea_ice_velocity", "eastward_derivative_of_northward_wind", "eastward_derivative_of_wind_from_direction", "eastward_flood_water_velocity", "eastward_friction_velocity_in_air", "eastward_land_ice_velocity", "eastward_mass_flux_of_air", "eastward_momentum_flux_correction", "eastward_sea_ice_displacement", "eastward_sea_ice_velocity", "eastward_sea_water_velocity", "eastward_sea_water_velocity_assuming_no_tide", "eastward_sea_water_velocity_at_sea_floor", "eastward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "eastward_sea_water_velocity_due_to_tides", "eastward_transformed_eulerian_mean_air_velocity", "eastward_water_vapor_flux_in_air", "eastward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "eastward_wind", "eastward_wind_shear", "effective_radius_of_cloud_condensed_water_particles_at_cloud_top", "effective_radius_of_cloud_liquid_water_particles", "effective_radius_of_cloud_liquid_water_particles_at_liquid_water_cloud_top", "effective_radius_of_convective_cloud_ice_particles", "effective_radius_of_convective_cloud_liquid_water_particles", "effective_radius_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "effective_radius_of_convective_cloud_rain_particles", "effective_radius_of_convective_cloud_snow_particles", "effective_radius_of_stratiform_cloud_graupel_particles", "effective_radius_of_stratiform_cloud_ice_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "effective_radius_of_stratiform_cloud_rain_particles", "effective_radius_of_stratiform_cloud_snow_particles", "electrical_mobility_diameter_of_ambient_aerosol_particles", "enrichment_of_14C_in_carbon_dioxide_in_air_expressed_as_uppercase_delta_14C", "enthalpy_content_of_atmosphere_layer", "equilibrium_line_altitude", "equivalent_pressure_of_atmosphere_ozone_content", "equivalent_reflectivity_factor", "equivalent_thickness_at_stp_of_atmosphere_ozone_content", "ertel_potential_vorticity", "fast_soil_pool_mass_content_of_carbon", "final_air_pressure_of_lifted_parcel", "fire_radiative_power", "fire_temperature", "flat_line_test_quality_flag", "floating_ice_shelf_area", "floating_ice_shelf_area_fraction", "floating_ice_thickness", "flood_water_duration_above_threshold", "flood_water_speed", "flood_water_thickness", "fog_area_fraction", "forecast_period", "forecast_reference_time", "fractional_saturation_of_oxygen_in_sea_water", "fraction_of_surface_downwelling_photosynthetic_radiative_flux_absorbed_by_vegetation", "fraction_of_time_with_sea_ice_area_fraction_above_threshold", "freezing_level_altitude", "freezing_temperature_of_sea_water", "frequency_of_lightning_flashes_per_unit_area", "frozen_water_content_of_soil_layer", "fugacity_of_carbon_dioxide_in_sea_water", "gap_test_quality_flag", "geoid_height_above_reference_ellipsoid", "geopotential", "geopotential_height", "geopotential_height_anomaly", "geopotential_height_at_cloud_top", "geopotential_height_at_volcanic_ash_cloud_top", "geostrophic_eastward_sea_water_velocity", "geostrophic_eastward_wind", "geostrophic_northward_sea_water_velocity", "geostrophic_northward_wind", "global_average_steric_sea_level_change", "global_average_thermosteric_sea_level_change", "graupel_and_hail_fall_amount", "graupel_fall_amount", "grid_latitude", "grid_longitude", "gross_primary_productivity_of_biomass_expressed_as_13C", "gross_primary_productivity_of_biomass_expressed_as_14C", "gross_primary_productivity_of_biomass_expressed_as_carbon", "gross_range_test_quality_flag", "gross_rate_of_decrease_in_area_fraction", "gross_rate_of_increase_in_area_fraction", "grounded_ice_sheet_area", "grounded_ice_sheet_area_fraction", "ground_level_altitude", "growth_limitation_of_calcareous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_diatoms_due_to_solar_irradiance", "growth_limitation_of_diazotrophic_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_miscellaneous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_picophytoplankton_due_to_solar_irradiance", "hail_fall_amount", "halosteric_change_in_mean_sea_level", "halosteric_change_in_sea_surface_height", "heat_flux_correction", "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", "heat_flux_into_sea_water_due_to_newtonian_relaxation", "heat_flux_into_sea_water_due_to_sea_ice_thermodynamics", "heat_flux_into_sea_water_due_to_snow_thermodynamics", "heat_index_of_air_temperature", "height", "height_above_geopotential_datum", "height_above_geopotential_datum_at_top_of_atmosphere_model", "height_above_mean_sea_level", "height_above_reference_ellipsoid", "height_above_sea_floor", "height_at_cloud_top", "height_at_effective_cloud_top_defined_by_infrared_radiation", "high_type_cloud_area_fraction", "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid", "histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid", "horizontal_atmosphere_dry_energy_transport", "horizontal_dry_energy_transport_in_atmosphere_layer", "humidity_mixing_ratio", "ice_cloud_area_fraction", "ice_cloud_area_fraction_in_atmosphere_layer", "ice_volume_in_frozen_ground_in_excess_of_pore_volume_in_unfrozen_ground_expressed_as_fraction_of_frozen_ground_volume", "incoming_water_volume_transport_along_river_channel", "indicative_error_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "institution", "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_salinity_and_sea_water_density", "integral_wrt_depth_of_sea_water_practical_salinity", "integral_wrt_depth_of_sea_water_temperature", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "integral_wrt_height_of_product_of_eastward_wind_and_specific_humidity", "integral_wrt_height_of_product_of_northward_wind_and_specific_humidity", "integral_wrt_time_of_air_temperature_deficit", "integral_wrt_time_of_air_temperature_excess", "integral_wrt_time_of_mole_stomatal_uptake_of_ozone", "integral_wrt_time_of_radioactivity_concentration_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_104Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_110mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_11C_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_136Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_139Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_13N_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_145Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_150Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_153Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_154Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_157Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_158Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_15O_in_air", "integral_wrt_time_of_radioactivity_concentration_of_160Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_161Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162mTb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_163Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_165Dy_in_air", "integral_wrt_time_of_radioactivity_concentration_of_18F_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Hg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207mPb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_208Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_220Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_224Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234mPa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m1Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m2Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244mAm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_246Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_247Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_248Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_24Na_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_251Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_252Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254mEs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_255Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_3H_in_air", "integral_wrt_time_of_radioactivity_concentration_of_41Ar_in_air", "integral_wrt_time_of_radioactivity_concentration_of_54Mn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_58Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_60Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Zn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_73Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_75Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77mGe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_79Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86mRb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_96Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_98Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Tc_in_air", "integral_wrt_time_of_surface_downward_eastward_stress", "integral_wrt_time_of_surface_downward_latent_heat_flux", "integral_wrt_time_of_surface_downward_northward_stress", "integral_wrt_time_of_surface_downward_sensible_heat_flux", "integral_wrt_time_of_surface_downwelling_longwave_flux_in_air", "integral_wrt_time_of_surface_downwelling_shortwave_flux_in_air", "integral_wrt_time_of_surface_net_downward_longwave_flux", "integral_wrt_time_of_surface_net_downward_shortwave_flux", "integral_wrt_time_of_toa_net_downward_shortwave_flux", "integral_wrt_time_of_toa_outgoing_longwave_flux", "iron_growth_limitation_of_calcareous_phytoplankton", "iron_growth_limitation_of_diatoms", "iron_growth_limitation_of_diazotrophic_phytoplankton", "iron_growth_limitation_of_miscellaneous_phytoplankton", "iron_growth_limitation_of_picophytoplankton", "isccp_cloud_area_fraction", "isotope_ratio_of_17O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotope_ratio_of_18O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotropic_longwave_radiance_in_air", "isotropic_radiance_per_unit_wavelength_in_air", "isotropic_shortwave_radiance_in_air", "kinetic_energy_content_of_atmosphere_layer", "kinetic_energy_dissipation_in_atmosphere_boundary_layer", "lagrangian_tendency_of_air_pressure", "lagrangian_tendency_of_atmosphere_sigma_coordinate", "land_area_fraction", "land_ice_area_fraction", "land_ice_basal_melt_rate", "land_ice_basal_temperature", "land_ice_basal_upward_velocity", "land_ice_basal_x_velocity", "land_ice_basal_y_velocity", "land_ice_calving_rate", "land_ice_lwe_basal_melt_rate", "land_ice_lwe_calving_rate", "land_ice_lwe_surface_specific_mass_balance_rate", "land_ice_mass_not_displacing_sea_water", "land_ice_sigma_coordinate", "land_ice_specific_mass_flux_due_to_calving", "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", "land_ice_surface_melt_flux", "land_ice_surface_specific_mass_balance_rate", "land_ice_surface_upward_velocity", "land_ice_surface_x_velocity", "land_ice_surface_y_velocity", "land_ice_temperature", "land_ice_thickness", "land_ice_vertical_mean_x_velocity", "land_ice_vertical_mean_y_velocity", "land_ice_x_velocity", "land_ice_y_velocity", "land_surface_liquid_water_amount", "land_water_amount", "latitude", "leaf_mass_content_of_carbon", "leaf_mass_content_of_nitrogen", "lightning_potential_index", "lightning_radiant_energy", "liquid_water_cloud_area_fraction", "liquid_water_cloud_area_fraction_in_atmosphere_layer", "liquid_water_content_of_permafrost_layer", "liquid_water_content_of_soil_layer", "liquid_water_content_of_surface_snow", "liquid_water_mass_flux_into_soil_due_to_surface_snow_melt", "litter_mass_content_of_13C", "litter_mass_content_of_14C", "litter_mass_content_of_carbon", "litter_mass_content_of_nitrogen", "location_test_quality_flag", "log10_size_interval_based_number_size_distribution_of_cloud_condensation_nuclei_at_stp_in_air", "longitude", "low_type_cloud_area_fraction", "lwe_convective_precipitation_rate", "lwe_convective_snowfall_rate", "lwe_precipitation_rate", "lwe_snowfall_rate", "lwe_stratiform_precipitation_rate", "lwe_stratiform_snowfall_rate", "lwe_thickness_of_atmosphere_mass_content_of_water_vapor", "lwe_thickness_of_canopy_water_amount", "lwe_thickness_of_convective_precipitation_amount", "lwe_thickness_of_convective_snowfall_amount", "lwe_thickness_of_frozen_water_content_of_soil_layer", "lwe_thickness_of_moisture_content_of_soil_layer", "lwe_thickness_of_precipitation_amount", "lwe_thickness_of_snowfall_amount", "lwe_thickness_of_soil_moisture_content", "lwe_thickness_of_stratiform_precipitation_amount", "lwe_thickness_of_stratiform_snowfall_amount", "lwe_thickness_of_surface_snow_amount", "lwe_thickness_of_water_evaporation_amount", "lwe_water_evaporation_rate", "magnitude_of_air_velocity_relative_to_sea_water", "magnitude_of_derivative_of_position_wrt_model_level_number", "magnitude_of_derivative_of_position_wrt_x_coordinate_index", "magnitude_of_derivative_of_position_wrt_y_coordinate_index", "magnitude_of_heat_flux_in_sea_water_due_to_advection", "magnitude_of_sea_ice_displacement", "magnitude_of_surface_downward_stress", "mass_concentration_of_19_butanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_19_hexanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_acetic_acid_in_air", "mass_concentration_of_aceto_nitrile_in_air", "mass_concentration_of_adenosine_triphosphate_in_sea_water", "mass_concentration_of_alkanes_in_air", "mass_concentration_of_alkenes_in_air", "mass_concentration_of_alpha_carotene_in_sea_water", "mass_concentration_of_alpha_hexachlorocyclohexane_in_air", "mass_concentration_of_alpha_pinene_in_air", "mass_concentration_of_ammonia_in_air", "mass_concentration_of_ammonium_dry_aerosol_particles_in_air", "mass_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_aromatic_compounds_in_air", "mass_concentration_of_atomic_bromine_in_air", "mass_concentration_of_atomic_chlorine_in_air", "mass_concentration_of_atomic_nitrogen_in_air", "mass_concentration_of_benzene_in_air", "mass_concentration_of_beta_carotene_in_sea_water", "mass_concentration_of_beta_pinene_in_air", "mass_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_biomass_burning_dry_aerosol_particles_in_air", "mass_concentration_of_bromine_chloride_in_air", "mass_concentration_of_bromine_monoxide_in_air", "mass_concentration_of_bromine_nitrate_in_air", "mass_concentration_of_brox_expressed_as_bromine_in_air", "mass_concentration_of_butane_in_air", "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_carbon_dioxide_in_air", "mass_concentration_of_carbon_monoxide_in_air", "mass_concentration_of_carbon_tetrachloride_in_air", "mass_concentration_of_carotene_in_sea_water", "mass_concentration_of_cfc113a_in_air", "mass_concentration_of_cfc113_in_air", "mass_concentration_of_cfc114_in_air", "mass_concentration_of_cfc115_in_air", "mass_concentration_of_cfc11_in_air", "mass_concentration_of_cfc12_in_air", "mass_concentration_of_chlorine_dioxide_in_air", "mass_concentration_of_chlorine_monoxide_in_air", "mass_concentration_of_chlorine_nitrate_in_air", "mass_concentration_of_chlorophyll_a_in_sea_water", "mass_concentration_of_chlorophyll_b_in_sea_water", "mass_concentration_of_chlorophyll_c1_and_chlorophyll_c2_in_sea_water", "mass_concentration_of_chlorophyll_c3_in_sea_water", "mass_concentration_of_chlorophyll_c_in_sea_water", "mass_concentration_of_chlorophyllide_a_in_sea_water", "mass_concentration_of_chlorophyll_in_sea_water", "mass_concentration_of_cloud_liquid_water_in_air", "mass_concentration_of_clox_expressed_as_chlorine_in_air", "mass_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "mass_concentration_of_condensed_water_in_soil", "mass_concentration_of_diadinoxanthin_in_sea_water", "mass_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_dichlorine_peroxide_in_air", "mass_concentration_of_dimethyl_sulfide_in_air", "mass_concentration_of_dinitrogen_pentoxide_in_air", "mass_concentration_of_divinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_drizzle_in_air", "mass_concentration_of_dust_dry_aerosol_particles_in_air", "mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_concentration_of_ethane_in_air", "mass_concentration_of_ethanol_in_air", "mass_concentration_of_ethene_in_air", "mass_concentration_of_ethyne_in_air", "mass_concentration_of_flagellates_expressed_as_carbon_in_sea_water", "mass_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_formaldehyde_in_air", "mass_concentration_of_formic_acid_in_air", "mass_concentration_of_fucoxanthin_in_sea_water", "mass_concentration_of_gaseous_divalent_mercury_in_air", "mass_concentration_of_gaseous_elemental_mercury_in_air", "mass_concentration_of_halon1202_in_air", "mass_concentration_of_halon1211_in_air", "mass_concentration_of_halon1301_in_air", "mass_concentration_of_halon2402_in_air", "mass_concentration_of_hcc140a_in_air", "mass_concentration_of_hcfc141b_in_air", "mass_concentration_of_hcfc142b_in_air", "mass_concentration_of_hcfc22_in_air", "mass_concentration_of_hexachlorobiphenyl_in_air", "mass_concentration_of_hox_expressed_as_hydrogen_in_air", "mass_concentration_of_hydrogen_bromide_in_air", "mass_concentration_of_hydrogen_chloride_in_air", "mass_concentration_of_hydrogen_cyanide_in_air", "mass_concentration_of_hydrogen_peroxide_in_air", "mass_concentration_of_hydroperoxyl_radical_in_air", "mass_concentration_of_hydroxyl_radical_in_air", "mass_concentration_of_hypobromous_acid_in_air", "mass_concentration_of_hypochlorous_acid_in_air", "mass_concentration_of_inorganic_bromine_in_air", "mass_concentration_of_inorganic_chlorine_in_air", "mass_concentration_of_inorganic_nitrogen_in_sea_water", "mass_concentration_of_isoprene_in_air", "mass_concentration_of_limonene_in_air", "mass_concentration_of_liquid_water_in_air", "mass_concentration_of_lutein_in_sea_water", "mass_concentration_of_mercury_dry_aerosol_particles_in_air", "mass_concentration_of_methane_in_air", "mass_concentration_of_methanol_in_air", "mass_concentration_of_methyl_bromide_in_air", "mass_concentration_of_methyl_chloride_in_air", "mass_concentration_of_methyl_hydroperoxide_in_air", "mass_concentration_of_methyl_peroxy_radical_in_air", "mass_concentration_of_microphytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_molecular_hydrogen_in_air", "mass_concentration_of_monovinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_nanophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_nitrate_dry_aerosol_particles_in_air", "mass_concentration_of_nitrate_radical_in_air", "mass_concentration_of_nitric_acid_in_air", "mass_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_concentration_of_nitrogen_dioxide_in_air", "mass_concentration_of_nitrogen_monoxide_in_air", "mass_concentration_of_nitrous_acid_in_air", "mass_concentration_of_nitrous_oxide_in_air", "mass_concentration_of_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_nox_expressed_as_nitrogen_in_air", "mass_concentration_of_noy_expressed_as_nitrogen_in_air", "mass_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mass_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_oxygenated_hydrocarbons_in_air", "mass_concentration_of_oxygen_in_sea_water", "mass_concentration_of_ozone_in_air", "mass_concentration_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_peridinin_in_sea_water", "mass_concentration_of_peroxyacetyl_nitrate_in_air", "mass_concentration_of_peroxynitric_acid_in_air", "mass_concentration_of_peroxy_radicals_in_air", "mass_concentration_of_petroleum_hydrocarbons_in_sea_water", "mass_concentration_of_phaeopigments_in_sea_water", "mass_concentration_of_phosphate_in_sea_water", "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_pm10_ambient_aerosol_particles_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_pm1_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_prasinoxanthin_in_sea_water", "mass_concentration_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_propane_in_air", "mass_concentration_of_propene_in_air", "mass_concentration_of_radon_in_air", "mass_concentration_of_rain_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_silicate_in_sea_water", "mass_concentration_of_sulfate_ambient_aerosol_particles_in_air", "mass_concentration_of_sulfate_dry_aerosol_particles_in_air", "mass_concentration_of_sulfur_dioxide_in_air", "mass_concentration_of_suspended_matter_in_sea_water", "mass_concentration_of_terpenes_in_air", "mass_concentration_of_toluene_in_air", "mass_concentration_of_violaxanthin_in_sea_water", "mass_concentration_of_volcanic_ash_in_air", "mass_concentration_of_water_in_ambient_aerosol_particles_in_air", "mass_concentration_of_water_vapor_in_air", "mass_concentration_of_xylene_in_air", "mass_concentration_of_zeaxanthin_in_sea_water", "mass_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mass_content_of_13C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_14C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_cloud_condensed_water_in_atmosphere_layer", "mass_content_of_cloud_ice_in_atmosphere_layer", "mass_content_of_cloud_liquid_water_in_atmosphere_layer", "mass_content_of_nitrogen_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_water_in_atmosphere_layer", "mass_content_of_water_in_soil", "mass_content_of_water_in_soil_layer", "mass_content_of_water_in_soil_layer_defined_by_root_depth", "mass_content_of_water_vapor_containing_17O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_18O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_single_2H_in_atmosphere_layer", "mass_content_of_water_vapor_in_atmosphere_layer", "mass_flux_of_carbon_into_forestry_and_agricultural_products_due_to_crop_harvesting", "mass_flux_of_carbon_into_litter_from_vegetation", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence", "mass_flux_of_carbon_into_sea_water_from_rivers", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_senescence", "mass_flux_of_carbon_out_of_soil_due_to_leaching_and_runoff", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_into_sea_from_rivers", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_litter_and_soil_due_to_immobilisation_and_remineralization", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil_due_to_leaching_and_runoff", "mass_fraction_of_acetic_acid_in_air", "mass_fraction_of_aceto_nitrile_in_air", "mass_fraction_of_alkanes_in_air", "mass_fraction_of_alkenes_in_air", "mass_fraction_of_alpha_hexachlorocyclohexane_in_air", "mass_fraction_of_alpha_pinene_in_air", "mass_fraction_of_ammonia_in_air", "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_aromatic_compounds_in_air", "mass_fraction_of_atomic_bromine_in_air", "mass_fraction_of_atomic_chlorine_in_air", "mass_fraction_of_atomic_nitrogen_in_air", "mass_fraction_of_benzene_in_air", "mass_fraction_of_beta_pinene_in_air", "mass_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_bromine_chloride_in_air", "mass_fraction_of_bromine_monoxide_in_air", "mass_fraction_of_bromine_nitrate_in_air", "mass_fraction_of_brox_expressed_as_bromine_in_air", "mass_fraction_of_butane_in_air", "mass_fraction_of_carbon_dioxide_in_air", "mass_fraction_of_carbon_dioxide_tracer_in_air", "mass_fraction_of_carbon_monoxide_in_air", "mass_fraction_of_carbon_tetrachloride_in_air", "mass_fraction_of_cfc113a_in_air", "mass_fraction_of_cfc113_in_air", "mass_fraction_of_cfc114_in_air", "mass_fraction_of_cfc115_in_air", "mass_fraction_of_cfc11_in_air", "mass_fraction_of_cfc12_in_air", "mass_fraction_of_chlorine_dioxide_in_air", "mass_fraction_of_chlorine_monoxide_in_air", "mass_fraction_of_chlorine_nitrate_in_air", "mass_fraction_of_chlorophyll_a_in_sea_water", "mass_fraction_of_clay_in_soil", "mass_fraction_of_cloud_condensed_water_in_air", "mass_fraction_of_cloud_ice_in_air", "mass_fraction_of_cloud_liquid_water_in_air", "mass_fraction_of_clox_expressed_as_chlorine_in_air", "mass_fraction_of_convective_cloud_condensed_water_in_air", "mass_fraction_of_convective_cloud_ice_in_air", "mass_fraction_of_convective_cloud_liquid_water_in_air", "mass_fraction_of_dichlorine_peroxide_in_air", "mass_fraction_of_dimethyl_sulfide_in_air", "mass_fraction_of_dinitrogen_pentoxide_in_air", "mass_fraction_of_dust_dry_aerosol_particles_in_air", "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_ethane_in_air", "mass_fraction_of_ethanol_in_air", "mass_fraction_of_ethene_in_air", "mass_fraction_of_ethyne_in_air", "mass_fraction_of_formaldehyde_in_air", "mass_fraction_of_formic_acid_in_air", "mass_fraction_of_frozen_water_in_soil_moisture", "mass_fraction_of_gaseous_divalent_mercury_in_air", "mass_fraction_of_gaseous_elemental_mercury_in_air", "mass_fraction_of_graupel_and_hail_in_air", "mass_fraction_of_graupel_in_air", "mass_fraction_of_gravel_in_soil", "mass_fraction_of_hail_in_air", "mass_fraction_of_halon1202_in_air", "mass_fraction_of_halon1211_in_air", "mass_fraction_of_halon1301_in_air", "mass_fraction_of_halon2402_in_air", "mass_fraction_of_hcc140a_in_air", "mass_fraction_of_hcfc141b_in_air", "mass_fraction_of_hcfc142b_in_air", "mass_fraction_of_hcfc22_in_air", "mass_fraction_of_hexachlorobiphenyl_in_air", "mass_fraction_of_hox_expressed_as_hydrogen_in_air", "mass_fraction_of_hydrogen_bromide_in_air", "mass_fraction_of_hydrogen_chloride_in_air", "mass_fraction_of_hydrogen_cyanide_in_air", "mass_fraction_of_hydrogen_peroxide_in_air", "mass_fraction_of_hydroperoxyl_radical_in_air", "mass_fraction_of_hydroxyl_radical_in_air", "mass_fraction_of_hypobromous_acid_in_air", "mass_fraction_of_hypochlorous_acid_in_air", "mass_fraction_of_inorganic_bromine_in_air", "mass_fraction_of_inorganic_chlorine_in_air", "mass_fraction_of_isoprene_in_air", "mass_fraction_of_limonene_in_air", "mass_fraction_of_liquid_precipitation_in_air", "mass_fraction_of_mercury_dry_aerosol_particles_in_air", "mass_fraction_of_methane_in_air", "mass_fraction_of_methanesulfonic_acid_dry_aerosol_particles_in_air", "mass_fraction_of_methanol_in_air", "mass_fraction_of_methyl_bromide_in_air", "mass_fraction_of_methyl_chloride_in_air", "mass_fraction_of_methyl_hydroperoxide_in_air", "mass_fraction_of_methyl_peroxy_radical_in_air", "mass_fraction_of_molecular_hydrogen_in_air", "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_nitrate_radical_in_air", "mass_fraction_of_nitric_acid_in_air", "mass_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_fraction_of_nitrogen_dioxide_in_air", "mass_fraction_of_nitrogen_monoxide_in_air", "mass_fraction_of_nitrous_acid_in_air", "mass_fraction_of_nitrous_oxide_in_air", "mass_fraction_of_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_nox_expressed_as_nitrogen_in_air", "mass_fraction_of_noy_expressed_as_nitrogen_in_air", "mass_fraction_of_organic_matter_in_soil", "mass_fraction_of_oxygenated_hydrocarbons_in_air", "mass_fraction_of_ozone_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_peroxyacetyl_nitrate_in_air", "mass_fraction_of_peroxynitric_acid_in_air", "mass_fraction_of_peroxy_radicals_in_air", "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_pm10_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_pm1_ambient_aerosol_particles_in_air", "mass_fraction_of_pm1_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_precipitation_in_air", "mass_fraction_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_propane_in_air", "mass_fraction_of_propene_in_air", "mass_fraction_of_radon_in_air", "mass_fraction_of_rainfall_falling_onto_surface_snow", "mass_fraction_of_sand_in_soil", "mass_fraction_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_shallow_convective_cloud_liquid_water_in_air", "mass_fraction_of_silt_in_soil", "mass_fraction_of_snow_in_air", "mass_fraction_of_solid_precipitation_falling_onto_surface_snow", "mass_fraction_of_stratiform_cloud_ice_in_air", "mass_fraction_of_stratiform_cloud_liquid_water_in_air", "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_sulfur_dioxide_in_air", "mass_fraction_of_sulfuric_acid_in_air", "mass_fraction_of_terpenes_in_air", "mass_fraction_of_toluene_in_air", "mass_fraction_of_unfrozen_water_in_soil_moisture", "mass_fraction_of_water_in_air", "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_xylene_in_air", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_strain_rate", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_stress", "medium_soil_pool_mass_content_of_carbon", "medium_type_cloud_area_fraction", "minimum_depth_of_aragonite_undersaturation_in_sea_water", "minimum_depth_of_calcite_undersaturation_in_sea_water", "minus_one_times_surface_upwelling_longwave_flux_in_air", "minus_one_times_surface_upwelling_shortwave_flux_in_air", "minus_one_times_toa_outgoing_shortwave_flux", "minus_one_times_water_flux_into_sea_water_from_rivers", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "minus_tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "minus_tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "miscellaneous_living_matter_mass_content_of_carbon", "miscellaneous_living_matter_mass_content_of_nitrogen", "model_level_number_at_base_of_ocean_mixed_layer_defined_by_sigma_theta", "model_level_number_at_convective_cloud_base", "model_level_number_at_convective_cloud_top", "model_level_number_at_sea_floor", "model_level_number_at_top_of_atmosphere_boundary_layer", "moisture_content_of_soil_layer_at_field_capacity", "mole_concentration_of_acetic_acid_in_air", "mole_concentration_of_aceto_nitrile_in_air", "mole_concentration_of_adenosine_triphosphate_in_sea_water", "mole_concentration_of_alpha_hexachlorocyclohexane_in_air", "mole_concentration_of_alpha_pinene_in_air", "mole_concentration_of_ammonia_in_air", "mole_concentration_of_ammonium_in_sea_water", "mole_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_atomic_bromine_in_air", "mole_concentration_of_atomic_chlorine_in_air", "mole_concentration_of_atomic_nitrogen_in_air", "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", "mole_concentration_of_benzene_in_air", "mole_concentration_of_beta_pinene_in_air", "mole_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mole_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_bromine_chloride_in_air", "mole_concentration_of_bromine_monoxide_in_air", "mole_concentration_of_bromine_nitrate_in_air", "mole_concentration_of_brox_expressed_as_bromine_in_air", "mole_concentration_of_butane_in_air", "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_carbonate_abiotic_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_calcite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_natural_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbon_dioxide_in_air", "mole_concentration_of_carbon_monoxide_in_air", "mole_concentration_of_carbon_tetrachloride_in_air", "mole_concentration_of_cfc113a_in_air", "mole_concentration_of_cfc113_in_air", "mole_concentration_of_cfc114_in_air", "mole_concentration_of_cfc115_in_air", "mole_concentration_of_cfc11_in_air", "mole_concentration_of_cfc11_in_sea_water", "mole_concentration_of_cfc12_in_air", "mole_concentration_of_cfc12_in_sea_water", "mole_concentration_of_chlorine_dioxide_in_air", "mole_concentration_of_chlorine_monoxide_in_air", "mole_concentration_of_chlorine_nitrate_in_air", "mole_concentration_of_clox_expressed_as_chlorine_in_air", "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_dichlorine_peroxide_in_air", "mole_concentration_of_dimethyl_sulfide_in_air", "mole_concentration_of_dimethyl_sulfide_in_sea_water", "mole_concentration_of_dinitrogen_pentoxide_in_air", "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_abiotic_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_natural_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", "mole_concentration_of_dissolved_iron_in_sea_water", "mole_concentration_of_dissolved_molecular_nitrogen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile", "mole_concentration_of_dissolved_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_carbon_in_sea_water", "mole_concentration_of_dissolved_organic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_phosphorus_in_sea_water", "mole_concentration_of_ethane_in_air", "mole_concentration_of_ethanol_in_air", "mole_concentration_of_ethene_in_air", "mole_concentration_of_ethyne_in_air", "mole_concentration_of_formaldehyde_in_air", "mole_concentration_of_formic_acid_in_air", "mole_concentration_of_gaseous_divalent_mercury_in_air", "mole_concentration_of_gaseous_elemental_mercury_in_air", "mole_concentration_of_halon1202_in_air", "mole_concentration_of_halon1211_in_air", "mole_concentration_of_halon1301_in_air", "mole_concentration_of_halon2402_in_air", "mole_concentration_of_hcc140a_in_air", "mole_concentration_of_hcfc141b_in_air", "mole_concentration_of_hcfc142b_in_air", "mole_concentration_of_hcfc22_in_air", "mole_concentration_of_hexachlorobiphenyl_in_air", "mole_concentration_of_hox_expressed_as_hydrogen_in_air", "mole_concentration_of_hydrogen_bromide_in_air", "mole_concentration_of_hydrogen_chloride_in_air", "mole_concentration_of_hydrogen_cyanide_in_air", "mole_concentration_of_hydrogen_peroxide_in_air", "mole_concentration_of_hydrogen_sulfide_in_sea_water", "mole_concentration_of_hydroperoxyl_radical_in_air", "mole_concentration_of_hydroxyl_radical_in_air", "mole_concentration_of_hypobromous_acid_in_air", "mole_concentration_of_hypochlorous_acid_in_air", "mole_concentration_of_inorganic_bromine_in_air", "mole_concentration_of_inorganic_chlorine_in_air", "mole_concentration_of_isoprene_in_air", "mole_concentration_of_limonene_in_air", "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_methane_in_air", "mole_concentration_of_methanol_in_air", "mole_concentration_of_methyl_bromide_in_air", "mole_concentration_of_methyl_chloride_in_air", "mole_concentration_of_methyl_hydroperoxide_in_air", "mole_concentration_of_methyl_peroxy_radical_in_air", "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_molecular_hydrogen_in_air", "mole_concentration_of_nitrate_and_nitrite_in_sea_water", "mole_concentration_of_nitrate_in_sea_water", "mole_concentration_of_nitrate_radical_in_air", "mole_concentration_of_nitric_acid_in_air", "mole_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_concentration_of_nitrite_in_sea_water", "mole_concentration_of_nitrogen_dioxide_in_air", "mole_concentration_of_nitrogen_monoxide_in_air", "mole_concentration_of_nitrous_acid_in_air", "mole_concentration_of_nitrous_oxide_in_air", "mole_concentration_of_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_nox_expressed_as_nitrogen_in_air", "mole_concentration_of_noy_expressed_as_nitrogen_in_air", "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water", "mole_concentration_of_ozone_in_air", "mole_concentration_of_particulate_matter_expressed_as_carbon_in_sea_water", "mole_concentration_of_particulate_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_nitrogen_in_sea_water", "mole_concentration_of_peroxyacetyl_nitrate_in_air", "mole_concentration_of_peroxynitric_acid_in_air", "mole_concentration_of_phosphate_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water", "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_propane_in_air", "mole_concentration_of_propene_in_air", "mole_concentration_of_radon_in_air", "mole_concentration_of_silicate_in_sea_water", "mole_concentration_of_sulfur_dioxide_in_air", "mole_concentration_of_sulfur_hexafluoride_in_sea_water", "mole_concentration_of_toluene_in_air", "mole_concentration_of_water_vapor_in_air", "mole_concentration_of_xylene_in_air", "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water", "mole_content_of_carbon_monoxide_in_atmosphere_layer", "mole_content_of_methane_in_atmosphere_layer", "mole_content_of_nitrogen_dioxide_in_atmosphere_layer", "mole_content_of_ozone_in_atmosphere_layer", "mole_fraction_of_acetaldehyde_in_air", "mole_fraction_of_acetic_acid_in_air", "mole_fraction_of_acetone_in_air", "mole_fraction_of_aceto_nitrile_in_air", "mole_fraction_of_aldehydes_in_air", "mole_fraction_of_alkanes_in_air", "mole_fraction_of_alkenes_in_air", "mole_fraction_of_alpha_hexachlorocyclohexane_in_air", "mole_fraction_of_alpha_pinene_in_air", "mole_fraction_of_ammonia_in_air", "mole_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_artificial_tracer_with_fixed_lifetime_in_air", "mole_fraction_of_atomic_bromine_in_air", "mole_fraction_of_atomic_chlorine_in_air", "mole_fraction_of_atomic_nitrogen_in_air", "mole_fraction_of_benzene_in_air", "mole_fraction_of_beta_pinene_in_air", "mole_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_bromine_chloride_in_air", "mole_fraction_of_bromine_monoxide_in_air", "mole_fraction_of_bromine_nitrate_in_air", "mole_fraction_of_brox_expressed_as_bromine_in_air", "mole_fraction_of_butane_in_air", "mole_fraction_of_carbon_dioxide_in_air", "mole_fraction_of_carbon_monoxide_in_air", "mole_fraction_of_carbon_tetrachloride_in_air", "mole_fraction_of_carbon_tetrafluoride_in_air", "mole_fraction_of_carbonyl_fluoride_in_air", "mole_fraction_of_carbonyl_sulfide_in_air", "mole_fraction_of_cfc113a_in_air", "mole_fraction_of_cfc113_in_air", "mole_fraction_of_cfc114_in_air", "mole_fraction_of_cfc115_in_air", "mole_fraction_of_cfc11_in_air", "mole_fraction_of_cfc12_in_air", "mole_fraction_of_chlorine_dioxide_in_air", "mole_fraction_of_chlorine_monoxide_in_air", "mole_fraction_of_chlorine_nitrate_in_air", "mole_fraction_of_chloroform_in_air", "mole_fraction_of_clox_expressed_as_chlorine_in_air", "mole_fraction_of_dichlorine_in_air", "mole_fraction_of_dichlorine_peroxide_in_air", "mole_fraction_of_dichloromethane_in_air", "mole_fraction_of_dimethyl_sulfide_in_air", "mole_fraction_of_dinitrogen_pentoxide_in_air", "mole_fraction_of_ethane_in_air", "mole_fraction_of_ethanol_in_air", "mole_fraction_of_ethene_in_air", "mole_fraction_of_ethyne_in_air", "mole_fraction_of_formaldehyde_in_air", "mole_fraction_of_formic_acid_in_air", "mole_fraction_of_gaseous_divalent_mercury_in_air", "mole_fraction_of_gaseous_elemental_mercury_in_air", "mole_fraction_of_glyoxal_in_air", "mole_fraction_of_halon1202_in_air", "mole_fraction_of_halon1211_in_air", "mole_fraction_of_halon1301_in_air", "mole_fraction_of_halon2402_in_air", "mole_fraction_of_hcc140a_in_air", "mole_fraction_of_hcfc124_in_air", "mole_fraction_of_hcfc141b_in_air", "mole_fraction_of_hcfc142b_in_air", "mole_fraction_of_hcfc22_in_air", "mole_fraction_of_hexachlorobiphenyl_in_air", "mole_fraction_of_hfc125_in_air", "mole_fraction_of_hfc134a_in_air", "mole_fraction_of_hfc143a_in_air", "mole_fraction_of_hfc152a_in_air", "mole_fraction_of_hfc227ea_in_air", "mole_fraction_of_hfc236fa_in_air", "mole_fraction_of_hfc23_in_air", "mole_fraction_of_hfc245fa_in_air", "mole_fraction_of_hfc32_in_air", "mole_fraction_of_hfc365mfc_in_air", "mole_fraction_of_hfc4310mee_in_air", "mole_fraction_of_hox_expressed_as_hydrogen_in_air", "mole_fraction_of_hydrogen_bromide_in_air", "mole_fraction_of_hydrogen_chloride_in_air", "mole_fraction_of_hydrogen_cyanide_in_air", "mole_fraction_of_hydrogen_peroxide_in_air", "mole_fraction_of_hydrogen_sulfide_in_air", "mole_fraction_of_hydroperoxyl_radical_in_air", "mole_fraction_of_hydroxyl_radical_in_air", "mole_fraction_of_hypobromous_acid_in_air", "mole_fraction_of_hypochlorous_acid_in_air", "mole_fraction_of_inorganic_bromine_in_air", "mole_fraction_of_inorganic_chlorine_in_air", "mole_fraction_of_isoprene_in_air", "mole_fraction_of_limonene_in_air", "mole_fraction_of_methane_in_air", "mole_fraction_of_methanol_in_air", "mole_fraction_of_methyl_bromide_in_air", "mole_fraction_of_methyl_chloride_in_air", "mole_fraction_of_methylglyoxal_in_air", "mole_fraction_of_methyl_hydroperoxide_in_air", "mole_fraction_of_methyl_peroxy_radical_in_air", "mole_fraction_of_molecular_hydrogen_in_air", "mole_fraction_of_nitrate_radical_in_air", "mole_fraction_of_nitric_acid_in_air", "mole_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_fraction_of_nitrogen_dioxide_in_air", "mole_fraction_of_nitrogen_monoxide_in_air", "mole_fraction_of_nitrogen_trifluoride_in_air", "mole_fraction_of_nitrous_acid_in_air", "mole_fraction_of_nitrous_oxide_in_air", "mole_fraction_of_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_nox_expressed_as_nitrogen_in_air", "mole_fraction_of_noy_expressed_as_nitrogen_in_air", "mole_fraction_of_organic_nitrates_in_air", "mole_fraction_of_ox_in_air", "mole_fraction_of_ozone_in_air", "mole_fraction_of_perchloroethene_in_air", "mole_fraction_of_peroxyacetyl_nitrate_in_air", "mole_fraction_of_peroxynitric_acid_in_air", "mole_fraction_of_pfc116_in_air", "mole_fraction_of_pfc218_in_air", "mole_fraction_of_pfc318_in_air", "mole_fraction_of_propane_in_air", "mole_fraction_of_propene_in_air", "mole_fraction_of_radon_in_air", "mole_fraction_of_sulfur_dioxide_in_air", "mole_fraction_of_sulfur_hexafluoride_in_air", "mole_fraction_of_sulfuryl_fluoride_in_air", "mole_fraction_of_toluene_in_air", "mole_fraction_of_water_vapor_in_air", "mole_fraction_of_xylene_in_air", "mole_ratio_of_nitrate_to_phosphate_in_sea_water", "moles_of_cfc11_per_unit_mass_in_sea_water", "moles_of_dissolved_inorganic_carbon_per_unit_mass_in_sea_water", "moles_of_nitrate_and_nitrite_per_unit_mass_in_sea_water", "moles_of_nitrate_per_unit_mass_in_sea_water", "moles_of_nitrite_per_unit_mass_in_sea_water", "moles_of_oxygen_per_unit_mass_in_sea_water", "moles_of_phosphate_per_unit_mass_in_sea_water", "moles_of_silicate_per_unit_mass_in_sea_water", "multi_variate_test_quality_flag", "neighbor_test_quality_flag", "net_downward_longwave_flux_in_air", "net_downward_longwave_flux_in_air_assuming_clear_sky", "net_downward_radiative_flux_at_top_of_atmosphere_model", "net_downward_shortwave_flux_at_sea_water_surface", "net_downward_shortwave_flux_in_air", "net_downward_shortwave_flux_in_air_assuming_clear_sky", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_calcareous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diatoms", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diazotrophic_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_miscellaneous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_picophytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_due_to_nitrate_utilization", "net_primary_production_of_biomass_expressed_as_carbon_per_unit_volume_in_sea_water", "net_primary_productivity_of_biomass_expressed_as_carbon", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_leaves", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_miscellaneous_living_matter", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_roots", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_wood", "net_rate_of_absorption_of_longwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_ocean_layer", "net_upward_longwave_flux_in_air", "net_upward_longwave_flux_in_air_assuming_clear_sky", "net_upward_shortwave_flux_in_air", "net_upward_shortwave_flux_in_air_assuming_clear_sky", "nitrogen_growth_limitation_of_calcareous_phytoplankton", "nitrogen_growth_limitation_of_diatoms", "nitrogen_growth_limitation_of_diazotrophic_phytoplankton", "nitrogen_growth_limitation_of_miscellaneous_phytoplankton", "nitrogen_growth_limitation_of_picophytoplankton", "nitrogen_mass_content_of_forestry_and_agricultural_products", "nitrogen_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "nitrogen_mass_flux_into_litter_from_vegetation", "nitrogen_mass_flux_into_soil_from_litter", "nitrogen_mass_flux_into_soil_from_vegetation_excluding_litter", "non_tidal_elevation_of_sea_surface_height", "normalized_difference_vegetation_index", "northward_air_velocity_relative_to_sea_water", "northward_atmosphere_dry_static_energy_transport_across_unit_distance", "northward_atmosphere_heat_transport", "northward_atmosphere_water_transport_across_unit_distance", "northward_atmosphere_water_vapor_transport_across_unit_distance", "northward_derivative_of_eastward_sea_ice_velocity", "northward_derivative_of_eastward_wind", "northward_derivative_of_northward_wind", "northward_derivative_of_wind_from_direction", "northward_eliassen_palm_flux_in_air", "northward_flood_water_velocity", "northward_friction_velocity_in_air", "northward_heat_flux_in_air_due_to_eddy_advection", "northward_land_ice_velocity", "northward_mass_flux_of_air", "northward_momentum_flux_correction", "northward_northward_derivative_of_geopotential", "northward_ocean_freshwater_transport", "northward_ocean_freshwater_transport_due_to_diffusion", "northward_ocean_freshwater_transport_due_to_gyre", "northward_ocean_freshwater_transport_due_to_overturning", "northward_ocean_freshwater_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport", "northward_ocean_heat_transport_due_to_diffusion", "northward_ocean_heat_transport_due_to_gyre", "northward_ocean_heat_transport_due_to_overturning", "northward_ocean_heat_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_diffusion", "northward_ocean_heat_transport_due_to_parameterized_submesoscale_eddy_advection", "northward_ocean_salt_transport", "northward_ocean_salt_transport_due_to_diffusion", "northward_ocean_salt_transport_due_to_gyre", "northward_ocean_salt_transport_due_to_overturning", "northward_ocean_salt_transport_due_to_parameterized_eddy_advection", "northward_sea_ice_displacement", "northward_sea_ice_velocity", "northward_sea_water_velocity", "northward_sea_water_velocity_assuming_no_tide", "northward_sea_water_velocity_at_sea_floor", "northward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "northward_sea_water_velocity_due_to_tides", "northward_transformed_eulerian_mean_air_velocity", "northward_upward_derivative_of_geopotential", "northward_water_vapor_flux_in_air", "northward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "northward_westward_derivative_of_geopotential", "northward_wind", "northward_wind_shear", "nudging_increment_in_mass_content_of_water_in_soil", "nudging_increment_in_snow_and_ice_amount_on_land", "number_concentration_of_aerosol_particles_at_stp_in_air", "number_concentration_of_ambient_aerosol_particles_in_air", "number_concentration_of_biological_taxon_in_sea_water", "number_concentration_of_cloud_condensation_nuclei_at_stp_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air_at_liquid_water_cloud_top", "number_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "number_concentration_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "number_concentration_of_ice_crystals_in_air", "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top", "number_concentration_of_nucleation_mode_ambient_aerosol_particles_in_air", "number_concentration_of_ozone_molecules_in_air", "number_concentration_of_pm10_aerosol_particles_in_air", "number_concentration_of_pm2p5_aerosol_particles_in_air", "number_concentration_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "number_of_days_with_air_temperature_above_threshold", "number_of_days_with_air_temperature_below_threshold", "number_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "number_of_days_with_surface_temperature_below_threshold", "number_of_days_with_wind_speed_above_threshold", "number_of_icebergs_per_unit_area", "number_of_missing_observations", "number_of_observations", "ocean_barotropic_mass_streamfunction", "ocean_barotropic_streamfunction", "ocean_double_sigma_coordinate", "ocean_heat_x_transport", "ocean_heat_x_transport_due_to_diffusion", "ocean_heat_x_transport_due_to_parameterized_eddy_advection", "ocean_heat_y_transport", "ocean_heat_y_transport_due_to_diffusion", "ocean_heat_y_transport_due_to_parameterized_eddy_advection", "ocean_isopycnal_layer_thickness_diffusivity", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_vertical_friction", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_xy_friction", "ocean_mass_content_of_dissolved_inorganic_carbon", "ocean_mass_content_of_dissolved_organic_carbon", "ocean_mass_content_of_particulate_organic_matter_expressed_as_carbon", "ocean_mass_x_transport", "ocean_mass_x_transport_due_to_advection", "ocean_mass_x_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_mass_y_transport", "ocean_mass_y_transport_due_to_advection", "ocean_mass_y_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "ocean_meridional_overturning_streamfunction", "ocean_mixed_layer_thickness", "ocean_mixed_layer_thickness_defined_by_mixing_scheme", "ocean_mixed_layer_thickness_defined_by_sigma_t", "ocean_mixed_layer_thickness_defined_by_sigma_theta", "ocean_mixed_layer_thickness_defined_by_temperature", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_deficit", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_threshold", "ocean_momentum_xy_biharmonic_diffusivity", "ocean_momentum_xy_laplacian_diffusivity", "ocean_montgomery_potential", "ocean_relative_vorticity", "ocean_rigid_lid_pressure_expressed_as_sea_surface_height_above_geoid", "ocean_salt_x_transport", "ocean_salt_y_transport", "ocean_s_coordinate", "ocean_s_coordinate_g1", "ocean_s_coordinate_g2", "ocean_sigma_coordinate", "ocean_sigma_z_coordinate", "ocean_tracer_biharmonic_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_epineutral_biharmonic_diffusivity", "ocean_tracer_epineutral_laplacian_diffusivity", "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_xy_biharmonic_diffusivity", "ocean_tracer_xy_laplacian_diffusivity", "ocean_vertical_diffusivity", "ocean_vertical_heat_diffusivity", "ocean_vertical_momentum_diffusivity", "ocean_vertical_momentum_diffusivity_due_to_background", "ocean_vertical_momentum_diffusivity_due_to_convection", "ocean_vertical_momentum_diffusivity_due_to_form_drag", "ocean_vertical_momentum_diffusivity_due_to_tides", "ocean_vertical_salt_diffusivity", "ocean_vertical_tracer_diffusivity", "ocean_vertical_tracer_diffusivity_due_to_background", "ocean_vertical_tracer_diffusivity_due_to_convection", "ocean_vertical_tracer_diffusivity_due_to_tides", "ocean_vertical_tracer_diffusivity_due_to_wind_mixing", "ocean_volume_fraction", "ocean_volume_transport_across_line", "ocean_volume_x_transport", "ocean_volume_y_transport", "ocean_y_overturning_mass_streamfunction", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "omnidirectional_photosynthetic_spherical_irradiance_in_sea_water", "omnidirectional_spherical_irradiance_per_unit_wavelength_in_sea_water", "optical_thickness_of_atmosphere_layer_due_to_ambient_aerosol_particles", "original_air_pressure_of_lifted_parcel", "outgoing_water_volume_transport_along_river_channel", "partial_pressure_of_carbon_dioxide_in_sea_water", "partial_pressure_of_methane_in_sea_water", "permafrost_active_layer_thickness", "permafrost_area_fraction", "permafrost_layer_thickness", "photolysis_rate_of_molecular_oxygen", "photolysis_rate_of_nitrogen_dioxide", "photolysis_rate_of_ozone", "photolysis_rate_of_ozone_to_1D_oxygen_atom", "planetary_albedo", "platform_azimuth_angle", "platform_course", "platform_heave", "platform_heave_down", "platform_heave_rate", "platform_heave_rate_down", "platform_heave_rate_up", "platform_heave_up", "platform_id", "platform_name", "platform_orientation", "platform_pitch", "platform_pitch_fore_down", "platform_pitch_fore_up", "platform_pitch_rate", "platform_pitch_rate_fore_down", "platform_pitch_rate_fore_up", "platform_roll", "platform_roll_rate", "platform_roll_rate_starboard_down", "platform_roll_rate_starboard_up", "platform_roll_starboard_down", "platform_roll_starboard_up", "platform_speed_wrt_air", "platform_speed_wrt_ground", "platform_speed_wrt_sea_water", "platform_surge", "platform_surge_aft", "platform_surge_fore", "platform_surge_rate", "platform_surge_rate_aft", "platform_surge_rate_fore", "platform_sway", "platform_sway_port", "platform_sway_rate", "platform_sway_rate_port", "platform_sway_rate_starboard", "platform_sway_starboard", "platform_view_angle", "platform_yaw", "platform_yaw_fore_port", "platform_yaw_fore_starboard", "platform_yaw_rate", "platform_yaw_rate_fore_port", "platform_yaw_rate_fore_starboard", "platform_zenith_angle", "potential_energy_content_of_atmosphere_layer", "potential_vorticity_of_atmosphere_layer", "potential_vorticity_of_ocean_layer", "precipitation_amount", "precipitation_flux", "precipitation_flux_containing_17O", "precipitation_flux_containing_18O", "precipitation_flux_containing_single_2H", "precipitation_flux_onto_canopy", "predominant_precipitation_type_at_surface", "pressure_at_effective_cloud_top_defined_by_infrared_radiation", "probability_distribution_of_wind_from_direction_over_time", "product_of_air_temperature_and_specific_humidity", "product_of_eastward_sea_water_velocity_and_salinity", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_eastward_wind_and_air_temperature", "product_of_eastward_wind_and_geopotential_height", "product_of_eastward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_eastward_wind_and_northward_wind", "product_of_eastward_wind_and_specific_humidity", "product_of_eastward_wind_and_upward_air_velocity", "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", "product_of_lagrangian_tendency_of_air_pressure_and_geopotential_height", "product_of_lagrangian_tendency_of_air_pressure_and_specific_humidity", "product_of_northward_sea_water_velocity_and_salinity", "product_of_northward_sea_water_velocity_and_temperature", "product_of_northward_wind_and_air_temperature", "product_of_northward_wind_and_geopotential_height", "product_of_northward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_northward_wind_and_specific_humidity", "product_of_northward_wind_and_upward_air_velocity", "product_of_upward_air_velocity_and_air_temperature", "product_of_upward_air_velocity_and_specific_humidity", "projection_x_angular_coordinate", "projection_x_coordinate", "projection_y_angular_coordinate", "projection_y_coordinate", "proportion_of_acceptable_signal_returns_from_acoustic_instrument_in_sea_water", "quality_flag", "radial_sea_water_velocity_away_from_instrument", "radial_sea_water_velocity_toward_instrument", "radial_velocity_of_scatterers_away_from_instrument", "radial_velocity_of_scatterers_toward_instrument", "radiation_frequency", "radiation_wavelength", "radioactivity_concentration_in_air", "radioactivity_concentration_of_101Mo_in_air", "radioactivity_concentration_of_101Tc_in_air", "radioactivity_concentration_of_102Mo_in_air", "radioactivity_concentration_of_102mTc_in_air", "radioactivity_concentration_of_102Tc_in_air", "radioactivity_concentration_of_103mRh_in_air", "radioactivity_concentration_of_103Ru_in_air", "radioactivity_concentration_of_104Tc_in_air", "radioactivity_concentration_of_105mRh_in_air", "radioactivity_concentration_of_105Rh_in_air", "radioactivity_concentration_of_105Ru_in_air", "radioactivity_concentration_of_106mRh_in_air", "radioactivity_concentration_of_106Rh_in_air", "radioactivity_concentration_of_106Ru_in_air", "radioactivity_concentration_of_107mPd_in_air", "radioactivity_concentration_of_107Pd_in_air", "radioactivity_concentration_of_107Rh_in_air", "radioactivity_concentration_of_109mAg_in_air", "radioactivity_concentration_of_109Pd_in_air", "radioactivity_concentration_of_110mAg_in_air", "radioactivity_concentration_of_111Ag_in_air", "radioactivity_concentration_of_111mAg_in_air", "radioactivity_concentration_of_111mCd_in_air", "radioactivity_concentration_of_111mPd_in_air", "radioactivity_concentration_of_111Pd_in_air", "radioactivity_concentration_of_112Ag_in_air", "radioactivity_concentration_of_112Pd_in_air", "radioactivity_concentration_of_113Ag_in_air", "radioactivity_concentration_of_113Cd_in_air", "radioactivity_concentration_of_113mAg_in_air", "radioactivity_concentration_of_113mCd_in_air", "radioactivity_concentration_of_113mIn_in_air", "radioactivity_concentration_of_115Ag_in_air", "radioactivity_concentration_of_115Cd_in_air", "radioactivity_concentration_of_115In_in_air", "radioactivity_concentration_of_115mAg_in_air", "radioactivity_concentration_of_115mCd_in_air", "radioactivity_concentration_of_115mIn_in_air", "radioactivity_concentration_of_116In_in_air", "radioactivity_concentration_of_116mIn_in_air", "radioactivity_concentration_of_117Cd_in_air", "radioactivity_concentration_of_117In_in_air", "radioactivity_concentration_of_117mCd_in_air", "radioactivity_concentration_of_117mIn_in_air", "radioactivity_concentration_of_117mSn_in_air", "radioactivity_concentration_of_118Cd_in_air", "radioactivity_concentration_of_118In_in_air", "radioactivity_concentration_of_118mIn_in_air", "radioactivity_concentration_of_119In_in_air", "radioactivity_concentration_of_119mIn_in_air", "radioactivity_concentration_of_119mSn_in_air", "radioactivity_concentration_of_11C_in_air", "radioactivity_concentration_of_121mSn_in_air", "radioactivity_concentration_of_121Sn_in_air", "radioactivity_concentration_of_123mSn_in_air", "radioactivity_concentration_of_123Sn_in_air", "radioactivity_concentration_of_124mSb_in_air", "radioactivity_concentration_of_124Sb_in_air", "radioactivity_concentration_of_125mTe_in_air", "radioactivity_concentration_of_125Sb_in_air", "radioactivity_concentration_of_125Sn_in_air", "radioactivity_concentration_of_126mSb_in_air", "radioactivity_concentration_of_126Sb_in_air", "radioactivity_concentration_of_126Sn_in_air", "radioactivity_concentration_of_127mTe_in_air", "radioactivity_concentration_of_127Sb_in_air", "radioactivity_concentration_of_127Sn_in_air", "radioactivity_concentration_of_127Te_in_air", "radioactivity_concentration_of_128mSb_in_air", "radioactivity_concentration_of_128Sb_in_air", "radioactivity_concentration_of_128Sn_in_air", "radioactivity_concentration_of_129I_in_air", "radioactivity_concentration_of_129mTe_in_air", "radioactivity_concentration_of_129mXe_in_air", "radioactivity_concentration_of_129Sb_in_air", "radioactivity_concentration_of_129Te_in_air", "radioactivity_concentration_of_130I_in_air", "radioactivity_concentration_of_130mI_in_air", "radioactivity_concentration_of_130mSb_in_air", "radioactivity_concentration_of_130Sb_in_air", "radioactivity_concentration_of_130Sn_in_air", "radioactivity_concentration_of_131I_in_air", "radioactivity_concentration_of_131mTe_in_air", "radioactivity_concentration_of_131mXe_in_air", "radioactivity_concentration_of_131Sb_in_air", "radioactivity_concentration_of_131Te_in_air", "radioactivity_concentration_of_132I_in_air", "radioactivity_concentration_of_132Te_in_air", "radioactivity_concentration_of_133I_in_air", "radioactivity_concentration_of_133mI_in_air", "radioactivity_concentration_of_133mTe_in_air", "radioactivity_concentration_of_133mXe_in_air", "radioactivity_concentration_of_133Te_in_air", "radioactivity_concentration_of_133Xe_in_air", "radioactivity_concentration_of_134Cs_in_air", "radioactivity_concentration_of_134I_in_air", "radioactivity_concentration_of_134mCs_in_air", "radioactivity_concentration_of_134mI_in_air", "radioactivity_concentration_of_134mXe_in_air", "radioactivity_concentration_of_134Te_in_air", "radioactivity_concentration_of_135Cs_in_air", "radioactivity_concentration_of_135I_in_air", "radioactivity_concentration_of_135mBa_in_air", "radioactivity_concentration_of_135mCs_in_air", "radioactivity_concentration_of_135mXe_in_air", "radioactivity_concentration_of_135Xe_in_air", "radioactivity_concentration_of_136Cs_in_air", "radioactivity_concentration_of_137Cs_in_air", "radioactivity_concentration_of_137mBa_in_air", "radioactivity_concentration_of_137Xe_in_air", "radioactivity_concentration_of_138Cs_in_air", "radioactivity_concentration_of_138Xe_in_air", "radioactivity_concentration_of_139Ba_in_air", "radioactivity_concentration_of_13N_in_air", "radioactivity_concentration_of_140Ba_in_air", "radioactivity_concentration_of_140La_in_air", "radioactivity_concentration_of_141Ce_in_air", "radioactivity_concentration_of_141La_in_air", "radioactivity_concentration_of_142Ce_in_air", "radioactivity_concentration_of_142La_in_air", "radioactivity_concentration_of_142mPr_in_air", "radioactivity_concentration_of_142Pr_in_air", "radioactivity_concentration_of_143Ce_in_air", "radioactivity_concentration_of_143La_in_air", "radioactivity_concentration_of_143Pr_in_air", "radioactivity_concentration_of_144Ce_in_air", "radioactivity_concentration_of_144mPr_in_air", "radioactivity_concentration_of_144Nd_in_air", "radioactivity_concentration_of_144Pr_in_air", "radioactivity_concentration_of_145Pr_in_air", "radioactivity_concentration_of_146Ce_in_air", "radioactivity_concentration_of_146Pr_in_air", "radioactivity_concentration_of_147Nd_in_air", "radioactivity_concentration_of_147Pm_in_air", "radioactivity_concentration_of_147Pr_in_air", "radioactivity_concentration_of_147Sm_in_air", "radioactivity_concentration_of_148mPm_in_air", "radioactivity_concentration_of_148Pm_in_air", "radioactivity_concentration_of_148Sm_in_air", "radioactivity_concentration_of_149Nd_in_air", "radioactivity_concentration_of_149Pm_in_air", "radioactivity_concentration_of_149Sm_in_air", "radioactivity_concentration_of_150Pm_in_air", "radioactivity_concentration_of_151Nd_in_air", "radioactivity_concentration_of_151Pm_in_air", "radioactivity_concentration_of_151Sm_in_air", "radioactivity_concentration_of_152mPm_in_air", "radioactivity_concentration_of_152Nd_in_air", "radioactivity_concentration_of_152Pm_in_air", "radioactivity_concentration_of_153Sm_in_air", "radioactivity_concentration_of_154Eu_in_air", "radioactivity_concentration_of_155Eu_in_air", "radioactivity_concentration_of_155Sm_in_air", "radioactivity_concentration_of_156Eu_in_air", "radioactivity_concentration_of_156Sm_in_air", "radioactivity_concentration_of_157Eu_in_air", "radioactivity_concentration_of_158Eu_in_air", "radioactivity_concentration_of_159Eu_in_air", "radioactivity_concentration_of_159Gd_in_air", "radioactivity_concentration_of_15O_in_air", "radioactivity_concentration_of_160Tb_in_air", "radioactivity_concentration_of_161Tb_in_air", "radioactivity_concentration_of_162Gd_in_air", "radioactivity_concentration_of_162mTb_in_air", "radioactivity_concentration_of_162Tb_in_air", "radioactivity_concentration_of_163Tb_in_air", "radioactivity_concentration_of_165Dy_in_air", "radioactivity_concentration_of_18F_in_air", "radioactivity_concentration_of_206Hg_in_air", "radioactivity_concentration_of_206Tl_in_air", "radioactivity_concentration_of_207mPb_in_air", "radioactivity_concentration_of_207Tl_in_air", "radioactivity_concentration_of_208Tl_in_air", "radioactivity_concentration_of_209Bi_in_air", "radioactivity_concentration_of_209Pb_in_air", "radioactivity_concentration_of_209Tl_in_air", "radioactivity_concentration_of_210Bi_in_air", "radioactivity_concentration_of_210Pb_in_air", "radioactivity_concentration_of_210Po_in_air", "radioactivity_concentration_of_210Tl_in_air", "radioactivity_concentration_of_211Bi_in_air", "radioactivity_concentration_of_211Pb_in_air", "radioactivity_concentration_of_211Po_in_air", "radioactivity_concentration_of_212Bi_in_air", "radioactivity_concentration_of_212Pb_in_air", "radioactivity_concentration_of_212Po_in_air", "radioactivity_concentration_of_213Bi_in_air", "radioactivity_concentration_of_213Pb_in_air", "radioactivity_concentration_of_213Po_in_air", "radioactivity_concentration_of_214Bi_in_air", "radioactivity_concentration_of_214Pb_in_air", "radioactivity_concentration_of_214Po_in_air", "radioactivity_concentration_of_215At_in_air", "radioactivity_concentration_of_215Bi_in_air", "radioactivity_concentration_of_215Po_in_air", "radioactivity_concentration_of_216At_in_air", "radioactivity_concentration_of_216Po_in_air", "radioactivity_concentration_of_217At_in_air", "radioactivity_concentration_of_217Po_in_air", "radioactivity_concentration_of_218At_in_air", "radioactivity_concentration_of_218Po_in_air", "radioactivity_concentration_of_218Rn_in_air", "radioactivity_concentration_of_219At_in_air", "radioactivity_concentration_of_219Rn_in_air", "radioactivity_concentration_of_220Rn_in_air", "radioactivity_concentration_of_221Fr_in_air", "radioactivity_concentration_of_221Rn_in_air", "radioactivity_concentration_of_222Fr_in_air", "radioactivity_concentration_of_222Ra_in_air", "radioactivity_concentration_of_222Rn_in_air", "radioactivity_concentration_of_223Fr_in_air", "radioactivity_concentration_of_223Ra_in_air", "radioactivity_concentration_of_223Rn_in_air", "radioactivity_concentration_of_224Ra_in_air", "radioactivity_concentration_of_225Ac_in_air", "radioactivity_concentration_of_225Ra_in_air", "radioactivity_concentration_of_226Ac_in_air", "radioactivity_concentration_of_226Ra_in_air", "radioactivity_concentration_of_226Th_in_air", "radioactivity_concentration_of_227Ac_in_air", "radioactivity_concentration_of_227Ra_in_air", "radioactivity_concentration_of_227Th_in_air", "radioactivity_concentration_of_228Ac_in_air", "radioactivity_concentration_of_228Ra_in_air", "radioactivity_concentration_of_228Th_in_air", "radioactivity_concentration_of_229Ac_in_air", "radioactivity_concentration_of_229Ra_in_air", "radioactivity_concentration_of_229Th_in_air", "radioactivity_concentration_of_230Pa_in_air", "radioactivity_concentration_of_230Th_in_air", "radioactivity_concentration_of_230U_in_air", "radioactivity_concentration_of_231Pa_in_air", "radioactivity_concentration_of_231Th_in_air", "radioactivity_concentration_of_231U_in_air", "radioactivity_concentration_of_232Pa_in_air", "radioactivity_concentration_of_232Th_in_air", "radioactivity_concentration_of_232U_in_air", "radioactivity_concentration_of_233Pa_in_air", "radioactivity_concentration_of_233Th_in_air", "radioactivity_concentration_of_233U_in_air", "radioactivity_concentration_of_234mPa_in_air", "radioactivity_concentration_of_234Pa_in_air", "radioactivity_concentration_of_234Th_in_air", "radioactivity_concentration_of_234U_in_air", "radioactivity_concentration_of_235Np_in_air", "radioactivity_concentration_of_235Pu_in_air", "radioactivity_concentration_of_235U_in_air", "radioactivity_concentration_of_236mNp_in_air", "radioactivity_concentration_of_236Np_in_air", "radioactivity_concentration_of_236Pu_in_air", "radioactivity_concentration_of_236U_in_air", "radioactivity_concentration_of_237Np_in_air", "radioactivity_concentration_of_237Pu_in_air", "radioactivity_concentration_of_237U_in_air", "radioactivity_concentration_of_238Np_in_air", "radioactivity_concentration_of_238Pu_in_air", "radioactivity_concentration_of_238U_in_air", "radioactivity_concentration_of_239Np_in_air", "radioactivity_concentration_of_239Pu_in_air", "radioactivity_concentration_of_239U_in_air", "radioactivity_concentration_of_240Am_in_air", "radioactivity_concentration_of_240mNp_in_air", "radioactivity_concentration_of_240Np_in_air", "radioactivity_concentration_of_240Pu_in_air", "radioactivity_concentration_of_240U_in_air", "radioactivity_concentration_of_241Am_in_air", "radioactivity_concentration_of_241Cm_in_air", "radioactivity_concentration_of_241Pu_in_air", "radioactivity_concentration_of_242Am_in_air", "radioactivity_concentration_of_242Cm_in_air", "radioactivity_concentration_of_242m1Am_in_air", "radioactivity_concentration_of_242m2Am_in_air", "radioactivity_concentration_of_242Pu_in_air", "radioactivity_concentration_of_243Am_in_air", "radioactivity_concentration_of_243Cm_in_air", "radioactivity_concentration_of_243Pu_in_air", "radioactivity_concentration_of_244Am_in_air", "radioactivity_concentration_of_244Cm_in_air", "radioactivity_concentration_of_244mAm_in_air", "radioactivity_concentration_of_244Pu_in_air", "radioactivity_concentration_of_245Am_in_air", "radioactivity_concentration_of_245Cm_in_air", "radioactivity_concentration_of_245Pu_in_air", "radioactivity_concentration_of_246Cm_in_air", "radioactivity_concentration_of_247Cm_in_air", "radioactivity_concentration_of_248Cm_in_air", "radioactivity_concentration_of_249Bk_in_air", "radioactivity_concentration_of_249Cf_in_air", "radioactivity_concentration_of_249Cm_in_air", "radioactivity_concentration_of_24Na_in_air", "radioactivity_concentration_of_250Bk_in_air", "radioactivity_concentration_of_250Cf_in_air", "radioactivity_concentration_of_250Cm_in_air", "radioactivity_concentration_of_251Cf_in_air", "radioactivity_concentration_of_252Cf_in_air", "radioactivity_concentration_of_253Cf_in_air", "radioactivity_concentration_of_253Es_in_air", "radioactivity_concentration_of_254Cf_in_air", "radioactivity_concentration_of_254Es_in_air", "radioactivity_concentration_of_254mEs_in_air", "radioactivity_concentration_of_255Es_in_air", "radioactivity_concentration_of_3H_in_air", "radioactivity_concentration_of_41Ar_in_air", "radioactivity_concentration_of_54Mn_in_air", "radioactivity_concentration_of_58Co_in_air", "radioactivity_concentration_of_60Co_in_air", "radioactivity_concentration_of_72Ga_in_air", "radioactivity_concentration_of_72Zn_in_air", "radioactivity_concentration_of_73Ga_in_air", "radioactivity_concentration_of_75Ge_in_air", "radioactivity_concentration_of_77As_in_air", "radioactivity_concentration_of_77Ge_in_air", "radioactivity_concentration_of_77mGe_in_air", "radioactivity_concentration_of_78As_in_air", "radioactivity_concentration_of_78Ge_in_air", "radioactivity_concentration_of_79Se_in_air", "radioactivity_concentration_of_81mSe_in_air", "radioactivity_concentration_of_81Se_in_air", "radioactivity_concentration_of_82Br_in_air", "radioactivity_concentration_of_82mBr_in_air", "radioactivity_concentration_of_83Br_in_air", "radioactivity_concentration_of_83mKr_in_air", "radioactivity_concentration_of_83mSe_in_air", "radioactivity_concentration_of_83Se_in_air", "radioactivity_concentration_of_84Br_in_air", "radioactivity_concentration_of_84mBr_in_air", "radioactivity_concentration_of_85Kr_in_air", "radioactivity_concentration_of_85mKr_in_air", "radioactivity_concentration_of_86mRb_in_air", "radioactivity_concentration_of_86Rb_in_air", "radioactivity_concentration_of_87Kr_in_air", "radioactivity_concentration_of_87Rb_in_air", "radioactivity_concentration_of_88Kr_in_air", "radioactivity_concentration_of_88Rb_in_air", "radioactivity_concentration_of_89Kr_in_air", "radioactivity_concentration_of_89Rb_in_air", "radioactivity_concentration_of_89Sr_in_air", "radioactivity_concentration_of_90mY_in_air", "radioactivity_concentration_of_90Sr_in_air", "radioactivity_concentration_of_90Y_in_air", "radioactivity_concentration_of_91mY_in_air", "radioactivity_concentration_of_91Sr_in_air", "radioactivity_concentration_of_91Y_in_air", "radioactivity_concentration_of_92Sr_in_air", "radioactivity_concentration_of_92Y_in_air", "radioactivity_concentration_of_93Y_in_air", "radioactivity_concentration_of_93Zr_in_air", "radioactivity_concentration_of_94mNb_in_air", "radioactivity_concentration_of_94Nb_in_air", "radioactivity_concentration_of_94Y_in_air", "radioactivity_concentration_of_95mNb_in_air", "radioactivity_concentration_of_95Nb_in_air", "radioactivity_concentration_of_95Y_in_air", "radioactivity_concentration_of_95Zr_in_air", "radioactivity_concentration_of_96Nb_in_air", "radioactivity_concentration_of_97mNb_in_air", "radioactivity_concentration_of_97Nb_in_air", "radioactivity_concentration_of_97Zr_in_air", "radioactivity_concentration_of_98Nb_in_air", "radioactivity_concentration_of_99Mo_in_air", "radioactivity_concentration_of_99mTc_in_air", "radioactivity_concentration_of_99Tc_in_air", "radius_of_tropical_cyclone_central_dense_overcast_region", "radius_of_tropical_cyclone_eye", "radius_of_tropical_cyclone_maximum_sustained_wind_speed", "rainfall_amount", "rainfall_rate", "rate_of_change_test_quality_flag", "rate_of_hydroxyl_radical_destruction_due_to_reaction_with_nmvoc", "ratio_of_ice_volume_in_frozen_ground_to_pore_volume_in_unfrozen_ground", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "ratio_of_sea_water_practical_salinity_anomaly_to_relaxation_timescale", "ratio_of_x_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "ratio_of_y_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "realization", "reference_air_pressure_for_atmosphere_vertical_coordinate", "reference_sea_water_density_for_boussinesq_approximation", "relative_humidity", "relative_humidity_for_aerosol_particle_size_selection", "relative_platform_azimuth_angle", "relative_sensor_azimuth_angle", "richardson_number_in_sea_water", "root_depth", "root_mass_content_of_carbon", "root_mass_content_of_nitrogen", "runoff_amount", "runoff_amount_excluding_baseflow", "salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "salt_flux_into_sea_water_from_rivers", "scattering_angle", "scene_type_of_dvorak_tropical_cyclone_cloud_region", "scene_type_of_dvorak_tropical_cyclone_eye_region", "sea_area_fraction", "sea_floor_depth_below_geoid", "sea_floor_depth_below_geopotential_datum", "sea_floor_depth_below_mean_sea_level", "sea_floor_depth_below_reference_ellipsoid", "sea_floor_depth_below_sea_surface", "sea_floor_sediment_grain_size", "sea_ice_amount", "sea_ice_and_surface_snow_amount", "sea_ice_area_fraction", "sea_ice_area_transport_across_line", "sea_ice_average_normal_horizontal_stress", "sea_ice_basal_drag_coefficient_for_momentum_in_sea_water", "sea_ice_basal_temperature", "sea_ice_classification", "sea_ice_draft", "sea_ice_extent", "sea_ice_floe_diameter", "sea_ice_mass_content_of_salt", "sea_ice_melt_pond_thickness", "sea_ice_salinity", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_ice_thickness", "sea_ice_transport_across_line", "sea_ice_x_displacement", "sea_ice_x_force_per_unit_area_due_to_coriolis_effect", "sea_ice_x_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_x_internal_stress", "sea_ice_x_transport", "sea_ice_x_velocity", "sea_ice_y_displacement", "sea_ice_y_force_per_unit_area_due_to_coriolis_effect", "sea_ice_y_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_y_internal_stress", "sea_ice_y_transport", "sea_ice_y_velocity", "sea_surface_density", "sea_surface_downward_eastward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_downward_northward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_foundation_temperature", "sea_surface_height_above_geoid", "sea_surface_height_above_geopotential_datum", "sea_surface_height_above_mean_sea_level", "sea_surface_height_above_reference_ellipsoid", "sea_surface_height_amplitude_due_to_earth_tide", "sea_surface_height_amplitude_due_to_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_geocentric_ocean_tide", "sea_surface_height_amplitude_due_to_non_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_pole_tide", "sea_surface_height_bias_due_to_sea_surface_roughness", "sea_surface_height_correction_due_to_air_pressure_and_wind_at_high_frequency", "sea_surface_height_correction_due_to_air_pressure_at_low_frequency", "sea_surface_mean_square_upwave_slope_direction", "sea_surface_primary_swell_wave_directional_spread", "sea_surface_primary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_from_direction", "sea_surface_primary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_significant_height", "sea_surface_salinity", "sea_surface_secondary_swell_wave_directional_spread", "sea_surface_secondary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_from_direction", "sea_surface_secondary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_significant_height", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_swell_wave_directional_spread", "sea_surface_swell_wave_from_direction", "sea_surface_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_swell_wave_significant_height", "sea_surface_swell_wave_to_direction", "sea_surface_temperature", "sea_surface_tertiary_swell_wave_directional_spread", "sea_surface_tertiary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_from_direction", "sea_surface_tertiary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_mean_period", "sea_surface_tertiary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_significant_height", "sea_surface_wave_directional_spread", "sea_surface_wave_directional_spread_at_variance_spectral_density_maximum", "sea_surface_wave_directional_variance_spectral_density", "sea_surface_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wave_from_direction", "sea_surface_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wave_maximum_crest_height", "sea_surface_wave_maximum_height", "sea_surface_wave_maximum_steepness", "sea_surface_wave_maximum_trough_depth", "sea_surface_wave_mean_height", "sea_surface_wave_mean_height_of_highest_tenth", "sea_surface_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wave_mean_period_of_highest_tenth", "sea_surface_wave_mean_wavenumber_from_variance_spectral_density_first_wavenumber_moment", "sea_surface_wave_period_at_variance_spectral_density_maximum", "sea_surface_wave_period_of_highest_wave", "sea_surface_wave_significant_height", "sea_surface_wave_significant_period", "sea_surface_wave_stokes_drift_eastward_velocity", "sea_surface_wave_stokes_drift_northward_velocity", "sea_surface_wave_stokes_drift_speed", "sea_surface_wave_stokes_drift_to_direction", "sea_surface_wave_stokes_drift_x_velocity", "sea_surface_wave_stokes_drift_y_velocity", "sea_surface_wave_to_direction", "sea_surface_wave_variance_spectral_density", "sea_surface_wave_xx_radiation_stress", "sea_surface_wave_xy_radiation_stress", "sea_surface_wave_yy_radiation_stress", "sea_surface_wind_wave_directional_spread", "sea_surface_wind_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wind_wave_from_direction", "sea_surface_wind_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wind_wave_period_at_variance_spectral_density_maximum", "sea_surface_wind_wave_significant_height", "sea_surface_wind_wave_to_direction", "sea_water_absolute_salinity", "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", "sea_water_age_since_surface_contact", "sea_water_alkalinity_expressed_as_mole_equivalent", "sea_water_alkalinity_natural_analogue_expressed_as_mole_equivalent", "sea_water_conservative_temperature", "sea_water_cox_salinity", "sea_water_density", "sea_water_electrical_conductivity", "sea_water_knudsen_salinity", "sea_water_mass", "sea_water_mass_per_unit_area", "sea_water_mass_per_unit_area_expressed_as_thickness", "sea_water_neutral_density", "sea_water_ph_abiotic_analogue_reported_on_total_scale", "sea_water_ph_natural_analogue_reported_on_total_scale", "sea_water_ph_reported_on_total_scale", "sea_water_potential_density", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_practical_salinity", "sea_water_practical_salinity_at_sea_floor", "sea_water_preformed_salinity", "sea_water_pressure", "sea_water_pressure_at_sea_floor", "sea_water_pressure_at_sea_water_surface", "sea_water_pressure_due_to_sea_water", "sea_water_redistributed_conservative_temperature", "sea_water_redistributed_potential_temperature", "sea_water_reference_salinity", "sea_water_salinity", "sea_water_salinity_at_sea_floor", "sea_water_sigma_t", "sea_water_sigma_t_difference", "sea_water_sigma_theta", "sea_water_sigma_theta_difference", "sea_water_specific_potential_enthalpy", "sea_water_speed", "sea_water_speed_at_sea_floor", "sea_water_speed_due_to_tides", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "sea_water_transport_across_line", "sea_water_turbidity", "sea_water_velocity_from_direction", "sea_water_velocity_to_direction", "sea_water_velocity_to_direction_at_sea_floor", "sea_water_velocity_to_direction_due_to_tides", "sea_water_volume", "sea_water_x_velocity", "sea_water_x_velocity_due_to_parameterized_mesoscale_eddies", "sea_water_y_velocity", "sea_water_y_velocity_due_to_parameterized_mesoscale_eddies", "secchi_depth_of_sea_water", "sensor_azimuth_angle", "sensor_band_central_radiation_frequency", "sensor_band_central_radiation_wavelength", "sensor_band_central_radiation_wavenumber", "sensor_band_identifier", "sensor_zenith_angle", "shallow_convection_time_fraction", "shallow_convective_cloud_base_altitude", "shallow_convective_cloud_top_altitude", "shallow_convective_precipitation_flux", "signal_intensity_from_multibeam_acoustic_doppler_velocity_sensor_in_sea_water", "single_scattering_albedo_in_air_due_to_ambient_aerosol_particles", "sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_iron_in_sea_water", "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_organic_nitrogen_in_sea_water", "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", "sinking_mole_flux_of_particulate_silicon_in_sea_water", "slow_soil_pool_mass_content_of_carbon", "snow_area_fraction_viewable_from_above", "snowfall_amount", "snow_transport_across_line_due_to_sea_ice_dynamics", "soil_frozen_water_content", "soil_hydraulic_conductivity_at_saturation", "soil_mass_content_of_13C", "soil_mass_content_of_14C", "soil_mass_content_of_carbon", "soil_mass_content_of_inorganic_ammonium_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrate_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", "soil_mass_content_of_nitrogen", "soil_moisture_content_at_field_capacity", "soil_pool_carbon_decay_rate", "soil_porosity", "soil_suction_at_saturation", "soil_temperature", "soil_thermal_capacity", "soil_thermal_conductivity", "soil_type", "soil_water_ph", "solar_azimuth_angle", "solar_elevation_angle", "solar_irradiance_per_unit_wavelength", "solar_zenith_angle", "solid_precipitation_flux", "solid_precipitation_flux_containing_17O", "solid_precipitation_flux_containing_18O", "solid_precipitation_flux_containing_single_2H", "soot_content_of_surface_snow", "sound_intensity_in_air", "sound_intensity_in_water", "sound_intensity_level_in_air", "sound_intensity_level_in_water", "sound_pressure_in_water", "sound_pressure_level_in_water", "specific_gravitational_potential_energy", "specific_heat_capacity_of_frozen_ground", "specific_heat_capacity_of_sea_water", "specific_humidity", "specific_kinetic_energy_of_air", "specific_kinetic_energy_of_sea_water", "specific_turbulent_kinetic_energy_dissipation_in_sea_water", "specific_turbulent_kinetic_energy_of_sea_water", "speed_of_sound_in_sea_water", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_below_threshold", "spike_test_quality_flag", "square_of_air_temperature", "square_of_brunt_vaisala_frequency_in_air", "square_of_brunt_vaisala_frequency_in_sea_water", "square_of_eastward_wind", "square_of_geopotential_height", "square_of_lagrangian_tendency_of_air_pressure", "square_of_northward_wind", "square_of_ocean_mixed_layer_thickness_defined_by_sigma_t", "square_of_sea_surface_height_above_geoid", "square_of_sea_surface_salinity", "square_of_sea_surface_temperature", "square_of_upward_air_velocity", "square_of_upward_ocean_mass_transport", "status_flag", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "steric_change_in_mean_sea_level", "steric_change_in_sea_surface_height", "storm_motion_speed", "stratiform_cloud_area_fraction", "stratiform_cloud_area_fraction_in_atmosphere_layer", "stratiform_cloud_longwave_emissivity", "stratiform_graupel_fall_amount", "stratiform_graupel_flux", "stratiform_precipitation_amount", "stratiform_precipitation_flux", "stratiform_rainfall_amount", "stratiform_rainfall_flux", "stratiform_rainfall_rate", "stratiform_snowfall_amount", "stratiform_snowfall_flux", "stratosphere_mole_content_of_nitrogen_dioxide", "stratosphere_optical_thickness_due_to_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_volcanic_ambient_aerosol_particles", "subsurface_litter_mass_content_of_carbon", "subsurface_litter_mass_content_of_nitrogen", "subsurface_runoff_amount", "sunglint_angle", "sunlit_binary_mask", "surface_altitude", "surface_backwards_scattering_coefficient_of_radar_wave", "surface_bidirectional_reflectance", "surface_brightness_temperature", "surface_carbon_dioxide_abiotic_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_natural_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_partial_pressure_difference_between_air_and_sea_water", "surface_carbon_dioxide_partial_pressure_difference_between_sea_water_and_air", "surface_diffuse_downwelling_photosynthetic_radiative_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_diffuse_shortwave_hemispherical_reflectance", "surface_direct_along_beam_shortwave_flux_in_air", "surface_direct_downwelling_shortwave_flux_in_air", "surface_direct_shortwave_hemispherical_reflectance", "surface_downward_eastward_stress", "surface_downward_eastward_stress_due_to_boundary_layer_mixing", "surface_downward_eastward_stress_due_to_ocean_viscous_dissipation", "surface_downward_eastward_stress_due_to_sea_surface_waves", "surface_downward_heat_flux_in_air", "surface_downward_heat_flux_in_sea_ice", "surface_downward_heat_flux_in_sea_water", "surface_downward_heat_flux_in_snow", "surface_downward_latent_heat_flux", "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_natural_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_methane_due_to_wetland_biological_consumption", "surface_downward_mass_flux_of_water_due_to_irrigation", "surface_downward_northward_stress", "surface_downward_northward_stress_due_to_boundary_layer_mixing", "surface_downward_northward_stress_due_to_ocean_viscous_dissipation", "surface_downward_northward_stress_due_to_sea_surface_waves", "surface_downward_sensible_heat_flux", "surface_downward_water_flux", "surface_downward_x_stress", "surface_downward_x_stress_correction", "surface_downward_y_stress", "surface_downward_y_stress_correction", "surface_downwelling_longwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_photon_flux_in_sea_water", "surface_downwelling_photon_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_radiance_in_sea_water", "surface_downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photosynthetic_photon_flux_in_air", "surface_downwelling_photosynthetic_photon_flux_in_sea_water", "surface_downwelling_photosynthetic_photon_radiance_in_sea_water", "surface_downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photosynthetic_radiance_in_sea_water", "surface_downwelling_photosynthetic_radiative_flux_in_air", "surface_downwelling_photosynthetic_radiative_flux_in_sea_water", "surface_downwelling_photosynthetic_spherical_irradiance_in_sea_water", "surface_downwelling_radiance_in_sea_water", "surface_downwelling_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_radiative_flux_in_sea_water", "surface_downwelling_radiative_flux_per_unit_wavelength_in_air", "surface_downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_shortwave_flux_in_air", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_downwelling_shortwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_spherical_irradiance_in_sea_water", "surface_downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_drag_coefficient_for_heat_in_air", "surface_drag_coefficient_for_momentum_in_air", "surface_drag_coefficient_in_air", "surface_eastward_sea_water_velocity", "surface_frozen_carbon_dioxide_amount", "surface_geopotential", "surface_geostrophic_eastward_sea_water_velocity", "surface_geostrophic_eastward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_northward_sea_water_velocity", "surface_geostrophic_northward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_x_velocity", "surface_geostrophic_sea_water_x_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_y_velocity", "surface_geostrophic_sea_water_y_velocity_assuming_mean_sea_level_for_geoid", "surface_height_above_geopotential_datum", "surface_litter_mass_content_of_carbon", "surface_litter_mass_content_of_nitrogen", "surface_longwave_emissivity", "surface_microwave_emissivity", "surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_longwave_flux", "surface_net_downward_longwave_flux_assuming_clear_sky", "surface_net_downward_mass_flux_of_ammonia_due_to_bidirectional_surface_exchange", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change", "surface_net_downward_radiative_flux", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_shortwave_flux", "surface_net_downward_shortwave_flux_assuming_clear_sky", "surface_net_upward_longwave_flux", "surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change", "surface_net_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_processes", "surface_net_upward_radiative_flux", "surface_net_upward_shortwave_flux", "surface_northward_sea_water_velocity", "surface_partial_pressure_of_carbon_dioxide_abiotic_analogue_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_in_air", "surface_partial_pressure_of_carbon_dioxide_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_natural_analogue_in_sea_water", "surface_radioactivity_content", "surface_radioactivity_content_of_101Mo", "surface_radioactivity_content_of_101Tc", "surface_radioactivity_content_of_102Mo", "surface_radioactivity_content_of_102mTc", "surface_radioactivity_content_of_102Tc", "surface_radioactivity_content_of_103mRh", "surface_radioactivity_content_of_103Ru", "surface_radioactivity_content_of_104Tc", "surface_radioactivity_content_of_105mRh", "surface_radioactivity_content_of_105Rh", "surface_radioactivity_content_of_105Ru", "surface_radioactivity_content_of_106mRh", "surface_radioactivity_content_of_106Rh", "surface_radioactivity_content_of_106Ru", "surface_radioactivity_content_of_107mPd", "surface_radioactivity_content_of_107Pd", "surface_radioactivity_content_of_107Rh", "surface_radioactivity_content_of_109mAg", "surface_radioactivity_content_of_109Pd", "surface_radioactivity_content_of_110mAg", "surface_radioactivity_content_of_111Ag", "surface_radioactivity_content_of_111mAg", "surface_radioactivity_content_of_111mCd", "surface_radioactivity_content_of_111mPd", "surface_radioactivity_content_of_111Pd", "surface_radioactivity_content_of_112Ag", "surface_radioactivity_content_of_112Pd", "surface_radioactivity_content_of_113Ag", "surface_radioactivity_content_of_113Cd", "surface_radioactivity_content_of_113mAg", "surface_radioactivity_content_of_113mCd", "surface_radioactivity_content_of_113mIn", "surface_radioactivity_content_of_115Ag", "surface_radioactivity_content_of_115Cd", "surface_radioactivity_content_of_115In", "surface_radioactivity_content_of_115mAg", "surface_radioactivity_content_of_115mCd", "surface_radioactivity_content_of_115mIn", "surface_radioactivity_content_of_116In", "surface_radioactivity_content_of_116mIn", "surface_radioactivity_content_of_117Cd", "surface_radioactivity_content_of_117In", "surface_radioactivity_content_of_117mCd", "surface_radioactivity_content_of_117mIn", "surface_radioactivity_content_of_117mSn", "surface_radioactivity_content_of_118Cd", "surface_radioactivity_content_of_118In", "surface_radioactivity_content_of_118mIn", "surface_radioactivity_content_of_119In", "surface_radioactivity_content_of_119mIn", "surface_radioactivity_content_of_119mSn", "surface_radioactivity_content_of_11C", "surface_radioactivity_content_of_121mSn", "surface_radioactivity_content_of_121Sn", "surface_radioactivity_content_of_123mSn", "surface_radioactivity_content_of_123Sn", "surface_radioactivity_content_of_124mSb", "surface_radioactivity_content_of_124Sb", "surface_radioactivity_content_of_125mTe", "surface_radioactivity_content_of_125Sb", "surface_radioactivity_content_of_125Sn", "surface_radioactivity_content_of_126mSb", "surface_radioactivity_content_of_126Sb", "surface_radioactivity_content_of_126Sn", "surface_radioactivity_content_of_127mTe", "surface_radioactivity_content_of_127Sb", "surface_radioactivity_content_of_127Sn", "surface_radioactivity_content_of_127Te", "surface_radioactivity_content_of_128mSb", "surface_radioactivity_content_of_128Sb", "surface_radioactivity_content_of_128Sn", "surface_radioactivity_content_of_129I", "surface_radioactivity_content_of_129mTe", "surface_radioactivity_content_of_129mXe", "surface_radioactivity_content_of_129Sb", "surface_radioactivity_content_of_129Te", "surface_radioactivity_content_of_130I", "surface_radioactivity_content_of_130mI", "surface_radioactivity_content_of_130mSb", "surface_radioactivity_content_of_130Sb", "surface_radioactivity_content_of_130Sn", "surface_radioactivity_content_of_131I", "surface_radioactivity_content_of_131mTe", "surface_radioactivity_content_of_131mXe", "surface_radioactivity_content_of_131Sb", "surface_radioactivity_content_of_131Te", "surface_radioactivity_content_of_132I", "surface_radioactivity_content_of_132Te", "surface_radioactivity_content_of_133I", "surface_radioactivity_content_of_133mI", "surface_radioactivity_content_of_133mTe", "surface_radioactivity_content_of_133mXe", "surface_radioactivity_content_of_133Te", "surface_radioactivity_content_of_133Xe", "surface_radioactivity_content_of_134Cs", "surface_radioactivity_content_of_134I", "surface_radioactivity_content_of_134mCs", "surface_radioactivity_content_of_134mI", "surface_radioactivity_content_of_134mXe", "surface_radioactivity_content_of_134Te", "surface_radioactivity_content_of_135Cs", "surface_radioactivity_content_of_135I", "surface_radioactivity_content_of_135mBa", "surface_radioactivity_content_of_135mCs", "surface_radioactivity_content_of_135mXe", "surface_radioactivity_content_of_135Xe", "surface_radioactivity_content_of_136Cs", "surface_radioactivity_content_of_137Cs", "surface_radioactivity_content_of_137mBa", "surface_radioactivity_content_of_137Xe", "surface_radioactivity_content_of_138Cs", "surface_radioactivity_content_of_138Xe", "surface_radioactivity_content_of_139Ba", "surface_radioactivity_content_of_13N", "surface_radioactivity_content_of_140Ba", "surface_radioactivity_content_of_140La", "surface_radioactivity_content_of_141Ce", "surface_radioactivity_content_of_141La", "surface_radioactivity_content_of_142Ce", "surface_radioactivity_content_of_142La", "surface_radioactivity_content_of_142mPr", "surface_radioactivity_content_of_142Pr", "surface_radioactivity_content_of_143Ce", "surface_radioactivity_content_of_143La", "surface_radioactivity_content_of_143Pr", "surface_radioactivity_content_of_144Ce", "surface_radioactivity_content_of_144mPr", "surface_radioactivity_content_of_144Nd", "surface_radioactivity_content_of_144Pr", "surface_radioactivity_content_of_145Pr", "surface_radioactivity_content_of_146Ce", "surface_radioactivity_content_of_146Pr", "surface_radioactivity_content_of_147Nd", "surface_radioactivity_content_of_147Pm", "surface_radioactivity_content_of_147Pr", "surface_radioactivity_content_of_147Sm", "surface_radioactivity_content_of_148mPm", "surface_radioactivity_content_of_148Pm", "surface_radioactivity_content_of_148Sm", "surface_radioactivity_content_of_149Nd", "surface_radioactivity_content_of_149Pm", "surface_radioactivity_content_of_149Sm", "surface_radioactivity_content_of_150Pm", "surface_radioactivity_content_of_151Nd", "surface_radioactivity_content_of_151Pm", "surface_radioactivity_content_of_151Sm", "surface_radioactivity_content_of_152mPm", "surface_radioactivity_content_of_152Nd", "surface_radioactivity_content_of_152Pm", "surface_radioactivity_content_of_153Sm", "surface_radioactivity_content_of_154Eu", "surface_radioactivity_content_of_155Eu", "surface_radioactivity_content_of_155Sm", "surface_radioactivity_content_of_156Eu", "surface_radioactivity_content_of_156Sm", "surface_radioactivity_content_of_157Eu", "surface_radioactivity_content_of_158Eu", "surface_radioactivity_content_of_159Eu", "surface_radioactivity_content_of_159Gd", "surface_radioactivity_content_of_15O", "surface_radioactivity_content_of_160Tb", "surface_radioactivity_content_of_161Tb", "surface_radioactivity_content_of_162Gd", "surface_radioactivity_content_of_162mTb", "surface_radioactivity_content_of_162Tb", "surface_radioactivity_content_of_163Tb", "surface_radioactivity_content_of_165Dy", "surface_radioactivity_content_of_18F", "surface_radioactivity_content_of_206Hg", "surface_radioactivity_content_of_206Tl", "surface_radioactivity_content_of_207mPb", "surface_radioactivity_content_of_207Tl", "surface_radioactivity_content_of_208Tl", "surface_radioactivity_content_of_209Bi", "surface_radioactivity_content_of_209Pb", "surface_radioactivity_content_of_209Tl", "surface_radioactivity_content_of_210Bi", "surface_radioactivity_content_of_210Pb", "surface_radioactivity_content_of_210Po", "surface_radioactivity_content_of_210Tl", "surface_radioactivity_content_of_211Bi", "surface_radioactivity_content_of_211Pb", "surface_radioactivity_content_of_211Po", "surface_radioactivity_content_of_212Bi", "surface_radioactivity_content_of_212Pb", "surface_radioactivity_content_of_212Po", "surface_radioactivity_content_of_213Bi", "surface_radioactivity_content_of_213Pb", "surface_radioactivity_content_of_213Po", "surface_radioactivity_content_of_214Bi", "surface_radioactivity_content_of_214Pb", "surface_radioactivity_content_of_214Po", "surface_radioactivity_content_of_215At", "surface_radioactivity_content_of_215Bi", "surface_radioactivity_content_of_215Po", "surface_radioactivity_content_of_216At", "surface_radioactivity_content_of_216Po", "surface_radioactivity_content_of_217At", "surface_radioactivity_content_of_217Po", "surface_radioactivity_content_of_218At", "surface_radioactivity_content_of_218Po", "surface_radioactivity_content_of_218Rn", "surface_radioactivity_content_of_219At", "surface_radioactivity_content_of_219Rn", "surface_radioactivity_content_of_220Rn", "surface_radioactivity_content_of_221Fr", "surface_radioactivity_content_of_221Rn", "surface_radioactivity_content_of_222Fr", "surface_radioactivity_content_of_222Ra", "surface_radioactivity_content_of_222Rn", "surface_radioactivity_content_of_223Fr", "surface_radioactivity_content_of_223Ra", "surface_radioactivity_content_of_223Rn", "surface_radioactivity_content_of_224Ra", "surface_radioactivity_content_of_225Ac", "surface_radioactivity_content_of_225Ra", "surface_radioactivity_content_of_226Ac", "surface_radioactivity_content_of_226Ra", "surface_radioactivity_content_of_226Th", "surface_radioactivity_content_of_227Ac", "surface_radioactivity_content_of_227Ra", "surface_radioactivity_content_of_227Th", "surface_radioactivity_content_of_228Ac", "surface_radioactivity_content_of_228Ra", "surface_radioactivity_content_of_228Th", "surface_radioactivity_content_of_229Ac", "surface_radioactivity_content_of_229Ra", "surface_radioactivity_content_of_229Th", "surface_radioactivity_content_of_230Pa", "surface_radioactivity_content_of_230Th", "surface_radioactivity_content_of_230U", "surface_radioactivity_content_of_231Pa", "surface_radioactivity_content_of_231Th", "surface_radioactivity_content_of_231U", "surface_radioactivity_content_of_232Pa", "surface_radioactivity_content_of_232Th", "surface_radioactivity_content_of_232U", "surface_radioactivity_content_of_233Pa", "surface_radioactivity_content_of_233Th", "surface_radioactivity_content_of_233U", "surface_radioactivity_content_of_234mPa", "surface_radioactivity_content_of_234Pa", "surface_radioactivity_content_of_234Th", "surface_radioactivity_content_of_234U", "surface_radioactivity_content_of_235Np", "surface_radioactivity_content_of_235Pu", "surface_radioactivity_content_of_235U", "surface_radioactivity_content_of_236mNp", "surface_radioactivity_content_of_236Np", "surface_radioactivity_content_of_236Pu", "surface_radioactivity_content_of_236U", "surface_radioactivity_content_of_237Np", "surface_radioactivity_content_of_237Pu", "surface_radioactivity_content_of_237U", "surface_radioactivity_content_of_238Np", "surface_radioactivity_content_of_238Pu", "surface_radioactivity_content_of_238U", "surface_radioactivity_content_of_239Np", "surface_radioactivity_content_of_239Pu", "surface_radioactivity_content_of_239U", "surface_radioactivity_content_of_240Am", "surface_radioactivity_content_of_240mNp", "surface_radioactivity_content_of_240Np", "surface_radioactivity_content_of_240Pu", "surface_radioactivity_content_of_240U", "surface_radioactivity_content_of_241Am", "surface_radioactivity_content_of_241Cm", "surface_radioactivity_content_of_241Pu", "surface_radioactivity_content_of_242Am", "surface_radioactivity_content_of_242Cm", "surface_radioactivity_content_of_242m1Am", "surface_radioactivity_content_of_242m2Am", "surface_radioactivity_content_of_242Pu", "surface_radioactivity_content_of_243Am", "surface_radioactivity_content_of_243Cm", "surface_radioactivity_content_of_243Pu", "surface_radioactivity_content_of_244Am", "surface_radioactivity_content_of_244Cm", "surface_radioactivity_content_of_244mAm", "surface_radioactivity_content_of_244Pu", "surface_radioactivity_content_of_245Am", "surface_radioactivity_content_of_245Cm", "surface_radioactivity_content_of_245Pu", "surface_radioactivity_content_of_246Cm", "surface_radioactivity_content_of_247Cm", "surface_radioactivity_content_of_248Cm", "surface_radioactivity_content_of_249Bk", "surface_radioactivity_content_of_249Cf", "surface_radioactivity_content_of_249Cm", "surface_radioactivity_content_of_24Na", "surface_radioactivity_content_of_250Bk", "surface_radioactivity_content_of_250Cf", "surface_radioactivity_content_of_250Cm", "surface_radioactivity_content_of_251Cf", "surface_radioactivity_content_of_252Cf", "surface_radioactivity_content_of_253Cf", "surface_radioactivity_content_of_253Es", "surface_radioactivity_content_of_254Cf", "surface_radioactivity_content_of_254Es", "surface_radioactivity_content_of_254mEs", "surface_radioactivity_content_of_255Es", "surface_radioactivity_content_of_3H", "surface_radioactivity_content_of_41Ar", "surface_radioactivity_content_of_54Mn", "surface_radioactivity_content_of_58Co", "surface_radioactivity_content_of_60Co", "surface_radioactivity_content_of_72Ga", "surface_radioactivity_content_of_72Zn", "surface_radioactivity_content_of_73Ga", "surface_radioactivity_content_of_75Ge", "surface_radioactivity_content_of_77As", "surface_radioactivity_content_of_77Ge", "surface_radioactivity_content_of_77mGe", "surface_radioactivity_content_of_78As", "surface_radioactivity_content_of_78Ge", "surface_radioactivity_content_of_79Se", "surface_radioactivity_content_of_81mSe", "surface_radioactivity_content_of_81Se", "surface_radioactivity_content_of_82Br", "surface_radioactivity_content_of_82mBr", "surface_radioactivity_content_of_83Br", "surface_radioactivity_content_of_83mKr", "surface_radioactivity_content_of_83mSe", "surface_radioactivity_content_of_83Se", "surface_radioactivity_content_of_84Br", "surface_radioactivity_content_of_84mBr", "surface_radioactivity_content_of_85Kr", "surface_radioactivity_content_of_85mKr", "surface_radioactivity_content_of_86mRb", "surface_radioactivity_content_of_86Rb", "surface_radioactivity_content_of_87Kr", "surface_radioactivity_content_of_87Rb", "surface_radioactivity_content_of_88Kr", "surface_radioactivity_content_of_88Rb", "surface_radioactivity_content_of_89Kr", "surface_radioactivity_content_of_89Rb", "surface_radioactivity_content_of_89Sr", "surface_radioactivity_content_of_90mY", "surface_radioactivity_content_of_90Sr", "surface_radioactivity_content_of_90Y", "surface_radioactivity_content_of_91mY", "surface_radioactivity_content_of_91Sr", "surface_radioactivity_content_of_91Y", "surface_radioactivity_content_of_92Sr", "surface_radioactivity_content_of_92Y", "surface_radioactivity_content_of_93Y", "surface_radioactivity_content_of_93Zr", "surface_radioactivity_content_of_94mNb", "surface_radioactivity_content_of_94Nb", "surface_radioactivity_content_of_94Y", "surface_radioactivity_content_of_95mNb", "surface_radioactivity_content_of_95Nb", "surface_radioactivity_content_of_95Y", "surface_radioactivity_content_of_95Zr", "surface_radioactivity_content_of_96Nb", "surface_radioactivity_content_of_97mNb", "surface_radioactivity_content_of_97Nb", "surface_radioactivity_content_of_97Zr", "surface_radioactivity_content_of_98Nb", "surface_radioactivity_content_of_99Mo", "surface_radioactivity_content_of_99mTc", "surface_radioactivity_content_of_99Tc", "surface_ratio_of_upwelling_radiance_emerging_from_sea_water_to_downwelling_radiative_flux_in_air", "surface_roughness_length", "surface_roughness_length_for_heat_in_air", "surface_roughness_length_for_humidity_in_air", "surface_roughness_length_for_momentum_in_air", "surface_runoff_amount", "surface_snow_amount", "surface_snow_and_ice_melt_flux", "surface_snow_and_ice_melt_heat_flux", "surface_snow_area_fraction", "surface_snow_density", "surface_snow_melt_amount", "surface_snow_melt_and_sublimation_heat_flux", "surface_snow_melt_flux", "surface_snow_melt_heat_flux", "surface_snow_sublimation_amount", "surface_snow_sublimation_heat_flux", "surface_snow_thickness", "surface_specific_humidity", "surface_temperature", "surface_temperature_anomaly", "surface_upward_eastward_stress_due_to_sea_surface_waves", "surface_upward_heat_flux_due_to_anthropogenic_energy_consumption", "surface_upward_heat_flux_in_air", "surface_upward_latent_heat_flux", "surface_upward_latent_heat_flux_due_to_sublimation", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change_excluding_forestry_and_agricultural_products", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_grazing", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_litter_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_vegetation_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_growth", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_maintenance", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_leaves", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_miscellaneous_living_matter", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_roots", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_respiration_in_soil", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_litter", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_soil", "surface_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_production", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_all_land_processes_excluding_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_emission_from_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mole_flux_of_dimethyl_sulfide", "surface_upward_northward_stress_due_to_sea_surface_waves", "surface_upward_sensible_heat_flux", "surface_upward_water_flux", "surface_upward_water_vapor_flux_in_air", "surface_upwelling_photosynthetic_photon_flux_in_air", "surface_upwelling_radiance_in_air_emerging_from_sea_water", "surface_upwelling_radiance_in_air_reflected_by_sea_water", "surface_upwelling_radiance_in_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air", "surface_upwelling_radiance_per_unit_wavelength_in_air_emerging_from_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air_reflected_by_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_sea_water", "surface_upwelling_radiative_flux_per_unit_wavelength_in_air", "surface_upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_upwelling_shortwave_flux_in_air", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_water_amount", "surface_water_evaporation_flux", "syntax_test_quality_flag", "temperature_at_base_of_ice_sheet_model", "temperature_at_top_of_ice_sheet_model", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically_from_the_surface", "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "tendency_of_air_density", "tendency_of_air_pressure", "tendency_of_air_temperature", "tendency_of_air_temperature_due_to_advection", "tendency_of_air_temperature_due_to_boundary_layer_mixing", "tendency_of_air_temperature_due_to_convection", "tendency_of_air_temperature_due_to_diabatic_processes", "tendency_of_air_temperature_due_to_diffusion", "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", "tendency_of_air_temperature_due_to_dry_convection", "tendency_of_air_temperature_due_to_longwave_heating", "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_model_physics", "tendency_of_air_temperature_due_to_moist_convection", "tendency_of_air_temperature_due_to_radiative_heating", "tendency_of_air_temperature_due_to_shortwave_heating", "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_air_temperature_due_to_stratiform_precipitation", "tendency_of_air_temperature_due_to_turbulence", "tendency_of_atmosphere_dry_energy_content", "tendency_of_atmosphere_enthalpy_content_due_to_advection", "tendency_of_atmosphere_kinetic_energy_content_due_to_advection", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetone_due_to_emission", "tendency_of_atmosphere_mass_content_of_aceto_nitrile_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alkanes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alkenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alpha_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_aromatic_compounds_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_beta_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_forestry_and_agricultural_products", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_tetrachloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113a_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc114_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc115_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc11_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc12_due_to_emission", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_halon1202_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1211_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1301_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon2402_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcc140a_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc141b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc142b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc22_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_emission", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_limonene_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_methanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_bromide_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_chloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_monoterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_land_use_or_land_cover_change", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_soil", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition_into_stomata", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_peroxyacetyl_nitrate_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_peroxynitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_radon_due_to_emission", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sesquiterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_aqueous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_gaseous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_trimethylbenzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_water_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_deep_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_shallow_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_turbulence", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_per_unit_area", "tendency_of_atmosphere_mass_per_unit_area_due_to_advection", "tendency_of_atmosphere_mole_concentration_of_carbon_monoxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_nitrous_oxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_production", "tendency_of_atmosphere_moles_of_acetic_acid", "tendency_of_atmosphere_moles_of_aceto_nitrile", "tendency_of_atmosphere_moles_of_alpha_hexachlorocyclohexane", "tendency_of_atmosphere_moles_of_alpha_pinene", "tendency_of_atmosphere_moles_of_ammonia", "tendency_of_atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_atomic_bromine", "tendency_of_atmosphere_moles_of_atomic_chlorine", "tendency_of_atmosphere_moles_of_atomic_nitrogen", "tendency_of_atmosphere_moles_of_benzene", "tendency_of_atmosphere_moles_of_beta_pinene", "tendency_of_atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_bromine_chloride", "tendency_of_atmosphere_moles_of_bromine_monoxide", "tendency_of_atmosphere_moles_of_bromine_nitrate", "tendency_of_atmosphere_moles_of_brox_expressed_as_bromine", "tendency_of_atmosphere_moles_of_butane", "tendency_of_atmosphere_moles_of_carbon_dioxide", "tendency_of_atmosphere_moles_of_carbon_monoxide", "tendency_of_atmosphere_moles_of_carbon_tetrachloride", "tendency_of_atmosphere_moles_of_cfc11", "tendency_of_atmosphere_moles_of_cfc113", "tendency_of_atmosphere_moles_of_cfc113a", "tendency_of_atmosphere_moles_of_cfc114", "tendency_of_atmosphere_moles_of_cfc115", "tendency_of_atmosphere_moles_of_cfc12", "tendency_of_atmosphere_moles_of_chlorine_dioxide", "tendency_of_atmosphere_moles_of_chlorine_monoxide", "tendency_of_atmosphere_moles_of_chlorine_nitrate", "tendency_of_atmosphere_moles_of_clox_expressed_as_chlorine", "tendency_of_atmosphere_moles_of_dichlorine_peroxide", "tendency_of_atmosphere_moles_of_dimethyl_sulfide", "tendency_of_atmosphere_moles_of_dinitrogen_pentoxide", "tendency_of_atmosphere_moles_of_ethane", "tendency_of_atmosphere_moles_of_ethanol", "tendency_of_atmosphere_moles_of_ethene", "tendency_of_atmosphere_moles_of_ethyne", "tendency_of_atmosphere_moles_of_formaldehyde", "tendency_of_atmosphere_moles_of_formic_acid", "tendency_of_atmosphere_moles_of_gaseous_divalent_mercury", "tendency_of_atmosphere_moles_of_gaseous_elemental_mercury", "tendency_of_atmosphere_moles_of_halon1202", "tendency_of_atmosphere_moles_of_halon1211", "tendency_of_atmosphere_moles_of_halon1301", "tendency_of_atmosphere_moles_of_halon2402", "tendency_of_atmosphere_moles_of_hcc140a", "tendency_of_atmosphere_moles_of_hcfc141b", "tendency_of_atmosphere_moles_of_hcfc142b", "tendency_of_atmosphere_moles_of_hcfc22", "tendency_of_atmosphere_moles_of_hexachlorobiphenyl", "tendency_of_atmosphere_moles_of_hox_expressed_as_hydrogen", "tendency_of_atmosphere_moles_of_hydrogen_bromide", "tendency_of_atmosphere_moles_of_hydrogen_chloride", "tendency_of_atmosphere_moles_of_hydrogen_cyanide", "tendency_of_atmosphere_moles_of_hydrogen_peroxide", "tendency_of_atmosphere_moles_of_hydroperoxyl_radical", "tendency_of_atmosphere_moles_of_hydroxyl_radical", "tendency_of_atmosphere_moles_of_hypobromous_acid", "tendency_of_atmosphere_moles_of_hypochlorous_acid", "tendency_of_atmosphere_moles_of_inorganic_bromine", "tendency_of_atmosphere_moles_of_inorganic_chlorine", "tendency_of_atmosphere_moles_of_isoprene", "tendency_of_atmosphere_moles_of_limonene", "tendency_of_atmosphere_moles_of_methane", "tendency_of_atmosphere_moles_of_methanol", "tendency_of_atmosphere_moles_of_methyl_bromide", "tendency_of_atmosphere_moles_of_methyl_chloride", "tendency_of_atmosphere_moles_of_methyl_hydroperoxide", "tendency_of_atmosphere_moles_of_methyl_peroxy_radical", "tendency_of_atmosphere_moles_of_molecular_hydrogen", "tendency_of_atmosphere_moles_of_nitrate_radical", "tendency_of_atmosphere_moles_of_nitric_acid", "tendency_of_atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "tendency_of_atmosphere_moles_of_nitrogen_dioxide", "tendency_of_atmosphere_moles_of_nitrogen_monoxide", "tendency_of_atmosphere_moles_of_nitrous_acid", "tendency_of_atmosphere_moles_of_nitrous_oxide", "tendency_of_atmosphere_moles_of_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_nox_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_noy_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_ozone", "tendency_of_atmosphere_moles_of_peroxyacetyl_nitrate", "tendency_of_atmosphere_moles_of_peroxynitric_acid", "tendency_of_atmosphere_moles_of_propane", "tendency_of_atmosphere_moles_of_propene", "tendency_of_atmosphere_moles_of_radon", "tendency_of_atmosphere_moles_of_sulfate_dry_aerosol_particles", "tendency_of_atmosphere_moles_of_sulfur_dioxide", "tendency_of_atmosphere_moles_of_toluene", "tendency_of_atmosphere_moles_of_water_vapor", "tendency_of_atmosphere_moles_of_xylene", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_potential_energy_content_due_to_advection", "tendency_of_bedrock_altitude", "tendency_of_canopy_water_amount_due_to_evaporation_of_intercepted_precipitation", "tendency_of_change_in_land_ice_amount", "tendency_of_dry_energy_content_of_atmosphere_layer", "tendency_of_dry_static_energy_content_of_atmosphere_layer", "tendency_of_eastward_wind", "tendency_of_eastward_wind_due_to_advection", "tendency_of_eastward_wind_due_to_advection_by_northward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_advection_by_upward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_convection", "tendency_of_eastward_wind_due_to_diffusion", "tendency_of_eastward_wind_due_to_eliassen_palm_flux_divergence", "tendency_of_eastward_wind_due_to_gravity_wave_drag", "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_eastward_wind_due_to_numerical_artefacts", "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_enthalpy_content_of_atmosphere_layer_due_to_advection", "tendency_of_global_average_sea_level_change", "tendency_of_kinetic_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_land_ice_mass", "tendency_of_land_ice_mass_due_to_basal_mass_balance", "tendency_of_land_ice_mass_due_to_calving", "tendency_of_land_ice_mass_due_to_surface_mass_balance", "tendency_of_land_ice_thickness", "tendency_of_mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_dioxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nox_expressed_as_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_deep_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_shallow_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_turbulence", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_convective_cloud_ice_in_air", "tendency_of_mass_fraction_of_convective_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_aggregation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_bergeron_findeisen_process_from_cloud_liquid", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_deposition_and_sublimation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_evaporation_of_melting_ice", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_water_vapor", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_autoconversion", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_bergeron_findeisen_process_to_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_convection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_longwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_pressure_change", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_shortwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_turbulence", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_heterogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_melting_from_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_riming", "tendency_of_middle_atmosphere_moles_of_carbon_monoxide", "tendency_of_middle_atmosphere_moles_of_hcc140a", "tendency_of_middle_atmosphere_moles_of_methane", "tendency_of_middle_atmosphere_moles_of_methyl_bromide", "tendency_of_middle_atmosphere_moles_of_methyl_chloride", "tendency_of_middle_atmosphere_moles_of_molecular_hydrogen", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_dissolved_inorganic_carbon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_iron_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_silicon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_dissolution_from_inorganic_particles", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_scavenging_by_inorganic_particles", "tendency_of_mole_concentration_of_iron_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_and_photolytic_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_destruction", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_calcareous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diatoms", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diazotrophic_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_miscellaneous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_picophytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_nitrate_utilization", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_remineralization", "tendency_of_mole_concentration_of_silicon_in_sea_water_due_to_biological_production", "tendency_of_northward_wind", "tendency_of_northward_wind_due_to_advection", "tendency_of_northward_wind_due_to_convection", "tendency_of_northward_wind_due_to_diffusion", "tendency_of_northward_wind_due_to_gravity_wave_drag", "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_northward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_ocean_barotropic_streamfunction", "tendency_of_ocean_eddy_kinetic_energy_content_due_to_parameterized_eddy_advection", "tendency_of_ocean_mole_content_of_aragonite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_calcite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_deposition_and_fixation_and_runoff", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_fixation", "tendency_of_ocean_mole_content_of_inorganic_carbon", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_iron_due_to_biological_production", "tendency_of_ocean_mole_content_of_iron_due_to_deposition_and_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "tendency_of_ocean_mole_content_of_nitrogen_due_to_biological_production", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_phosphorus_due_to_biological_production", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_silicon_due_to_biological_production", "tendency_of_ocean_potential_energy_content", "tendency_of_ocean_potential_energy_content_due_to_background", "tendency_of_ocean_potential_energy_content_due_to_tides", "tendency_of_potential_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_convection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_diffusion", "tendency_of_sea_ice_amount_due_to_basal_melting", "tendency_of_sea_ice_amount_due_to_congelation_ice_accumulation", "tendency_of_sea_ice_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_sea_ice_amount_due_to_frazil_ice_accumulation_in_leads", "tendency_of_sea_ice_amount_due_to_lateral_growth_of_ice_floes", "tendency_of_sea_ice_amount_due_to_lateral_melting", "tendency_of_sea_ice_amount_due_to_sea_ice_dynamics", "tendency_of_sea_ice_amount_due_to_sea_ice_thermodynamics", "tendency_of_sea_ice_amount_due_to_surface_melting", "tendency_of_sea_ice_area_fraction_due_to_dynamics", "tendency_of_sea_ice_area_fraction_due_to_ridging", "tendency_of_sea_ice_area_fraction_due_to_thermodynamics", "tendency_of_sea_ice_thickness_due_to_dynamics", "tendency_of_sea_ice_thickness_due_to_thermodynamics", "tendency_of_sea_surface_height_above_mean_sea_level", "tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_salinity", "tendency_of_sea_water_salinity_due_to_advection", "tendency_of_sea_water_salinity_due_to_horizontal_mixing", "tendency_of_sea_water_salinity_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_due_to_sea_ice_thermodynamics", "tendency_of_sea_water_salinity_due_to_vertical_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_residual_mean_advection", "tendency_of_sea_water_temperature", "tendency_of_sea_water_temperature_due_to_advection", "tendency_of_sea_water_temperature_due_to_horizontal_mixing", "tendency_of_sea_water_temperature_due_to_parameterized_eddy_advection", "tendency_of_sea_water_temperature_due_to_vertical_mixing", "tendency_of_soil_and_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_soil_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fertilization", "tendency_of_specific_humidity", "tendency_of_specific_humidity_due_to_advection", "tendency_of_specific_humidity_due_to_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_convection", "tendency_of_specific_humidity_due_to_diffusion", "tendency_of_specific_humidity_due_to_model_physics", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_stratiform_precipitation", "tendency_of_surface_air_pressure", "tendency_of_surface_snow_amount", "tendency_of_surface_snow_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_surface_snow_amount_due_to_drifting_into_sea", "tendency_of_surface_snow_amount_due_to_sea_ice_dynamics", "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", "tendency_of_troposphere_moles_of_carbon_monoxide", "tendency_of_troposphere_moles_of_hcc140a", "tendency_of_troposphere_moles_of_hcfc22", "tendency_of_troposphere_moles_of_methane", "tendency_of_troposphere_moles_of_methyl_bromide", "tendency_of_troposphere_moles_of_methyl_chloride", "tendency_of_troposphere_moles_of_molecular_hydrogen", "tendency_of_upward_air_velocity", "tendency_of_upward_air_velocity_due_to_advection", "tendency_of_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_wind_speed_due_to_convection", "tendency_of_wind_speed_due_to_gravity_wave_drag", "thermal_conductivity_of_frozen_ground", "thermal_energy_content_of_surface_snow", "thermodynamic_phase_of_cloud_water_particles_at_cloud_top", "thermosteric_change_in_mean_sea_level", "thermosteric_change_in_sea_surface_height", "thickness_of_convective_rainfall_amount", "thickness_of_convective_snowfall_amount", "thickness_of_ice_on_sea_ice_melt_pond", "thickness_of_liquid_water_cloud", "thickness_of_rainfall_amount", "thickness_of_snowfall_amount", "thickness_of_stratiform_rainfall_amount", "thickness_of_stratiform_snowfall_amount", "thunderstorm_probability", "tidal_sea_surface_height_above_lowest_astronomical_tide", "tidal_sea_surface_height_above_mean_higher_high_water", "tidal_sea_surface_height_above_mean_lower_low_water", "tidal_sea_surface_height_above_mean_low_water_springs", "tidal_sea_surface_height_above_mean_sea_level", "time", "time_of_maximum_flood_depth", "time_sample_difference_due_to_collocation", "time_when_flood_water_falls_below_threshold", "time_when_flood_water_rises_above_threshold", "toa_adjusted_longwave_forcing", "toa_adjusted_radiative_forcing", "toa_adjusted_shortwave_forcing", "toa_bidirectional_reflectance", "toa_brightness_temperature", "toa_brightness_temperature_assuming_clear_sky", "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", "toa_brightness_temperature_of_standard_scene", "toa_cloud_radiative_effect", "toa_incoming_shortwave_flux", "toa_instantaneous_longwave_forcing", "toa_instantaneous_radiative_forcing", "toa_instantaneous_shortwave_forcing", "toa_longwave_cloud_radiative_effect", "toa_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "toa_net_downward_longwave_flux", "toa_net_downward_longwave_flux_assuming_clear_sky", "toa_net_downward_radiative_flux", "toa_net_downward_shortwave_flux", "toa_net_downward_shortwave_flux_assuming_clear_sky", "toa_net_upward_longwave_flux", "toa_net_upward_longwave_flux_assuming_clear_sky", "toa_net_upward_shortwave_flux", "toa_outgoing_longwave_flux", "toa_outgoing_longwave_flux_assuming_clear_sky", "toa_outgoing_longwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_outgoing_radiance_per_unit_wavelength", "toa_outgoing_radiance_per_unit_wavelength_due_to_solar_induced_fluorescence", "toa_outgoing_radiance_per_unit_wavenumber", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_target", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_target", "toa_outgoing_shortwave_flux", "toa_outgoing_shortwave_flux_assuming_clear_sky", "toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol", "toa_outgoing_shortwave_flux_assuming_no_aerosol", "toa_outgoing_shortwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_shortwave_cloud_radiative_effect", "to_direction_of_air_velocity_relative_to_sea_water", "to_direction_of_surface_downward_stress", "tracer_lifetime", "transpiration_amount", "transpiration_flux", "tropical_cyclone_eye_brightness_temperature", "tropical_cyclone_maximum_sustained_wind_speed", "tropopause_adjusted_longwave_forcing", "tropopause_adjusted_radiative_forcing", "tropopause_adjusted_shortwave_forcing", "tropopause_air_pressure", "tropopause_air_temperature", "tropopause_altitude", "tropopause_downwelling_longwave_flux", "tropopause_instantaneous_longwave_forcing", "tropopause_instantaneous_radiative_forcing", "tropopause_instantaneous_shortwave_forcing", "tropopause_net_downward_longwave_flux", "tropopause_net_downward_shortwave_flux", "tropopause_upwelling_shortwave_flux", "troposphere_mole_content_of_bromine_monoxide", "troposphere_mole_content_of_formaldehyde", "troposphere_mole_content_of_glyoxal", "troposphere_mole_content_of_iodine_monoxide", "troposphere_mole_content_of_nitrogen_dioxide", "troposphere_mole_content_of_ozone", "troposphere_mole_content_of_sulfur_dioxide", "turbulent_mixing_length_of_sea_water", "ultraviolet_index", "ultraviolet_index_assuming_clear_sky", "ultraviolet_index_assuming_overcast_sky", "upward_air_velocity", "upward_derivative_of_eastward_wind", "upward_derivative_of_northward_wind", "upward_derivative_of_wind_from_direction", "upward_dry_static_energy_flux_due_to_diffusion", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_eastward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_westward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_orographic_gravity_waves", "upward_eastward_stress_at_sea_ice_base", "upward_geothermal_heat_flux_at_ground_level_in_land_ice", "upward_geothermal_heat_flux_at_sea_floor", "upward_heat_flux_at_ground_level_in_snow", "upward_heat_flux_at_ground_level_in_soil", "upward_heat_flux_in_air", "upward_heat_flux_in_sea_water_due_to_convection", "upward_latent_heat_flux_in_air", "upward_northward_stress_at_sea_ice_base", "upward_ocean_mass_transport", "upward_sea_ice_basal_heat_flux", "upward_sea_water_velocity", "upward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "upward_sensible_heat_flux_in_air", "upward_transformed_eulerian_mean_air_velocity", "upward_upward_derivative_of_geopotential", "upward_water_vapor_flux_in_air", "upward_water_vapor_flux_in_air_due_to_diffusion", "upward_x_stress_at_sea_ice_base", "upward_y_stress_at_sea_ice_base", "upwelling_radiance_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "upwelling_shortwave_flux_in_air", "upwelling_shortwave_flux_in_air_assuming_clear_sky", "upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "upwelling_shortwave_radiance_in_air", "vegetation_area_fraction", "vegetation_carbon_content", "vegetation_mass_content_of_13C", "vegetation_mass_content_of_14C", "vegetation_mass_content_of_nitrogen", "vertical_component_of_ocean_xy_tracer_diffusivity", "vertical_navigation_clearance_above_waterway_surface", "virtual_salt_flux_correction", "virtual_salt_flux_into_sea_water", "virtual_salt_flux_into_sea_water_due_to_evaporation", "virtual_salt_flux_into_sea_water_due_to_newtonian_relaxation", "virtual_salt_flux_into_sea_water_due_to_rainfall", "virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "virtual_salt_flux_into_sea_water_from_rivers", "virtual_temperature", "visibility_in_air", "volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles", "volume_absorption_coefficient_of_radiative_flux_in_sea_water", "volume_absorption_coefficient_of_radiative_flux_in_sea_water_due_to_dissolved_organic_matter", "volume_attenuated_backwards_scattering_function_in_air", "volume_attenuated_backwards_scattering_function_in_air_assuming_no_aerosol_or_cloud", "volume_attenuation_coefficient_of_downwelling_radiative_flux_in_sea_water", "volume_backwards_scattering_coefficient_in_air_due_to_dried_aerosol_particles", "volume_backwards_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water_corrected_for_pure_water_attenuance", "volume_extinction_coefficient_in_air_due_to_ambient_aerosol_particles", "volume_extinction_coefficient_in_air_due_to_cloud_particles", "volume_fraction_of_clay_in_soil", "volume_fraction_of_condensed_water_in_soil", "volume_fraction_of_condensed_water_in_soil_at_critical_point", "volume_fraction_of_condensed_water_in_soil_at_field_capacity", "volume_fraction_of_condensed_water_in_soil_at_wilting_point", "volume_fraction_of_condensed_water_in_soil_pores", "volume_fraction_of_frozen_water_in_soil", "volume_fraction_of_oxygen_in_sea_water", "volume_fraction_of_sand_in_soil", "volume_fraction_of_silt_in_soil", "volume_mixing_ratio_of_oxygen_at_stp_in_sea_water", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_dried_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_scattering_function_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_function_of_radiative_flux_in_sea_water", "water_evaporation_amount", "water_evaporation_amount_from_canopy", "water_evaporation_flux_from_canopy", "water_evaporation_flux_from_soil", "water_evapotranspiration_flux", "water_flux_correction", "water_flux_into_sea_water", "water_flux_into_sea_water_due_to_sea_ice_thermodynamics", "water_flux_into_sea_water_due_to_surface_drainage", "water_flux_into_sea_water_from_icebergs", "water_flux_into_sea_water_from_land_ice", "water_flux_into_sea_water_from_rivers", "water_flux_into_sea_water_from_rivers_and_surface_downward_water_flux", "water_flux_into_sea_water_without_flux_correction", "water_flux_out_of_sea_ice_and_sea_water", "water_flux_out_of_sea_water", "water_flux_out_of_sea_water_due_to_newtonian_relaxation", "water_flux_out_of_sea_water_due_to_sea_ice_thermodynamics", "water_potential_evaporation_amount", "water_potential_evaporation_flux", "water_sublimation_flux", "water_surface_height_above_reference_datum", "water_surface_reference_datum_altitude", "water_table_depth", "water_vapor_partial_pressure_in_air", "water_vapor_saturation_deficit_in_air", "water_volume_transport_in_river_channel", "water_volume_transport_into_sea_water_from_rivers", "westward_upward_derivative_of_geopotential", "westward_westward_derivative_of_geopotential", "wet_bulb_potential_temperature", "wet_bulb_temperature", "wind_chill_of_air_temperature", "wind_from_direction", "wind_gust_from_direction", "wind_mixing_energy_flux_into_sea_water", "wind_speed_of_gust", "wind_to_direction", "wood_debris_mass_content_of_carbon", "wood_debris_mass_content_of_nitrogen", "x_derivative_of_ocean_rigid_lid_pressure", "x_heat_flux_in_sea_water_due_to_advection", "x_wind_gust", "y_derivative_of_ocean_rigid_lid_pressure", "y_heat_flux_in_sea_water_due_to_advection", "y_wind_gust", "zenith_angle"], "description": "Options", "index": [0], "layout": "IPY_MODEL_6c3459f62cd8433ab2d38b192a83b312", "rows": 10, "style": "IPY_MODEL_39fcba728daa48e8bcf16deeec7e73c1"}}, "4c09d675f61041bcbce501c3c25f3e32": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "4f36137883c14732b514d4d75847351e": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "5b08303cdec5483a9e639145cb0abe38": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "653bec301b4f49fdb48b20cb16e035d8": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextStyleModel", "state": {"description_width": "", "font_size": null, "text_color": null}}, "68de4b0bf9f24947862a8ef71de230f8": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextModel", "state": {"description": "exclude", "layout": "IPY_MODEL_497fb3755d5d41af909c8a9b547d004d", "style": "IPY_MODEL_a3f91050466040919c3e6b3d6823e487", "value": "air|brightness|change|depth|land|ice|conservative|flux|tendency"}}, "69efdc6bdd9e489199d5b73ccb06c79c": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "6c3459f62cd8433ab2d38b192a83b312": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "72fbc5f1fe2941e7aac127c247697cc7": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["acoustic_signal_roundtrip_travel_time_in_sea_water", "aerodynamic_particle_diameter", "aerodynamic_resistance", "age_of_sea_ice", "age_of_stratospheric_air", "age_of_surface_snow", "aggregate_quality_flag", "air_density", "air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", "air_pressure", "air_pressure_anomaly", "air_pressure_at_cloud_base", "air_pressure_at_cloud_top", "air_pressure_at_convective_cloud_base", "air_pressure_at_convective_cloud_top", "air_pressure_at_freezing_level", "air_pressure_at_mean_sea_level", "air_pressure_at_top_of_atmosphere_model", "air_pseudo_equivalent_potential_temperature", "air_pseudo_equivalent_temperature", "air_temperature", "air_temperature_anomaly", "air_temperature_at_cloud_top", "air_temperature_at_effective_cloud_top_defined_by_infrared_radiation", "air_temperature_lapse_rate", "air_temperature_threshold", "altimeter_range", "altimeter_range_correction_due_to_dry_troposphere", "altimeter_range_correction_due_to_ionosphere", "altimeter_range_correction_due_to_wet_troposphere", "altitude", "altitude_at_top_of_atmosphere_model", "altitude_at_top_of_dry_convection", "amplitude_of_global_average_sea_level_change", "angle_of_emergence", "angle_of_incidence", "angle_of_rotation_from_east_to_x", "angle_of_rotation_from_east_to_y", "angle_of_rotation_from_solar_azimuth_to_platform_azimuth", "angstrom_exponent_of_ambient_aerosol_in_air", "apparent_air_temperature", "apparent_oxygen_utilization", "area_fraction", "area_fraction_below_surface", "area_fraction_of_day_defined_by_solar_zenith_angle", "area_fraction_of_night_defined_by_solar_zenith_angle", "area_fraction_of_twilight_defined_by_solar_zenith_angle", "area_type", "asymmetry_factor_of_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_absorption_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_boundary_layer_thickness", "atmosphere_convective_available_potential_energy", "atmosphere_convective_available_potential_energy_wrt_surface", "atmosphere_convective_inhibition", "atmosphere_convective_inhibition_wrt_surface", "atmosphere_downdraft_convective_mass_flux", "atmosphere_dry_energy_content", "atmosphere_dry_static_energy_content", "atmosphere_eastward_stress_due_to_gravity_wave_drag", "atmosphere_energy_content", "atmosphere_enthalpy_content", "atmosphere_heat_diffusivity", "atmosphere_helicity", "atmosphere_horizontal_streamfunction", "atmosphere_horizontal_velocity_potential", "atmosphere_hybrid_height_coordinate", "atmosphere_hybrid_sigma_pressure_coordinate", "atmosphere_kinetic_energy_content", "atmosphere_layer_thickness_expressed_as_geopotential_height_difference", "atmosphere_level_of_free_convection", "atmosphere_level_of_free_convection_wrt_surface", "atmosphere_lifting_condensation_level", "atmosphere_lifting_condensation_level_wrt_surface", "atmosphere_ln_pressure_coordinate", "atmosphere_mass_content_of_acetic_acid", "atmosphere_mass_content_of_aceto_nitrile", "atmosphere_mass_content_of_alkanes", "atmosphere_mass_content_of_alkenes", "atmosphere_mass_content_of_alpha_hexachlorocyclohexane", "atmosphere_mass_content_of_alpha_pinene", "atmosphere_mass_content_of_ammonia", "atmosphere_mass_content_of_ammonium_dry_aerosol_particles", "atmosphere_mass_content_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_aromatic_compounds", "atmosphere_mass_content_of_atomic_bromine", "atmosphere_mass_content_of_atomic_chlorine", "atmosphere_mass_content_of_atomic_nitrogen", "atmosphere_mass_content_of_benzene", "atmosphere_mass_content_of_beta_pinene", "atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_bromine_chloride", "atmosphere_mass_content_of_bromine_monoxide", "atmosphere_mass_content_of_bromine_nitrate", "atmosphere_mass_content_of_brox_expressed_as_bromine", "atmosphere_mass_content_of_butane", "atmosphere_mass_content_of_carbon_dioxide", "atmosphere_mass_content_of_carbon_monoxide", "atmosphere_mass_content_of_carbon_tetrachloride", "atmosphere_mass_content_of_cfc11", "atmosphere_mass_content_of_cfc113", "atmosphere_mass_content_of_cfc113a", "atmosphere_mass_content_of_cfc114", "atmosphere_mass_content_of_cfc115", "atmosphere_mass_content_of_cfc12", "atmosphere_mass_content_of_chlorine_dioxide", "atmosphere_mass_content_of_chlorine_monoxide", "atmosphere_mass_content_of_chlorine_nitrate", "atmosphere_mass_content_of_cloud_condensed_water", "atmosphere_mass_content_of_cloud_ice", "atmosphere_mass_content_of_cloud_liquid_water", "atmosphere_mass_content_of_clox_expressed_as_chlorine", "atmosphere_mass_content_of_convective_cloud_condensed_water", "atmosphere_mass_content_of_convective_cloud_ice", "atmosphere_mass_content_of_convective_cloud_liquid_water", "atmosphere_mass_content_of_dichlorine_peroxide", "atmosphere_mass_content_of_dimethyl_sulfide", "atmosphere_mass_content_of_dinitrogen_pentoxide", "atmosphere_mass_content_of_dust_dry_aerosol_particles", "atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles", "atmosphere_mass_content_of_ethane", "atmosphere_mass_content_of_ethanol", "atmosphere_mass_content_of_ethene", "atmosphere_mass_content_of_ethyne", "atmosphere_mass_content_of_formaldehyde", "atmosphere_mass_content_of_formic_acid", "atmosphere_mass_content_of_gaseous_divalent_mercury", "atmosphere_mass_content_of_gaseous_elemental_mercury", "atmosphere_mass_content_of_graupel", "atmosphere_mass_content_of_graupel_and_hail", "atmosphere_mass_content_of_hail", "atmosphere_mass_content_of_halon1202", "atmosphere_mass_content_of_halon1211", "atmosphere_mass_content_of_halon1301", "atmosphere_mass_content_of_halon2402", "atmosphere_mass_content_of_hcc140a", "atmosphere_mass_content_of_hcfc141b", "atmosphere_mass_content_of_hcfc142b", "atmosphere_mass_content_of_hcfc22", "atmosphere_mass_content_of_hexachlorobiphenyl", "atmosphere_mass_content_of_hox_expressed_as_hydrogen", "atmosphere_mass_content_of_hydrogen_bromide", "atmosphere_mass_content_of_hydrogen_chloride", "atmosphere_mass_content_of_hydrogen_cyanide", "atmosphere_mass_content_of_hydrogen_peroxide", "atmosphere_mass_content_of_hydroperoxyl_radical", "atmosphere_mass_content_of_hydroxyl_radical", "atmosphere_mass_content_of_hypobromous_acid", "atmosphere_mass_content_of_hypochlorous_acid", "atmosphere_mass_content_of_inorganic_bromine", "atmosphere_mass_content_of_inorganic_chlorine", "atmosphere_mass_content_of_isoprene", "atmosphere_mass_content_of_limonene", "atmosphere_mass_content_of_liquid_precipitation", "atmosphere_mass_content_of_mercury_dry_aerosol_particles", "atmosphere_mass_content_of_methane", "atmosphere_mass_content_of_methanol", "atmosphere_mass_content_of_methyl_bromide", "atmosphere_mass_content_of_methyl_chloride", "atmosphere_mass_content_of_methyl_hydroperoxide", "atmosphere_mass_content_of_methyl_peroxy_radical", "atmosphere_mass_content_of_molecular_hydrogen", "atmosphere_mass_content_of_nitrate_dry_aerosol_particles", "atmosphere_mass_content_of_nitrate_radical", "atmosphere_mass_content_of_nitric_acid", "atmosphere_mass_content_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_mass_content_of_nitrogen_monoxide", "atmosphere_mass_content_of_nitrous_acid", "atmosphere_mass_content_of_nitrous_oxide", "atmosphere_mass_content_of_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_nox_expressed_as_nitrogen", "atmosphere_mass_content_of_noy_expressed_as_nitrogen", "atmosphere_mass_content_of_oxygenated_hydrocarbons", "atmosphere_mass_content_of_ozone", "atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_peroxyacetyl_nitrate", "atmosphere_mass_content_of_peroxynitric_acid", "atmosphere_mass_content_of_peroxy_radicals", "atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_propane", "atmosphere_mass_content_of_propene", "atmosphere_mass_content_of_radon", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_expressed_as_cations", "atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_snow", "atmosphere_mass_content_of_sulfate", "atmosphere_mass_content_of_sulfate_ambient_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur", "atmosphere_mass_content_of_sulfur_dioxide", "atmosphere_mass_content_of_terpenes", "atmosphere_mass_content_of_toluene", "atmosphere_mass_content_of_volcanic_ash", "atmosphere_mass_content_of_water", "atmosphere_mass_content_of_water_in_ambient_aerosol_particles", "atmosphere_mass_content_of_water_vapor", "atmosphere_mass_content_of_xylene", "atmosphere_mass_of_air_per_unit_area", "atmosphere_mass_of_carbon_dioxide", "atmosphere_mass_per_unit_area", "atmosphere_mole_content_of_carbon_monoxide", "atmosphere_mole_content_of_methane", "atmosphere_mole_content_of_nitrogen_dioxide", "atmosphere_mole_content_of_ozone", "atmosphere_mole_content_of_water_vapor", "atmosphere_moles_of_acetic_acid", "atmosphere_moles_of_aceto_nitrile", "atmosphere_moles_of_alpha_hexachlorocyclohexane", "atmosphere_moles_of_alpha_pinene", "atmosphere_moles_of_ammonia", "atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_atomic_bromine", "atmosphere_moles_of_atomic_chlorine", "atmosphere_moles_of_atomic_nitrogen", "atmosphere_moles_of_benzene", "atmosphere_moles_of_beta_pinene", "atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_bromine_chloride", "atmosphere_moles_of_bromine_monoxide", "atmosphere_moles_of_bromine_nitrate", "atmosphere_moles_of_brox_expressed_as_bromine", "atmosphere_moles_of_butane", "atmosphere_moles_of_carbon_dioxide", "atmosphere_moles_of_carbon_monoxide", "atmosphere_moles_of_carbon_tetrachloride", "atmosphere_moles_of_cfc11", "atmosphere_moles_of_cfc113", "atmosphere_moles_of_cfc113a", "atmosphere_moles_of_cfc114", "atmosphere_moles_of_cfc115", "atmosphere_moles_of_cfc12", "atmosphere_moles_of_chlorine_dioxide", "atmosphere_moles_of_chlorine_monoxide", "atmosphere_moles_of_chlorine_nitrate", "atmosphere_moles_of_clox_expressed_as_chlorine", "atmosphere_moles_of_dichlorine_peroxide", "atmosphere_moles_of_dimethyl_sulfide", "atmosphere_moles_of_dinitrogen_pentoxide", "atmosphere_moles_of_ethane", "atmosphere_moles_of_ethanol", "atmosphere_moles_of_ethene", "atmosphere_moles_of_ethyne", "atmosphere_moles_of_formaldehyde", "atmosphere_moles_of_formic_acid", "atmosphere_moles_of_gaseous_divalent_mercury", "atmosphere_moles_of_gaseous_elemental_mercury", "atmosphere_moles_of_halon1202", "atmosphere_moles_of_halon1211", "atmosphere_moles_of_halon1301", "atmosphere_moles_of_halon2402", "atmosphere_moles_of_hcc140a", "atmosphere_moles_of_hcfc141b", "atmosphere_moles_of_hcfc142b", "atmosphere_moles_of_hcfc22", "atmosphere_moles_of_hexachlorobiphenyl", "atmosphere_moles_of_hox_expressed_as_hydrogen", "atmosphere_moles_of_hydrogen_bromide", "atmosphere_moles_of_hydrogen_chloride", "atmosphere_moles_of_hydrogen_cyanide", "atmosphere_moles_of_hydrogen_peroxide", "atmosphere_moles_of_hydroperoxyl_radical", "atmosphere_moles_of_hydroxyl_radical", "atmosphere_moles_of_hypobromous_acid", "atmosphere_moles_of_hypochlorous_acid", "atmosphere_moles_of_inorganic_bromine", "atmosphere_moles_of_inorganic_chlorine", "atmosphere_moles_of_isoprene", "atmosphere_moles_of_limonene", "atmosphere_moles_of_methane", "atmosphere_moles_of_methanol", "atmosphere_moles_of_methyl_bromide", "atmosphere_moles_of_methyl_chloride", "atmosphere_moles_of_methyl_hydroperoxide", "atmosphere_moles_of_methyl_peroxy_radical", "atmosphere_moles_of_molecular_hydrogen", "atmosphere_moles_of_nitrate_radical", "atmosphere_moles_of_nitric_acid", "atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_moles_of_nitrogen_dioxide", "atmosphere_moles_of_nitrogen_monoxide", "atmosphere_moles_of_nitrous_acid", "atmosphere_moles_of_nitrous_oxide", "atmosphere_moles_of_nmvoc_expressed_as_carbon", "atmosphere_moles_of_nox_expressed_as_nitrogen", "atmosphere_moles_of_noy_expressed_as_nitrogen", "atmosphere_moles_of_ozone", "atmosphere_moles_of_peroxyacetyl_nitrate", "atmosphere_moles_of_peroxynitric_acid", "atmosphere_moles_of_propane", "atmosphere_moles_of_propene", "atmosphere_moles_of_radon", "atmosphere_moles_of_sulfur_dioxide", "atmosphere_moles_of_toluene", "atmosphere_moles_of_water_vapor", "atmosphere_moles_of_xylene", "atmosphere_momentum_diffusivity", "atmosphere_net_rate_of_absorption_of_longwave_energy", "atmosphere_net_rate_of_absorption_of_shortwave_energy", "atmosphere_net_upward_convective_mass_flux", "atmosphere_net_upward_deep_convective_mass_flux", "atmosphere_net_upward_shallow_convective_mass_flux", "atmosphere_northward_stress_due_to_gravity_wave_drag", "atmosphere_number_content_of_aerosol_particles", "atmosphere_number_content_of_cloud_droplets", "atmosphere_number_content_of_ice_crystals", "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_ammonium_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_optical_thickness_due_to_cloud", "atmosphere_optical_thickness_due_to_convective_cloud", "atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_dust_dry_aerosol_particles", "atmosphere_optical_thickness_due_to_nitrate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm10_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm1_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm2p5_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_stratiform_cloud", "atmosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_water_in_ambient_aerosol_particles", "atmosphere_potential_energy_content", "atmosphere_sigma_coordinate", "atmosphere_sleve_coordinate", "atmosphere_stability_k_index", "atmosphere_stability_showalter_index", "atmosphere_stability_total_totals_index", "atmosphere_transformed_eulerian_mean_meridional_overturning_mass_streamfunction", "atmosphere_updraft_convective_mass_flux", "atmosphere_upward_absolute_vorticity", "atmosphere_upward_relative_vorticity", "atmosphere_x_relative_vorticity", "atmosphere_y_relative_vorticity", "attenuated_signal_test_quality_flag", "automated_tropical_cyclone_forecasting_system_storm_identifier", "backscattering_ratio_in_air", "baroclinic_eastward_sea_water_velocity", "baroclinic_northward_sea_water_velocity", "barometric_altitude", "barotropic_eastward_sea_water_velocity", "barotropic_northward_sea_water_velocity", "barotropic_sea_water_x_velocity", "barotropic_sea_water_y_velocity", "basal_downward_heat_flux_in_sea_ice", "baseflow_amount", "beam_consistency_indicator_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "beaufort_wind_force", "bedrock_altitude", "bedrock_altitude_change_due_to_isostatic_adjustment", "biological_taxon_lsid", "biological_taxon_name", "bioluminescent_photon_rate_in_sea_water", "biomass_burning_carbon_flux", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "brunt_vaisala_frequency_in_air", "burned_area", "burned_area_fraction", "canopy_albedo", "canopy_and_surface_water_amount", "canopy_height", "canopy_resistance_to_ozone_dry_deposition", "canopy_snow_amount", "canopy_temperature", "canopy_throughfall_flux", "canopy_water_amount", "carbon_mass_content_of_forestry_and_agricultural_products", "carbon_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_litter_and_soil_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_soil_from_litter", "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", "cell_area", "cell_thickness", "change_in_atmosphere_energy_content_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_energy_content_of_atmosphere_layer_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_land_ice_amount", "change_in_land_ice_mass", "change_over_time_in_amount_of_ice_and_snow_on_land", "change_over_time_in_atmosphere_mass_content_of_water_due_to_advection", "change_over_time_in_canopy_water_amount", "change_over_time_in_groundwater_amount", "change_over_time_in_land_surface_liquid_water_amount", "change_over_time_in_land_water_amount", "change_over_time_in_mass_content_of_water_in_soil", "change_over_time_in_river_water_amount", "change_over_time_in_sea_water_absolute_salinity", "change_over_time_in_sea_water_conservative_temperature", "change_over_time_in_sea_water_density", "change_over_time_in_sea_water_neutral_density", "change_over_time_in_sea_water_potential_density", "change_over_time_in_sea_water_potential_temperature", "change_over_time_in_sea_water_practical_salinity", "change_over_time_in_sea_water_preformed_salinity", "change_over_time_in_sea_water_salinity", "change_over_time_in_sea_water_specific_potential_enthalpy", "change_over_time_in_sea_water_temperature", "change_over_time_in_surface_snow_amount", "change_over_time_in_thermal_energy_content_of_ice_and_snow_on_land", "change_over_time_in_thermal_energy_content_of_vegetation_and_litter_and_soil", "charnock_coefficient_for_surface_roughness_length_for_momentum_in_air", "clear_sky_area_fraction", "climatology_test_quality_flag", "cloud_albedo", "cloud_area_fraction", "cloud_area_fraction_in_atmosphere_layer", "cloud_base_altitude", "cloud_binary_mask", "cloud_ice_mixing_ratio", "cloud_liquid_water_mixing_ratio", "cloud_top_altitude", "colony_forming_unit_number_concentration_of_biological_taxon_in_sea_water", "compressive_strength_of_sea_ice", "concentration_of_colored_dissolved_organic_matter_in_sea_water_expressed_as_equivalent_mass_fraction_of_quinine_sulfate_dihydrate", "convection_time_fraction", "convective_cloud_area_fraction", "convective_cloud_area_fraction_in_atmosphere_layer", "convective_cloud_base_altitude", "convective_cloud_base_height", "convective_cloud_longwave_emissivity", "convective_cloud_top_altitude", "convective_cloud_top_height", "convective_precipitation_amount", "convective_precipitation_flux", "convective_precipitation_rate", "convective_rainfall_amount", "convective_rainfall_flux", "convective_rainfall_rate", "convective_snowfall_amount", "convective_snowfall_flux", "coriolis_parameter", "correction_for_model_negative_specific_humidity", "covariance_over_longitude_of_northward_wind_and_air_temperature", "depth", "depth_at_base_of_unfrozen_ground", "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", "depth_at_shallowest_isotherm_defined_by_soil_temperature", "depth_at_shallowest_local_minimum_in_vertical_profile_of_mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "depth_below_geoid", "depth_below_sea_floor", "depth_of_isosurface_of_sea_water_potential_temperature", "dew_point_depression", "dew_point_temperature", "diameter_of_ambient_aerosol_particles", "difference_between_sea_surface_temperature_and_air_temperature", "difference_of_air_pressure_from_model_reference", "diffuse_downwelling_shortwave_flux_in_air", "diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "dimensionless_exner_function", "direct_downwelling_shortwave_flux_in_air", "direction_of_radial_vector_away_from_instrument", "direction_of_radial_vector_toward_instrument", "direction_of_sea_ice_displacement", "direction_of_sea_ice_velocity", "distance_from_geocenter", "distance_from_sun", "distance_from_tropical_cyclone_center_to_leading_edge_of_displaced_convection", "divergence_of_sea_ice_velocity", "divergence_of_wind", "downward_air_velocity", "downward_dry_static_energy_flux_due_to_diffusion", "downward_eastward_momentum_flux_in_air", "downward_eastward_momentum_flux_in_air_due_to_diffusion", "downward_eastward_stress_at_sea_ice_base", "downward_heat_flux_at_ground_level_in_snow", "downward_heat_flux_at_ground_level_in_soil", "downward_heat_flux_in_air", "downward_heat_flux_in_floating_ice", "downward_heat_flux_in_sea_ice", "downward_heat_flux_in_soil", "downward_liquid_water_mass_flux_into_groundwater", "downward_northward_momentum_flux_in_air", "downward_northward_momentum_flux_in_air_due_to_diffusion", "downward_northward_stress_at_sea_ice_base", "downward_sea_ice_basal_salt_flux", "downward_water_vapor_flux_in_air_due_to_diffusion", "downward_x_stress_at_sea_ice_base", "downward_x_stress_at_sea_water_surface", "downward_x_stress_correction_at_sea_water_surface", "downward_y_stress_at_sea_ice_base", "downward_y_stress_at_sea_water_surface", "downward_y_stress_correction_at_sea_water_surface", "downwelling_longwave_flux_in_air", "downwelling_longwave_flux_in_air_assuming_clear_sky", "downwelling_longwave_radiance_in_air", "downwelling_photon_flux_in_sea_water", "downwelling_photon_flux_per_unit_wavelength_in_sea_water", "downwelling_photon_radiance_in_sea_water", "downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "downwelling_photon_spherical_irradiance_in_sea_water", "downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "downwelling_photosynthetic_photon_flux_in_sea_water", "downwelling_photosynthetic_photon_radiance_in_sea_water", "downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "downwelling_photosynthetic_radiance_in_sea_water", "downwelling_photosynthetic_radiative_flux_in_sea_water", "downwelling_photosynthetic_spherical_irradiance_in_sea_water", "downwelling_radiance_in_sea_water", "downwelling_radiance_per_unit_wavelength_in_air", "downwelling_radiance_per_unit_wavelength_in_sea_water", "downwelling_radiative_flux_in_sea_water", "downwelling_radiative_flux_per_unit_wavelength_in_air", "downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "downwelling_shortwave_flux_in_air", "downwelling_shortwave_flux_in_air_assuming_clear_sky", "downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "downwelling_shortwave_flux_in_sea_water", "downwelling_shortwave_flux_in_sea_water_at_sea_ice_base", "downwelling_shortwave_radiance_in_air", "downwelling_spherical_irradiance_in_sea_water", "downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "dry_atmosphere_mole_fraction_of_carbon_dioxide", "dry_atmosphere_mole_fraction_of_methane", "dry_energy_content_of_atmosphere_layer", "dry_static_energy_content_of_atmosphere_layer", "duration_of_sunshine", "dvorak_tropical_cyclone_current_intensity_number", "dvorak_tropical_number", "dynamic_tropopause_potential_temperature", "eastward_air_velocity_relative_to_sea_water", "eastward_atmosphere_dry_static_energy_transport_across_unit_distance", "eastward_atmosphere_water_transport_across_unit_distance", "eastward_atmosphere_water_vapor_transport_across_unit_distance", "eastward_derivative_of_eastward_wind", "eastward_derivative_of_northward_sea_ice_velocity", "eastward_derivative_of_northward_wind", "eastward_derivative_of_wind_from_direction", "eastward_flood_water_velocity", "eastward_friction_velocity_in_air", "eastward_land_ice_velocity", "eastward_mass_flux_of_air", "eastward_momentum_flux_correction", "eastward_sea_ice_displacement", "eastward_sea_ice_velocity", "eastward_sea_water_velocity", "eastward_sea_water_velocity_assuming_no_tide", "eastward_sea_water_velocity_at_sea_floor", "eastward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "eastward_sea_water_velocity_due_to_tides", "eastward_transformed_eulerian_mean_air_velocity", "eastward_water_vapor_flux_in_air", "eastward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "eastward_wind", "eastward_wind_shear", "effective_radius_of_cloud_condensed_water_particles_at_cloud_top", "effective_radius_of_cloud_liquid_water_particles", "effective_radius_of_cloud_liquid_water_particles_at_liquid_water_cloud_top", "effective_radius_of_convective_cloud_ice_particles", "effective_radius_of_convective_cloud_liquid_water_particles", "effective_radius_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "effective_radius_of_convective_cloud_rain_particles", "effective_radius_of_convective_cloud_snow_particles", "effective_radius_of_stratiform_cloud_graupel_particles", "effective_radius_of_stratiform_cloud_ice_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "effective_radius_of_stratiform_cloud_rain_particles", "effective_radius_of_stratiform_cloud_snow_particles", "electrical_mobility_diameter_of_ambient_aerosol_particles", "enrichment_of_14C_in_carbon_dioxide_in_air_expressed_as_uppercase_delta_14C", "enthalpy_content_of_atmosphere_layer", "equilibrium_line_altitude", "equivalent_pressure_of_atmosphere_ozone_content", "equivalent_reflectivity_factor", "equivalent_thickness_at_stp_of_atmosphere_ozone_content", "ertel_potential_vorticity", "fast_soil_pool_mass_content_of_carbon", "final_air_pressure_of_lifted_parcel", "fire_area", "fire_radiative_power", "fire_temperature", "flat_line_test_quality_flag", "floating_ice_shelf_area", "floating_ice_shelf_area_fraction", "floating_ice_thickness", "flood_water_duration_above_threshold", "flood_water_speed", "flood_water_thickness", "fog_area_fraction", "forecast_period", "forecast_reference_time", "fractional_saturation_of_oxygen_in_sea_water", "fraction_of_surface_downwelling_photosynthetic_radiative_flux_absorbed_by_vegetation", "fraction_of_time_with_sea_ice_area_fraction_above_threshold", "freezing_level_altitude", "freezing_temperature_of_sea_water", "frequency_of_lightning_flashes_per_unit_area", "frozen_water_content_of_soil_layer", "fugacity_of_carbon_dioxide_in_sea_water", "gap_test_quality_flag", "geoid_height_above_reference_ellipsoid", "geopotential", "geopotential_height", "geopotential_height_anomaly", "geopotential_height_at_cloud_top", "geopotential_height_at_volcanic_ash_cloud_top", "geostrophic_eastward_sea_water_velocity", "geostrophic_eastward_wind", "geostrophic_northward_sea_water_velocity", "geostrophic_northward_wind", "global_average_sea_level_change", "global_average_steric_sea_level_change", "global_average_thermosteric_sea_level_change", "graupel_and_hail_fall_amount", "graupel_and_hail_fall_flux", "graupel_fall_amount", "graupel_fall_flux", "grid_latitude", "grid_longitude", "gross_primary_productivity_of_biomass_expressed_as_13C", "gross_primary_productivity_of_biomass_expressed_as_14C", "gross_primary_productivity_of_biomass_expressed_as_carbon", "gross_range_test_quality_flag", "gross_rate_of_decrease_in_area_fraction", "gross_rate_of_increase_in_area_fraction", "grounded_ice_sheet_area", "grounded_ice_sheet_area_fraction", "ground_level_altitude", "growth_limitation_of_calcareous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_diatoms_due_to_solar_irradiance", "growth_limitation_of_diazotrophic_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_miscellaneous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_picophytoplankton_due_to_solar_irradiance", "hail_fall_amount", "hail_fall_flux", "halosteric_change_in_mean_sea_level", "halosteric_change_in_sea_surface_height", "harmonic_period", "heat_flux_correction", "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", "heat_flux_into_sea_water_due_to_newtonian_relaxation", "heat_flux_into_sea_water_due_to_sea_ice_thermodynamics", "heat_flux_into_sea_water_due_to_snow_thermodynamics", "heat_index_of_air_temperature", "height", "height_above_geopotential_datum", "height_above_geopotential_datum_at_top_of_atmosphere_model", "height_above_mean_sea_level", "height_above_reference_ellipsoid", "height_above_sea_floor", "height_at_cloud_top", "height_at_effective_cloud_top_defined_by_infrared_radiation", "high_type_cloud_area_fraction", "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid", "histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid", "horizontal_atmosphere_dry_energy_transport", "horizontal_dry_energy_transport_in_atmosphere_layer", "humidity_mixing_ratio", "ice_cloud_area_fraction", "ice_cloud_area_fraction_in_atmosphere_layer", "ice_volume_in_frozen_ground_in_excess_of_pore_volume_in_unfrozen_ground_expressed_as_fraction_of_frozen_ground_volume", "incoming_water_volume_transport_along_river_channel", "indicative_error_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "institution", "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_salinity_and_sea_water_density", "integral_wrt_depth_of_sea_water_practical_salinity", "integral_wrt_depth_of_sea_water_temperature", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "integral_wrt_height_of_product_of_eastward_wind_and_specific_humidity", "integral_wrt_height_of_product_of_northward_wind_and_specific_humidity", "integral_wrt_time_of_air_temperature_deficit", "integral_wrt_time_of_air_temperature_excess", "integral_wrt_time_of_mole_stomatal_uptake_of_ozone", "integral_wrt_time_of_radioactivity_concentration_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_104Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_110mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_11C_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_136Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_139Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_13N_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_145Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_150Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_153Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_154Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_157Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_158Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_15O_in_air", "integral_wrt_time_of_radioactivity_concentration_of_160Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_161Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162mTb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_163Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_165Dy_in_air", "integral_wrt_time_of_radioactivity_concentration_of_18F_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Hg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207mPb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_208Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_220Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_224Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234mPa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m1Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m2Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244mAm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_246Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_247Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_248Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_24Na_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_251Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_252Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254mEs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_255Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_3H_in_air", "integral_wrt_time_of_radioactivity_concentration_of_41Ar_in_air", "integral_wrt_time_of_radioactivity_concentration_of_54Mn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_58Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_60Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Zn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_73Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_75Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77mGe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_79Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86mRb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_96Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_98Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Tc_in_air", "integral_wrt_time_of_surface_downward_eastward_stress", "integral_wrt_time_of_surface_downward_latent_heat_flux", "integral_wrt_time_of_surface_downward_northward_stress", "integral_wrt_time_of_surface_downward_sensible_heat_flux", "integral_wrt_time_of_surface_downwelling_longwave_flux_in_air", "integral_wrt_time_of_surface_downwelling_shortwave_flux_in_air", "integral_wrt_time_of_surface_net_downward_longwave_flux", "integral_wrt_time_of_surface_net_downward_shortwave_flux", "integral_wrt_time_of_toa_net_downward_shortwave_flux", "integral_wrt_time_of_toa_outgoing_longwave_flux", "iron_growth_limitation_of_calcareous_phytoplankton", "iron_growth_limitation_of_diatoms", "iron_growth_limitation_of_diazotrophic_phytoplankton", "iron_growth_limitation_of_miscellaneous_phytoplankton", "iron_growth_limitation_of_picophytoplankton", "isccp_cloud_area_fraction", "isotope_ratio_of_17O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotope_ratio_of_18O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotropic_longwave_radiance_in_air", "isotropic_radiance_per_unit_wavelength_in_air", "isotropic_shortwave_radiance_in_air", "kinetic_energy_content_of_atmosphere_layer", "kinetic_energy_dissipation_in_atmosphere_boundary_layer", "lagrangian_tendency_of_air_pressure", "lagrangian_tendency_of_atmosphere_sigma_coordinate", "land_area_fraction", "land_binary_mask", "land_cover_lccs", "land_ice_area_fraction", "land_ice_basal_drag", "land_ice_basal_melt_rate", "land_ice_basal_specific_mass_balance_flux", "land_ice_basal_temperature", "land_ice_basal_upward_velocity", "land_ice_basal_x_velocity", "land_ice_basal_y_velocity", "land_ice_calving_rate", "land_ice_lwe_basal_melt_rate", "land_ice_lwe_calving_rate", "land_ice_lwe_surface_specific_mass_balance_rate", "land_ice_mass", "land_ice_mass_not_displacing_sea_water", "land_ice_runoff_flux", "land_ice_sigma_coordinate", "land_ice_specific_mass_flux_due_to_calving", "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", "land_ice_surface_melt_flux", "land_ice_surface_specific_mass_balance_flux", "land_ice_surface_specific_mass_balance_rate", "land_ice_surface_upward_velocity", "land_ice_surface_x_velocity", "land_ice_surface_y_velocity", "land_ice_temperature", "land_ice_thickness", "land_ice_vertical_mean_x_velocity", "land_ice_vertical_mean_y_velocity", "land_ice_x_velocity", "land_ice_y_velocity", "land_surface_liquid_water_amount", "land_water_amount", "latitude", "leaf_area_index", "leaf_mass_content_of_carbon", "leaf_mass_content_of_nitrogen", "lightning_potential_index", "lightning_radiant_energy", "liquid_water_cloud_area_fraction", "liquid_water_cloud_area_fraction_in_atmosphere_layer", "liquid_water_content_of_permafrost_layer", "liquid_water_content_of_soil_layer", "liquid_water_content_of_surface_snow", "liquid_water_mass_flux_into_soil_due_to_surface_snow_melt", "litter_mass_content_of_13C", "litter_mass_content_of_14C", "litter_mass_content_of_carbon", "litter_mass_content_of_nitrogen", "location_test_quality_flag", "log10_size_interval_based_number_size_distribution_of_cloud_condensation_nuclei_at_stp_in_air", "longitude", "low_type_cloud_area_fraction", "lwe_convective_precipitation_rate", "lwe_convective_snowfall_rate", "lwe_precipitation_rate", "lwe_snowfall_rate", "lwe_stratiform_precipitation_rate", "lwe_stratiform_snowfall_rate", "lwe_thickness_of_atmosphere_mass_content_of_water_vapor", "lwe_thickness_of_canopy_water_amount", "lwe_thickness_of_convective_precipitation_amount", "lwe_thickness_of_convective_snowfall_amount", "lwe_thickness_of_frozen_water_content_of_soil_layer", "lwe_thickness_of_moisture_content_of_soil_layer", "lwe_thickness_of_precipitation_amount", "lwe_thickness_of_snowfall_amount", "lwe_thickness_of_soil_moisture_content", "lwe_thickness_of_stratiform_precipitation_amount", "lwe_thickness_of_stratiform_snowfall_amount", "lwe_thickness_of_surface_snow_amount", "lwe_thickness_of_water_evaporation_amount", "lwe_water_evaporation_rate", "magnitude_of_air_velocity_relative_to_sea_water", "magnitude_of_derivative_of_position_wrt_model_level_number", "magnitude_of_derivative_of_position_wrt_x_coordinate_index", "magnitude_of_derivative_of_position_wrt_y_coordinate_index", "magnitude_of_heat_flux_in_sea_water_due_to_advection", "magnitude_of_sea_ice_displacement", "magnitude_of_surface_downward_stress", "mass_concentration_of_19_butanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_19_hexanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_acetic_acid_in_air", "mass_concentration_of_aceto_nitrile_in_air", "mass_concentration_of_adenosine_triphosphate_in_sea_water", "mass_concentration_of_alkanes_in_air", "mass_concentration_of_alkenes_in_air", "mass_concentration_of_alpha_carotene_in_sea_water", "mass_concentration_of_alpha_hexachlorocyclohexane_in_air", "mass_concentration_of_alpha_pinene_in_air", "mass_concentration_of_ammonia_in_air", "mass_concentration_of_ammonium_dry_aerosol_particles_in_air", "mass_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_aromatic_compounds_in_air", "mass_concentration_of_atomic_bromine_in_air", "mass_concentration_of_atomic_chlorine_in_air", "mass_concentration_of_atomic_nitrogen_in_air", "mass_concentration_of_benzene_in_air", "mass_concentration_of_beta_carotene_in_sea_water", "mass_concentration_of_beta_pinene_in_air", "mass_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_biomass_burning_dry_aerosol_particles_in_air", "mass_concentration_of_bromine_chloride_in_air", "mass_concentration_of_bromine_monoxide_in_air", "mass_concentration_of_bromine_nitrate_in_air", "mass_concentration_of_brox_expressed_as_bromine_in_air", "mass_concentration_of_butane_in_air", "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_carbon_dioxide_in_air", "mass_concentration_of_carbon_monoxide_in_air", "mass_concentration_of_carbon_tetrachloride_in_air", "mass_concentration_of_carotene_in_sea_water", "mass_concentration_of_cfc113a_in_air", "mass_concentration_of_cfc113_in_air", "mass_concentration_of_cfc114_in_air", "mass_concentration_of_cfc115_in_air", "mass_concentration_of_cfc11_in_air", "mass_concentration_of_cfc12_in_air", "mass_concentration_of_chlorine_dioxide_in_air", "mass_concentration_of_chlorine_monoxide_in_air", "mass_concentration_of_chlorine_nitrate_in_air", "mass_concentration_of_chlorophyll_a_in_sea_water", "mass_concentration_of_chlorophyll_b_in_sea_water", "mass_concentration_of_chlorophyll_c1_and_chlorophyll_c2_in_sea_water", "mass_concentration_of_chlorophyll_c3_in_sea_water", "mass_concentration_of_chlorophyll_c_in_sea_water", "mass_concentration_of_chlorophyllide_a_in_sea_water", "mass_concentration_of_chlorophyll_in_sea_water", "mass_concentration_of_cloud_liquid_water_in_air", "mass_concentration_of_clox_expressed_as_chlorine_in_air", "mass_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "mass_concentration_of_condensed_water_in_soil", "mass_concentration_of_diadinoxanthin_in_sea_water", "mass_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_dichlorine_peroxide_in_air", "mass_concentration_of_dimethyl_sulfide_in_air", "mass_concentration_of_dinitrogen_pentoxide_in_air", "mass_concentration_of_divinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_drizzle_in_air", "mass_concentration_of_dust_dry_aerosol_particles_in_air", "mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_concentration_of_ethane_in_air", "mass_concentration_of_ethanol_in_air", "mass_concentration_of_ethene_in_air", "mass_concentration_of_ethyne_in_air", "mass_concentration_of_flagellates_expressed_as_carbon_in_sea_water", "mass_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_formaldehyde_in_air", "mass_concentration_of_formic_acid_in_air", "mass_concentration_of_fucoxanthin_in_sea_water", "mass_concentration_of_gaseous_divalent_mercury_in_air", "mass_concentration_of_gaseous_elemental_mercury_in_air", "mass_concentration_of_halon1202_in_air", "mass_concentration_of_halon1211_in_air", "mass_concentration_of_halon1301_in_air", "mass_concentration_of_halon2402_in_air", "mass_concentration_of_hcc140a_in_air", "mass_concentration_of_hcfc141b_in_air", "mass_concentration_of_hcfc142b_in_air", "mass_concentration_of_hcfc22_in_air", "mass_concentration_of_hexachlorobiphenyl_in_air", "mass_concentration_of_hox_expressed_as_hydrogen_in_air", "mass_concentration_of_hydrogen_bromide_in_air", "mass_concentration_of_hydrogen_chloride_in_air", "mass_concentration_of_hydrogen_cyanide_in_air", "mass_concentration_of_hydrogen_peroxide_in_air", "mass_concentration_of_hydroperoxyl_radical_in_air", "mass_concentration_of_hydroxyl_radical_in_air", "mass_concentration_of_hypobromous_acid_in_air", "mass_concentration_of_hypochlorous_acid_in_air", "mass_concentration_of_inorganic_bromine_in_air", "mass_concentration_of_inorganic_chlorine_in_air", "mass_concentration_of_inorganic_nitrogen_in_sea_water", "mass_concentration_of_isoprene_in_air", "mass_concentration_of_limonene_in_air", "mass_concentration_of_liquid_water_in_air", "mass_concentration_of_lutein_in_sea_water", "mass_concentration_of_mercury_dry_aerosol_particles_in_air", "mass_concentration_of_methane_in_air", "mass_concentration_of_methanol_in_air", "mass_concentration_of_methyl_bromide_in_air", "mass_concentration_of_methyl_chloride_in_air", "mass_concentration_of_methyl_hydroperoxide_in_air", "mass_concentration_of_methyl_peroxy_radical_in_air", "mass_concentration_of_microphytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_molecular_hydrogen_in_air", "mass_concentration_of_monovinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_nanophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_nitrate_dry_aerosol_particles_in_air", "mass_concentration_of_nitrate_radical_in_air", "mass_concentration_of_nitric_acid_in_air", "mass_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_concentration_of_nitrogen_dioxide_in_air", "mass_concentration_of_nitrogen_monoxide_in_air", "mass_concentration_of_nitrous_acid_in_air", "mass_concentration_of_nitrous_oxide_in_air", "mass_concentration_of_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_nox_expressed_as_nitrogen_in_air", "mass_concentration_of_noy_expressed_as_nitrogen_in_air", "mass_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mass_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_oxygenated_hydrocarbons_in_air", "mass_concentration_of_oxygen_in_sea_water", "mass_concentration_of_ozone_in_air", "mass_concentration_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_peridinin_in_sea_water", "mass_concentration_of_peroxyacetyl_nitrate_in_air", "mass_concentration_of_peroxynitric_acid_in_air", "mass_concentration_of_peroxy_radicals_in_air", "mass_concentration_of_petroleum_hydrocarbons_in_sea_water", "mass_concentration_of_phaeopigments_in_sea_water", "mass_concentration_of_phosphate_in_sea_water", "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_pm10_ambient_aerosol_particles_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_pm1_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_prasinoxanthin_in_sea_water", "mass_concentration_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_propane_in_air", "mass_concentration_of_propene_in_air", "mass_concentration_of_radon_in_air", "mass_concentration_of_rain_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_silicate_in_sea_water", "mass_concentration_of_sulfate_ambient_aerosol_particles_in_air", "mass_concentration_of_sulfate_dry_aerosol_particles_in_air", "mass_concentration_of_sulfur_dioxide_in_air", "mass_concentration_of_suspended_matter_in_sea_water", "mass_concentration_of_terpenes_in_air", "mass_concentration_of_toluene_in_air", "mass_concentration_of_violaxanthin_in_sea_water", "mass_concentration_of_volcanic_ash_in_air", "mass_concentration_of_water_in_ambient_aerosol_particles_in_air", "mass_concentration_of_water_vapor_in_air", "mass_concentration_of_xylene_in_air", "mass_concentration_of_zeaxanthin_in_sea_water", "mass_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mass_content_of_13C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_14C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_cloud_condensed_water_in_atmosphere_layer", "mass_content_of_cloud_ice_in_atmosphere_layer", "mass_content_of_cloud_liquid_water_in_atmosphere_layer", "mass_content_of_nitrogen_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_water_in_atmosphere_layer", "mass_content_of_water_in_soil", "mass_content_of_water_in_soil_layer", "mass_content_of_water_in_soil_layer_defined_by_root_depth", "mass_content_of_water_vapor_containing_17O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_18O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_single_2H_in_atmosphere_layer", "mass_content_of_water_vapor_in_atmosphere_layer", "mass_flux_of_carbon_into_forestry_and_agricultural_products_due_to_crop_harvesting", "mass_flux_of_carbon_into_litter_from_vegetation", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence", "mass_flux_of_carbon_into_sea_water_from_rivers", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_senescence", "mass_flux_of_carbon_out_of_soil_due_to_leaching_and_runoff", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_into_sea_from_rivers", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_litter_and_soil_due_to_immobilisation_and_remineralization", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil_due_to_leaching_and_runoff", "mass_fraction_of_acetic_acid_in_air", "mass_fraction_of_aceto_nitrile_in_air", "mass_fraction_of_alkanes_in_air", "mass_fraction_of_alkenes_in_air", "mass_fraction_of_alpha_hexachlorocyclohexane_in_air", "mass_fraction_of_alpha_pinene_in_air", "mass_fraction_of_ammonia_in_air", "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_aromatic_compounds_in_air", "mass_fraction_of_atomic_bromine_in_air", "mass_fraction_of_atomic_chlorine_in_air", "mass_fraction_of_atomic_nitrogen_in_air", "mass_fraction_of_benzene_in_air", "mass_fraction_of_beta_pinene_in_air", "mass_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_bromine_chloride_in_air", "mass_fraction_of_bromine_monoxide_in_air", "mass_fraction_of_bromine_nitrate_in_air", "mass_fraction_of_brox_expressed_as_bromine_in_air", "mass_fraction_of_butane_in_air", "mass_fraction_of_carbon_dioxide_in_air", "mass_fraction_of_carbon_dioxide_tracer_in_air", "mass_fraction_of_carbon_monoxide_in_air", "mass_fraction_of_carbon_tetrachloride_in_air", "mass_fraction_of_cfc113a_in_air", "mass_fraction_of_cfc113_in_air", "mass_fraction_of_cfc114_in_air", "mass_fraction_of_cfc115_in_air", "mass_fraction_of_cfc11_in_air", "mass_fraction_of_cfc12_in_air", "mass_fraction_of_chlorine_dioxide_in_air", "mass_fraction_of_chlorine_monoxide_in_air", "mass_fraction_of_chlorine_nitrate_in_air", "mass_fraction_of_chlorophyll_a_in_sea_water", "mass_fraction_of_clay_in_soil", "mass_fraction_of_cloud_condensed_water_in_air", "mass_fraction_of_cloud_ice_in_air", "mass_fraction_of_cloud_liquid_water_in_air", "mass_fraction_of_clox_expressed_as_chlorine_in_air", "mass_fraction_of_convective_cloud_condensed_water_in_air", "mass_fraction_of_convective_cloud_ice_in_air", "mass_fraction_of_convective_cloud_liquid_water_in_air", "mass_fraction_of_dichlorine_peroxide_in_air", "mass_fraction_of_dimethyl_sulfide_in_air", "mass_fraction_of_dinitrogen_pentoxide_in_air", "mass_fraction_of_dust_dry_aerosol_particles_in_air", "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_ethane_in_air", "mass_fraction_of_ethanol_in_air", "mass_fraction_of_ethene_in_air", "mass_fraction_of_ethyne_in_air", "mass_fraction_of_formaldehyde_in_air", "mass_fraction_of_formic_acid_in_air", "mass_fraction_of_frozen_water_in_soil_moisture", "mass_fraction_of_gaseous_divalent_mercury_in_air", "mass_fraction_of_gaseous_elemental_mercury_in_air", "mass_fraction_of_graupel_and_hail_in_air", "mass_fraction_of_graupel_in_air", "mass_fraction_of_gravel_in_soil", "mass_fraction_of_hail_in_air", "mass_fraction_of_halon1202_in_air", "mass_fraction_of_halon1211_in_air", "mass_fraction_of_halon1301_in_air", "mass_fraction_of_halon2402_in_air", "mass_fraction_of_hcc140a_in_air", "mass_fraction_of_hcfc141b_in_air", "mass_fraction_of_hcfc142b_in_air", "mass_fraction_of_hcfc22_in_air", "mass_fraction_of_hexachlorobiphenyl_in_air", "mass_fraction_of_hox_expressed_as_hydrogen_in_air", "mass_fraction_of_hydrogen_bromide_in_air", "mass_fraction_of_hydrogen_chloride_in_air", "mass_fraction_of_hydrogen_cyanide_in_air", "mass_fraction_of_hydrogen_peroxide_in_air", "mass_fraction_of_hydroperoxyl_radical_in_air", "mass_fraction_of_hydroxyl_radical_in_air", "mass_fraction_of_hypobromous_acid_in_air", "mass_fraction_of_hypochlorous_acid_in_air", "mass_fraction_of_inorganic_bromine_in_air", "mass_fraction_of_inorganic_chlorine_in_air", "mass_fraction_of_isoprene_in_air", "mass_fraction_of_limonene_in_air", "mass_fraction_of_liquid_precipitation_in_air", "mass_fraction_of_mercury_dry_aerosol_particles_in_air", "mass_fraction_of_methane_in_air", "mass_fraction_of_methanesulfonic_acid_dry_aerosol_particles_in_air", "mass_fraction_of_methanol_in_air", "mass_fraction_of_methyl_bromide_in_air", "mass_fraction_of_methyl_chloride_in_air", "mass_fraction_of_methyl_hydroperoxide_in_air", "mass_fraction_of_methyl_peroxy_radical_in_air", "mass_fraction_of_molecular_hydrogen_in_air", "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_nitrate_radical_in_air", "mass_fraction_of_nitric_acid_in_air", "mass_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_fraction_of_nitrogen_dioxide_in_air", "mass_fraction_of_nitrogen_monoxide_in_air", "mass_fraction_of_nitrous_acid_in_air", "mass_fraction_of_nitrous_oxide_in_air", "mass_fraction_of_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_nox_expressed_as_nitrogen_in_air", "mass_fraction_of_noy_expressed_as_nitrogen_in_air", "mass_fraction_of_organic_matter_in_soil", "mass_fraction_of_oxygenated_hydrocarbons_in_air", "mass_fraction_of_ozone_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_peroxyacetyl_nitrate_in_air", "mass_fraction_of_peroxynitric_acid_in_air", "mass_fraction_of_peroxy_radicals_in_air", "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_pm10_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_pm1_ambient_aerosol_particles_in_air", "mass_fraction_of_pm1_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_precipitation_in_air", "mass_fraction_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_propane_in_air", "mass_fraction_of_propene_in_air", "mass_fraction_of_radon_in_air", "mass_fraction_of_rainfall_falling_onto_surface_snow", "mass_fraction_of_sand_in_soil", "mass_fraction_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_shallow_convective_cloud_liquid_water_in_air", "mass_fraction_of_silt_in_soil", "mass_fraction_of_snow_in_air", "mass_fraction_of_solid_precipitation_falling_onto_surface_snow", "mass_fraction_of_stratiform_cloud_ice_in_air", "mass_fraction_of_stratiform_cloud_liquid_water_in_air", "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_sulfur_dioxide_in_air", "mass_fraction_of_sulfuric_acid_in_air", "mass_fraction_of_terpenes_in_air", "mass_fraction_of_toluene_in_air", "mass_fraction_of_unfrozen_water_in_soil_moisture", "mass_fraction_of_water_in_air", "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_xylene_in_air", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_strain_rate", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_stress", "medium_soil_pool_mass_content_of_carbon", "medium_type_cloud_area_fraction", "minimum_depth_of_aragonite_undersaturation_in_sea_water", "minimum_depth_of_calcite_undersaturation_in_sea_water", "minus_one_times_surface_upwelling_longwave_flux_in_air", "minus_one_times_surface_upwelling_shortwave_flux_in_air", "minus_one_times_toa_outgoing_shortwave_flux", "minus_one_times_water_flux_into_sea_water_from_rivers", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "minus_tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "minus_tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "miscellaneous_living_matter_mass_content_of_carbon", "miscellaneous_living_matter_mass_content_of_nitrogen", "model_level_number", "model_level_number_at_base_of_ocean_mixed_layer_defined_by_sigma_theta", "model_level_number_at_convective_cloud_base", "model_level_number_at_convective_cloud_top", "model_level_number_at_sea_floor", "model_level_number_at_top_of_atmosphere_boundary_layer", "moisture_content_of_soil_layer_at_field_capacity", "mole_concentration_of_acetic_acid_in_air", "mole_concentration_of_aceto_nitrile_in_air", "mole_concentration_of_adenosine_triphosphate_in_sea_water", "mole_concentration_of_alpha_hexachlorocyclohexane_in_air", "mole_concentration_of_alpha_pinene_in_air", "mole_concentration_of_ammonia_in_air", "mole_concentration_of_ammonium_in_sea_water", "mole_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_atomic_bromine_in_air", "mole_concentration_of_atomic_chlorine_in_air", "mole_concentration_of_atomic_nitrogen_in_air", "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", "mole_concentration_of_benzene_in_air", "mole_concentration_of_beta_pinene_in_air", "mole_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mole_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_bromine_chloride_in_air", "mole_concentration_of_bromine_monoxide_in_air", "mole_concentration_of_bromine_nitrate_in_air", "mole_concentration_of_brox_expressed_as_bromine_in_air", "mole_concentration_of_butane_in_air", "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_carbonate_abiotic_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_calcite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_natural_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbon_dioxide_in_air", "mole_concentration_of_carbon_monoxide_in_air", "mole_concentration_of_carbon_tetrachloride_in_air", "mole_concentration_of_cfc113a_in_air", "mole_concentration_of_cfc113_in_air", "mole_concentration_of_cfc114_in_air", "mole_concentration_of_cfc115_in_air", "mole_concentration_of_cfc11_in_air", "mole_concentration_of_cfc11_in_sea_water", "mole_concentration_of_cfc12_in_air", "mole_concentration_of_cfc12_in_sea_water", "mole_concentration_of_chlorine_dioxide_in_air", "mole_concentration_of_chlorine_monoxide_in_air", "mole_concentration_of_chlorine_nitrate_in_air", "mole_concentration_of_clox_expressed_as_chlorine_in_air", "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_dichlorine_peroxide_in_air", "mole_concentration_of_dimethyl_sulfide_in_air", "mole_concentration_of_dimethyl_sulfide_in_sea_water", "mole_concentration_of_dinitrogen_pentoxide_in_air", "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_abiotic_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_natural_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", "mole_concentration_of_dissolved_iron_in_sea_water", "mole_concentration_of_dissolved_molecular_nitrogen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile", "mole_concentration_of_dissolved_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_carbon_in_sea_water", "mole_concentration_of_dissolved_organic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_phosphorus_in_sea_water", "mole_concentration_of_ethane_in_air", "mole_concentration_of_ethanol_in_air", "mole_concentration_of_ethene_in_air", "mole_concentration_of_ethyne_in_air", "mole_concentration_of_formaldehyde_in_air", "mole_concentration_of_formic_acid_in_air", "mole_concentration_of_gaseous_divalent_mercury_in_air", "mole_concentration_of_gaseous_elemental_mercury_in_air", "mole_concentration_of_halon1202_in_air", "mole_concentration_of_halon1211_in_air", "mole_concentration_of_halon1301_in_air", "mole_concentration_of_halon2402_in_air", "mole_concentration_of_hcc140a_in_air", "mole_concentration_of_hcfc141b_in_air", "mole_concentration_of_hcfc142b_in_air", "mole_concentration_of_hcfc22_in_air", "mole_concentration_of_hexachlorobiphenyl_in_air", "mole_concentration_of_hox_expressed_as_hydrogen_in_air", "mole_concentration_of_hydrogen_bromide_in_air", "mole_concentration_of_hydrogen_chloride_in_air", "mole_concentration_of_hydrogen_cyanide_in_air", "mole_concentration_of_hydrogen_peroxide_in_air", "mole_concentration_of_hydrogen_sulfide_in_sea_water", "mole_concentration_of_hydroperoxyl_radical_in_air", "mole_concentration_of_hydroxyl_radical_in_air", "mole_concentration_of_hypobromous_acid_in_air", "mole_concentration_of_hypochlorous_acid_in_air", "mole_concentration_of_inorganic_bromine_in_air", "mole_concentration_of_inorganic_chlorine_in_air", "mole_concentration_of_isoprene_in_air", "mole_concentration_of_limonene_in_air", "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_methane_in_air", "mole_concentration_of_methanol_in_air", "mole_concentration_of_methyl_bromide_in_air", "mole_concentration_of_methyl_chloride_in_air", "mole_concentration_of_methyl_hydroperoxide_in_air", "mole_concentration_of_methyl_peroxy_radical_in_air", "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_molecular_hydrogen_in_air", "mole_concentration_of_nitrate_and_nitrite_in_sea_water", "mole_concentration_of_nitrate_in_sea_water", "mole_concentration_of_nitrate_radical_in_air", "mole_concentration_of_nitric_acid_in_air", "mole_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_concentration_of_nitrite_in_sea_water", "mole_concentration_of_nitrogen_dioxide_in_air", "mole_concentration_of_nitrogen_monoxide_in_air", "mole_concentration_of_nitrous_acid_in_air", "mole_concentration_of_nitrous_oxide_in_air", "mole_concentration_of_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_nox_expressed_as_nitrogen_in_air", "mole_concentration_of_noy_expressed_as_nitrogen_in_air", "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water", "mole_concentration_of_ozone_in_air", "mole_concentration_of_particulate_matter_expressed_as_carbon_in_sea_water", "mole_concentration_of_particulate_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_nitrogen_in_sea_water", "mole_concentration_of_peroxyacetyl_nitrate_in_air", "mole_concentration_of_peroxynitric_acid_in_air", "mole_concentration_of_phosphate_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water", "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_propane_in_air", "mole_concentration_of_propene_in_air", "mole_concentration_of_radon_in_air", "mole_concentration_of_silicate_in_sea_water", "mole_concentration_of_sulfur_dioxide_in_air", "mole_concentration_of_sulfur_hexafluoride_in_sea_water", "mole_concentration_of_toluene_in_air", "mole_concentration_of_water_vapor_in_air", "mole_concentration_of_xylene_in_air", "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water", "mole_content_of_carbon_monoxide_in_atmosphere_layer", "mole_content_of_methane_in_atmosphere_layer", "mole_content_of_nitrogen_dioxide_in_atmosphere_layer", "mole_content_of_ozone_in_atmosphere_layer", "mole_fraction_of_acetaldehyde_in_air", "mole_fraction_of_acetic_acid_in_air", "mole_fraction_of_acetone_in_air", "mole_fraction_of_aceto_nitrile_in_air", "mole_fraction_of_aldehydes_in_air", "mole_fraction_of_alkanes_in_air", "mole_fraction_of_alkenes_in_air", "mole_fraction_of_alpha_hexachlorocyclohexane_in_air", "mole_fraction_of_alpha_pinene_in_air", "mole_fraction_of_ammonia_in_air", "mole_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_artificial_tracer_with_fixed_lifetime_in_air", "mole_fraction_of_atomic_bromine_in_air", "mole_fraction_of_atomic_chlorine_in_air", "mole_fraction_of_atomic_nitrogen_in_air", "mole_fraction_of_benzene_in_air", "mole_fraction_of_beta_pinene_in_air", "mole_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_bromine_chloride_in_air", "mole_fraction_of_bromine_monoxide_in_air", "mole_fraction_of_bromine_nitrate_in_air", "mole_fraction_of_brox_expressed_as_bromine_in_air", "mole_fraction_of_butane_in_air", "mole_fraction_of_carbon_dioxide_in_air", "mole_fraction_of_carbon_monoxide_in_air", "mole_fraction_of_carbon_tetrachloride_in_air", "mole_fraction_of_carbon_tetrafluoride_in_air", "mole_fraction_of_carbonyl_fluoride_in_air", "mole_fraction_of_carbonyl_sulfide_in_air", "mole_fraction_of_cfc113a_in_air", "mole_fraction_of_cfc113_in_air", "mole_fraction_of_cfc114_in_air", "mole_fraction_of_cfc115_in_air", "mole_fraction_of_cfc11_in_air", "mole_fraction_of_cfc12_in_air", "mole_fraction_of_chlorine_dioxide_in_air", "mole_fraction_of_chlorine_monoxide_in_air", "mole_fraction_of_chlorine_nitrate_in_air", "mole_fraction_of_chloroform_in_air", "mole_fraction_of_clox_expressed_as_chlorine_in_air", "mole_fraction_of_dichlorine_in_air", "mole_fraction_of_dichlorine_peroxide_in_air", "mole_fraction_of_dichloromethane_in_air", "mole_fraction_of_dimethyl_sulfide_in_air", "mole_fraction_of_dinitrogen_pentoxide_in_air", "mole_fraction_of_ethane_in_air", "mole_fraction_of_ethanol_in_air", "mole_fraction_of_ethene_in_air", "mole_fraction_of_ethyne_in_air", "mole_fraction_of_formaldehyde_in_air", "mole_fraction_of_formic_acid_in_air", "mole_fraction_of_gaseous_divalent_mercury_in_air", "mole_fraction_of_gaseous_elemental_mercury_in_air", "mole_fraction_of_glyoxal_in_air", "mole_fraction_of_halon1202_in_air", "mole_fraction_of_halon1211_in_air", "mole_fraction_of_halon1301_in_air", "mole_fraction_of_halon2402_in_air", "mole_fraction_of_hcc140a_in_air", "mole_fraction_of_hcfc124_in_air", "mole_fraction_of_hcfc141b_in_air", "mole_fraction_of_hcfc142b_in_air", "mole_fraction_of_hcfc22_in_air", "mole_fraction_of_hexachlorobiphenyl_in_air", "mole_fraction_of_hfc125_in_air", "mole_fraction_of_hfc134a_in_air", "mole_fraction_of_hfc143a_in_air", "mole_fraction_of_hfc152a_in_air", "mole_fraction_of_hfc227ea_in_air", "mole_fraction_of_hfc236fa_in_air", "mole_fraction_of_hfc23_in_air", "mole_fraction_of_hfc245fa_in_air", "mole_fraction_of_hfc32_in_air", "mole_fraction_of_hfc365mfc_in_air", "mole_fraction_of_hfc4310mee_in_air", "mole_fraction_of_hox_expressed_as_hydrogen_in_air", "mole_fraction_of_hydrogen_bromide_in_air", "mole_fraction_of_hydrogen_chloride_in_air", "mole_fraction_of_hydrogen_cyanide_in_air", "mole_fraction_of_hydrogen_peroxide_in_air", "mole_fraction_of_hydrogen_sulfide_in_air", "mole_fraction_of_hydroperoxyl_radical_in_air", "mole_fraction_of_hydroxyl_radical_in_air", "mole_fraction_of_hypobromous_acid_in_air", "mole_fraction_of_hypochlorous_acid_in_air", "mole_fraction_of_inorganic_bromine_in_air", "mole_fraction_of_inorganic_chlorine_in_air", "mole_fraction_of_isoprene_in_air", "mole_fraction_of_limonene_in_air", "mole_fraction_of_methane_in_air", "mole_fraction_of_methanol_in_air", "mole_fraction_of_methyl_bromide_in_air", "mole_fraction_of_methyl_chloride_in_air", "mole_fraction_of_methylglyoxal_in_air", "mole_fraction_of_methyl_hydroperoxide_in_air", "mole_fraction_of_methyl_peroxy_radical_in_air", "mole_fraction_of_molecular_hydrogen_in_air", "mole_fraction_of_nitrate_radical_in_air", "mole_fraction_of_nitric_acid_in_air", "mole_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_fraction_of_nitrogen_dioxide_in_air", "mole_fraction_of_nitrogen_monoxide_in_air", "mole_fraction_of_nitrogen_trifluoride_in_air", "mole_fraction_of_nitrous_acid_in_air", "mole_fraction_of_nitrous_oxide_in_air", "mole_fraction_of_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_nox_expressed_as_nitrogen_in_air", "mole_fraction_of_noy_expressed_as_nitrogen_in_air", "mole_fraction_of_organic_nitrates_in_air", "mole_fraction_of_ox_in_air", "mole_fraction_of_ozone_in_air", "mole_fraction_of_perchloroethene_in_air", "mole_fraction_of_peroxyacetyl_nitrate_in_air", "mole_fraction_of_peroxynitric_acid_in_air", "mole_fraction_of_pfc116_in_air", "mole_fraction_of_pfc218_in_air", "mole_fraction_of_pfc318_in_air", "mole_fraction_of_propane_in_air", "mole_fraction_of_propene_in_air", "mole_fraction_of_radon_in_air", "mole_fraction_of_sulfur_dioxide_in_air", "mole_fraction_of_sulfur_hexafluoride_in_air", "mole_fraction_of_sulfuryl_fluoride_in_air", "mole_fraction_of_toluene_in_air", "mole_fraction_of_water_vapor_in_air", "mole_fraction_of_xylene_in_air", "mole_ratio_of_nitrate_to_phosphate_in_sea_water", "moles_of_cfc11_per_unit_mass_in_sea_water", "moles_of_dissolved_inorganic_carbon_per_unit_mass_in_sea_water", "moles_of_nitrate_and_nitrite_per_unit_mass_in_sea_water", "moles_of_nitrate_per_unit_mass_in_sea_water", "moles_of_nitrite_per_unit_mass_in_sea_water", "moles_of_oxygen_per_unit_mass_in_sea_water", "moles_of_phosphate_per_unit_mass_in_sea_water", "moles_of_silicate_per_unit_mass_in_sea_water", "multi_variate_test_quality_flag", "neighbor_test_quality_flag", "net_downward_longwave_flux_in_air", "net_downward_longwave_flux_in_air_assuming_clear_sky", "net_downward_radiative_flux_at_top_of_atmosphere_model", "net_downward_shortwave_flux_at_sea_water_surface", "net_downward_shortwave_flux_in_air", "net_downward_shortwave_flux_in_air_assuming_clear_sky", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_calcareous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diatoms", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diazotrophic_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_miscellaneous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_picophytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_due_to_nitrate_utilization", "net_primary_production_of_biomass_expressed_as_carbon_per_unit_volume_in_sea_water", "net_primary_productivity_of_biomass_expressed_as_carbon", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_leaves", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_miscellaneous_living_matter", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_roots", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_wood", "net_rate_of_absorption_of_longwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_ocean_layer", "net_upward_longwave_flux_in_air", "net_upward_longwave_flux_in_air_assuming_clear_sky", "net_upward_shortwave_flux_in_air", "net_upward_shortwave_flux_in_air_assuming_clear_sky", "nitrogen_growth_limitation_of_calcareous_phytoplankton", "nitrogen_growth_limitation_of_diatoms", "nitrogen_growth_limitation_of_diazotrophic_phytoplankton", "nitrogen_growth_limitation_of_miscellaneous_phytoplankton", "nitrogen_growth_limitation_of_picophytoplankton", "nitrogen_mass_content_of_forestry_and_agricultural_products", "nitrogen_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "nitrogen_mass_flux_into_litter_from_vegetation", "nitrogen_mass_flux_into_soil_from_litter", "nitrogen_mass_flux_into_soil_from_vegetation_excluding_litter", "non_tidal_elevation_of_sea_surface_height", "normalized_difference_vegetation_index", "northward_air_velocity_relative_to_sea_water", "northward_atmosphere_dry_static_energy_transport_across_unit_distance", "northward_atmosphere_heat_transport", "northward_atmosphere_water_transport_across_unit_distance", "northward_atmosphere_water_vapor_transport_across_unit_distance", "northward_derivative_of_eastward_sea_ice_velocity", "northward_derivative_of_eastward_wind", "northward_derivative_of_northward_wind", "northward_derivative_of_wind_from_direction", "northward_eliassen_palm_flux_in_air", "northward_flood_water_velocity", "northward_friction_velocity_in_air", "northward_heat_flux_in_air_due_to_eddy_advection", "northward_land_ice_velocity", "northward_mass_flux_of_air", "northward_momentum_flux_correction", "northward_northward_derivative_of_geopotential", "northward_ocean_freshwater_transport", "northward_ocean_freshwater_transport_due_to_diffusion", "northward_ocean_freshwater_transport_due_to_gyre", "northward_ocean_freshwater_transport_due_to_overturning", "northward_ocean_freshwater_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport", "northward_ocean_heat_transport_due_to_diffusion", "northward_ocean_heat_transport_due_to_gyre", "northward_ocean_heat_transport_due_to_overturning", "northward_ocean_heat_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_diffusion", "northward_ocean_heat_transport_due_to_parameterized_submesoscale_eddy_advection", "northward_ocean_salt_transport", "northward_ocean_salt_transport_due_to_diffusion", "northward_ocean_salt_transport_due_to_gyre", "northward_ocean_salt_transport_due_to_overturning", "northward_ocean_salt_transport_due_to_parameterized_eddy_advection", "northward_sea_ice_displacement", "northward_sea_ice_velocity", "northward_sea_water_velocity", "northward_sea_water_velocity_assuming_no_tide", "northward_sea_water_velocity_at_sea_floor", "northward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "northward_sea_water_velocity_due_to_tides", "northward_transformed_eulerian_mean_air_velocity", "northward_upward_derivative_of_geopotential", "northward_water_vapor_flux_in_air", "northward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "northward_westward_derivative_of_geopotential", "northward_wind", "northward_wind_shear", "nudging_increment_in_mass_content_of_water_in_soil", "nudging_increment_in_snow_and_ice_amount_on_land", "number_concentration_of_aerosol_particles_at_stp_in_air", "number_concentration_of_ambient_aerosol_particles_in_air", "number_concentration_of_biological_taxon_in_sea_water", "number_concentration_of_cloud_condensation_nuclei_at_stp_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air_at_liquid_water_cloud_top", "number_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "number_concentration_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "number_concentration_of_ice_crystals_in_air", "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top", "number_concentration_of_nucleation_mode_ambient_aerosol_particles_in_air", "number_concentration_of_ozone_molecules_in_air", "number_concentration_of_pm10_aerosol_particles_in_air", "number_concentration_of_pm2p5_aerosol_particles_in_air", "number_concentration_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "number_of_days_with_air_temperature_above_threshold", "number_of_days_with_air_temperature_below_threshold", "number_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "number_of_days_with_surface_temperature_below_threshold", "number_of_days_with_wind_speed_above_threshold", "number_of_icebergs_per_unit_area", "number_of_missing_observations", "number_of_observations", "ocean_barotropic_mass_streamfunction", "ocean_barotropic_streamfunction", "ocean_double_sigma_coordinate", "ocean_heat_x_transport", "ocean_heat_x_transport_due_to_diffusion", "ocean_heat_x_transport_due_to_parameterized_eddy_advection", "ocean_heat_y_transport", "ocean_heat_y_transport_due_to_diffusion", "ocean_heat_y_transport_due_to_parameterized_eddy_advection", "ocean_isopycnal_layer_thickness_diffusivity", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_vertical_friction", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_xy_friction", "ocean_mass_content_of_dissolved_inorganic_carbon", "ocean_mass_content_of_dissolved_organic_carbon", "ocean_mass_content_of_particulate_organic_matter_expressed_as_carbon", "ocean_mass_x_transport", "ocean_mass_x_transport_due_to_advection", "ocean_mass_x_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_mass_y_transport", "ocean_mass_y_transport_due_to_advection", "ocean_mass_y_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "ocean_meridional_overturning_streamfunction", "ocean_mixed_layer_thickness", "ocean_mixed_layer_thickness_defined_by_mixing_scheme", "ocean_mixed_layer_thickness_defined_by_sigma_t", "ocean_mixed_layer_thickness_defined_by_sigma_theta", "ocean_mixed_layer_thickness_defined_by_temperature", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_deficit", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_threshold", "ocean_momentum_xy_biharmonic_diffusivity", "ocean_momentum_xy_laplacian_diffusivity", "ocean_montgomery_potential", "ocean_relative_vorticity", "ocean_rigid_lid_pressure", "ocean_rigid_lid_pressure_expressed_as_sea_surface_height_above_geoid", "ocean_salt_x_transport", "ocean_salt_y_transport", "ocean_s_coordinate", "ocean_s_coordinate_g1", "ocean_s_coordinate_g2", "ocean_sigma_coordinate", "ocean_sigma_z_coordinate", "ocean_tracer_biharmonic_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_epineutral_biharmonic_diffusivity", "ocean_tracer_epineutral_laplacian_diffusivity", "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_xy_biharmonic_diffusivity", "ocean_tracer_xy_laplacian_diffusivity", "ocean_vertical_diffusivity", "ocean_vertical_heat_diffusivity", "ocean_vertical_momentum_diffusivity", "ocean_vertical_momentum_diffusivity_due_to_background", "ocean_vertical_momentum_diffusivity_due_to_convection", "ocean_vertical_momentum_diffusivity_due_to_form_drag", "ocean_vertical_momentum_diffusivity_due_to_tides", "ocean_vertical_salt_diffusivity", "ocean_vertical_tracer_diffusivity", "ocean_vertical_tracer_diffusivity_due_to_background", "ocean_vertical_tracer_diffusivity_due_to_convection", "ocean_vertical_tracer_diffusivity_due_to_tides", "ocean_vertical_tracer_diffusivity_due_to_wind_mixing", "ocean_volume", "ocean_volume_fraction", "ocean_volume_transport_across_line", "ocean_volume_x_transport", "ocean_volume_y_transport", "ocean_y_overturning_mass_streamfunction", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "omnidirectional_photosynthetic_spherical_irradiance_in_sea_water", "omnidirectional_spherical_irradiance_per_unit_wavelength_in_sea_water", "optical_thickness_of_atmosphere_layer_due_to_ambient_aerosol_particles", "original_air_pressure_of_lifted_parcel", "outgoing_water_volume_transport_along_river_channel", "partial_pressure_of_carbon_dioxide_in_sea_water", "partial_pressure_of_methane_in_sea_water", "permafrost_active_layer_thickness", "permafrost_area_fraction", "permafrost_layer_thickness", "phase_of_global_average_sea_level_change", "photolysis_rate_of_molecular_oxygen", "photolysis_rate_of_nitrogen_dioxide", "photolysis_rate_of_ozone", "photolysis_rate_of_ozone_to_1D_oxygen_atom", "planetary_albedo", "platform_azimuth_angle", "platform_course", "platform_heave", "platform_heave_down", "platform_heave_rate", "platform_heave_rate_down", "platform_heave_rate_up", "platform_heave_up", "platform_id", "platform_name", "platform_orientation", "platform_pitch", "platform_pitch_fore_down", "platform_pitch_fore_up", "platform_pitch_rate", "platform_pitch_rate_fore_down", "platform_pitch_rate_fore_up", "platform_roll", "platform_roll_rate", "platform_roll_rate_starboard_down", "platform_roll_rate_starboard_up", "platform_roll_starboard_down", "platform_roll_starboard_up", "platform_speed_wrt_air", "platform_speed_wrt_ground", "platform_speed_wrt_sea_water", "platform_surge", "platform_surge_aft", "platform_surge_fore", "platform_surge_rate", "platform_surge_rate_aft", "platform_surge_rate_fore", "platform_sway", "platform_sway_port", "platform_sway_rate", "platform_sway_rate_port", "platform_sway_rate_starboard", "platform_sway_starboard", "platform_view_angle", "platform_yaw", "platform_yaw_fore_port", "platform_yaw_fore_starboard", "platform_yaw_rate", "platform_yaw_rate_fore_port", "platform_yaw_rate_fore_starboard", "platform_zenith_angle", "potential_energy_content_of_atmosphere_layer", "potential_vorticity_of_atmosphere_layer", "potential_vorticity_of_ocean_layer", "precipitation_amount", "precipitation_flux", "precipitation_flux_containing_17O", "precipitation_flux_containing_18O", "precipitation_flux_containing_single_2H", "precipitation_flux_onto_canopy", "predominant_precipitation_type_at_surface", "pressure_at_effective_cloud_top_defined_by_infrared_radiation", "probability_distribution_of_wind_from_direction_over_time", "product_of_air_temperature_and_specific_humidity", "product_of_eastward_sea_water_velocity_and_salinity", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_eastward_wind_and_air_temperature", "product_of_eastward_wind_and_geopotential_height", "product_of_eastward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_eastward_wind_and_northward_wind", "product_of_eastward_wind_and_specific_humidity", "product_of_eastward_wind_and_upward_air_velocity", "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", "product_of_lagrangian_tendency_of_air_pressure_and_geopotential_height", "product_of_lagrangian_tendency_of_air_pressure_and_specific_humidity", "product_of_northward_sea_water_velocity_and_salinity", "product_of_northward_sea_water_velocity_and_temperature", "product_of_northward_wind_and_air_temperature", "product_of_northward_wind_and_geopotential_height", "product_of_northward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_northward_wind_and_specific_humidity", "product_of_northward_wind_and_upward_air_velocity", "product_of_upward_air_velocity_and_air_temperature", "product_of_upward_air_velocity_and_specific_humidity", "projection_x_angular_coordinate", "projection_x_coordinate", "projection_y_angular_coordinate", "projection_y_coordinate", "proportion_of_acceptable_signal_returns_from_acoustic_instrument_in_sea_water", "quality_flag", "radial_sea_water_velocity_away_from_instrument", "radial_sea_water_velocity_toward_instrument", "radial_velocity_of_scatterers_away_from_instrument", "radial_velocity_of_scatterers_toward_instrument", "radiation_frequency", "radiation_wavelength", "radioactivity_concentration_in_air", "radioactivity_concentration_of_101Mo_in_air", "radioactivity_concentration_of_101Tc_in_air", "radioactivity_concentration_of_102Mo_in_air", "radioactivity_concentration_of_102mTc_in_air", "radioactivity_concentration_of_102Tc_in_air", "radioactivity_concentration_of_103mRh_in_air", "radioactivity_concentration_of_103Ru_in_air", "radioactivity_concentration_of_104Tc_in_air", "radioactivity_concentration_of_105mRh_in_air", "radioactivity_concentration_of_105Rh_in_air", "radioactivity_concentration_of_105Ru_in_air", "radioactivity_concentration_of_106mRh_in_air", "radioactivity_concentration_of_106Rh_in_air", "radioactivity_concentration_of_106Ru_in_air", "radioactivity_concentration_of_107mPd_in_air", "radioactivity_concentration_of_107Pd_in_air", "radioactivity_concentration_of_107Rh_in_air", "radioactivity_concentration_of_109mAg_in_air", "radioactivity_concentration_of_109Pd_in_air", "radioactivity_concentration_of_110mAg_in_air", "radioactivity_concentration_of_111Ag_in_air", "radioactivity_concentration_of_111mAg_in_air", "radioactivity_concentration_of_111mCd_in_air", "radioactivity_concentration_of_111mPd_in_air", "radioactivity_concentration_of_111Pd_in_air", "radioactivity_concentration_of_112Ag_in_air", "radioactivity_concentration_of_112Pd_in_air", "radioactivity_concentration_of_113Ag_in_air", "radioactivity_concentration_of_113Cd_in_air", "radioactivity_concentration_of_113mAg_in_air", "radioactivity_concentration_of_113mCd_in_air", "radioactivity_concentration_of_113mIn_in_air", "radioactivity_concentration_of_115Ag_in_air", "radioactivity_concentration_of_115Cd_in_air", "radioactivity_concentration_of_115In_in_air", "radioactivity_concentration_of_115mAg_in_air", "radioactivity_concentration_of_115mCd_in_air", "radioactivity_concentration_of_115mIn_in_air", "radioactivity_concentration_of_116In_in_air", "radioactivity_concentration_of_116mIn_in_air", "radioactivity_concentration_of_117Cd_in_air", "radioactivity_concentration_of_117In_in_air", "radioactivity_concentration_of_117mCd_in_air", "radioactivity_concentration_of_117mIn_in_air", "radioactivity_concentration_of_117mSn_in_air", "radioactivity_concentration_of_118Cd_in_air", "radioactivity_concentration_of_118In_in_air", "radioactivity_concentration_of_118mIn_in_air", "radioactivity_concentration_of_119In_in_air", "radioactivity_concentration_of_119mIn_in_air", "radioactivity_concentration_of_119mSn_in_air", "radioactivity_concentration_of_11C_in_air", "radioactivity_concentration_of_121mSn_in_air", "radioactivity_concentration_of_121Sn_in_air", "radioactivity_concentration_of_123mSn_in_air", "radioactivity_concentration_of_123Sn_in_air", "radioactivity_concentration_of_124mSb_in_air", "radioactivity_concentration_of_124Sb_in_air", "radioactivity_concentration_of_125mTe_in_air", "radioactivity_concentration_of_125Sb_in_air", "radioactivity_concentration_of_125Sn_in_air", "radioactivity_concentration_of_126mSb_in_air", "radioactivity_concentration_of_126Sb_in_air", "radioactivity_concentration_of_126Sn_in_air", "radioactivity_concentration_of_127mTe_in_air", "radioactivity_concentration_of_127Sb_in_air", "radioactivity_concentration_of_127Sn_in_air", "radioactivity_concentration_of_127Te_in_air", "radioactivity_concentration_of_128mSb_in_air", "radioactivity_concentration_of_128Sb_in_air", "radioactivity_concentration_of_128Sn_in_air", "radioactivity_concentration_of_129I_in_air", "radioactivity_concentration_of_129mTe_in_air", "radioactivity_concentration_of_129mXe_in_air", "radioactivity_concentration_of_129Sb_in_air", "radioactivity_concentration_of_129Te_in_air", "radioactivity_concentration_of_130I_in_air", "radioactivity_concentration_of_130mI_in_air", "radioactivity_concentration_of_130mSb_in_air", "radioactivity_concentration_of_130Sb_in_air", "radioactivity_concentration_of_130Sn_in_air", "radioactivity_concentration_of_131I_in_air", "radioactivity_concentration_of_131mTe_in_air", "radioactivity_concentration_of_131mXe_in_air", "radioactivity_concentration_of_131Sb_in_air", "radioactivity_concentration_of_131Te_in_air", "radioactivity_concentration_of_132I_in_air", "radioactivity_concentration_of_132Te_in_air", "radioactivity_concentration_of_133I_in_air", "radioactivity_concentration_of_133mI_in_air", "radioactivity_concentration_of_133mTe_in_air", "radioactivity_concentration_of_133mXe_in_air", "radioactivity_concentration_of_133Te_in_air", "radioactivity_concentration_of_133Xe_in_air", "radioactivity_concentration_of_134Cs_in_air", "radioactivity_concentration_of_134I_in_air", "radioactivity_concentration_of_134mCs_in_air", "radioactivity_concentration_of_134mI_in_air", "radioactivity_concentration_of_134mXe_in_air", "radioactivity_concentration_of_134Te_in_air", "radioactivity_concentration_of_135Cs_in_air", "radioactivity_concentration_of_135I_in_air", "radioactivity_concentration_of_135mBa_in_air", "radioactivity_concentration_of_135mCs_in_air", "radioactivity_concentration_of_135mXe_in_air", "radioactivity_concentration_of_135Xe_in_air", "radioactivity_concentration_of_136Cs_in_air", "radioactivity_concentration_of_137Cs_in_air", "radioactivity_concentration_of_137mBa_in_air", "radioactivity_concentration_of_137Xe_in_air", "radioactivity_concentration_of_138Cs_in_air", "radioactivity_concentration_of_138Xe_in_air", "radioactivity_concentration_of_139Ba_in_air", "radioactivity_concentration_of_13N_in_air", "radioactivity_concentration_of_140Ba_in_air", "radioactivity_concentration_of_140La_in_air", "radioactivity_concentration_of_141Ce_in_air", "radioactivity_concentration_of_141La_in_air", "radioactivity_concentration_of_142Ce_in_air", "radioactivity_concentration_of_142La_in_air", "radioactivity_concentration_of_142mPr_in_air", "radioactivity_concentration_of_142Pr_in_air", "radioactivity_concentration_of_143Ce_in_air", "radioactivity_concentration_of_143La_in_air", "radioactivity_concentration_of_143Pr_in_air", "radioactivity_concentration_of_144Ce_in_air", "radioactivity_concentration_of_144mPr_in_air", "radioactivity_concentration_of_144Nd_in_air", "radioactivity_concentration_of_144Pr_in_air", "radioactivity_concentration_of_145Pr_in_air", "radioactivity_concentration_of_146Ce_in_air", "radioactivity_concentration_of_146Pr_in_air", "radioactivity_concentration_of_147Nd_in_air", "radioactivity_concentration_of_147Pm_in_air", "radioactivity_concentration_of_147Pr_in_air", "radioactivity_concentration_of_147Sm_in_air", "radioactivity_concentration_of_148mPm_in_air", "radioactivity_concentration_of_148Pm_in_air", "radioactivity_concentration_of_148Sm_in_air", "radioactivity_concentration_of_149Nd_in_air", "radioactivity_concentration_of_149Pm_in_air", "radioactivity_concentration_of_149Sm_in_air", "radioactivity_concentration_of_150Pm_in_air", "radioactivity_concentration_of_151Nd_in_air", "radioactivity_concentration_of_151Pm_in_air", "radioactivity_concentration_of_151Sm_in_air", "radioactivity_concentration_of_152mPm_in_air", "radioactivity_concentration_of_152Nd_in_air", "radioactivity_concentration_of_152Pm_in_air", "radioactivity_concentration_of_153Sm_in_air", "radioactivity_concentration_of_154Eu_in_air", "radioactivity_concentration_of_155Eu_in_air", "radioactivity_concentration_of_155Sm_in_air", "radioactivity_concentration_of_156Eu_in_air", "radioactivity_concentration_of_156Sm_in_air", "radioactivity_concentration_of_157Eu_in_air", "radioactivity_concentration_of_158Eu_in_air", "radioactivity_concentration_of_159Eu_in_air", "radioactivity_concentration_of_159Gd_in_air", "radioactivity_concentration_of_15O_in_air", "radioactivity_concentration_of_160Tb_in_air", "radioactivity_concentration_of_161Tb_in_air", "radioactivity_concentration_of_162Gd_in_air", "radioactivity_concentration_of_162mTb_in_air", "radioactivity_concentration_of_162Tb_in_air", "radioactivity_concentration_of_163Tb_in_air", "radioactivity_concentration_of_165Dy_in_air", "radioactivity_concentration_of_18F_in_air", "radioactivity_concentration_of_206Hg_in_air", "radioactivity_concentration_of_206Tl_in_air", "radioactivity_concentration_of_207mPb_in_air", "radioactivity_concentration_of_207Tl_in_air", "radioactivity_concentration_of_208Tl_in_air", "radioactivity_concentration_of_209Bi_in_air", "radioactivity_concentration_of_209Pb_in_air", "radioactivity_concentration_of_209Tl_in_air", "radioactivity_concentration_of_210Bi_in_air", "radioactivity_concentration_of_210Pb_in_air", "radioactivity_concentration_of_210Po_in_air", "radioactivity_concentration_of_210Tl_in_air", "radioactivity_concentration_of_211Bi_in_air", "radioactivity_concentration_of_211Pb_in_air", "radioactivity_concentration_of_211Po_in_air", "radioactivity_concentration_of_212Bi_in_air", "radioactivity_concentration_of_212Pb_in_air", "radioactivity_concentration_of_212Po_in_air", "radioactivity_concentration_of_213Bi_in_air", "radioactivity_concentration_of_213Pb_in_air", "radioactivity_concentration_of_213Po_in_air", "radioactivity_concentration_of_214Bi_in_air", "radioactivity_concentration_of_214Pb_in_air", "radioactivity_concentration_of_214Po_in_air", "radioactivity_concentration_of_215At_in_air", "radioactivity_concentration_of_215Bi_in_air", "radioactivity_concentration_of_215Po_in_air", "radioactivity_concentration_of_216At_in_air", "radioactivity_concentration_of_216Po_in_air", "radioactivity_concentration_of_217At_in_air", "radioactivity_concentration_of_217Po_in_air", "radioactivity_concentration_of_218At_in_air", "radioactivity_concentration_of_218Po_in_air", "radioactivity_concentration_of_218Rn_in_air", "radioactivity_concentration_of_219At_in_air", "radioactivity_concentration_of_219Rn_in_air", "radioactivity_concentration_of_220Rn_in_air", "radioactivity_concentration_of_221Fr_in_air", "radioactivity_concentration_of_221Rn_in_air", "radioactivity_concentration_of_222Fr_in_air", "radioactivity_concentration_of_222Ra_in_air", "radioactivity_concentration_of_222Rn_in_air", "radioactivity_concentration_of_223Fr_in_air", "radioactivity_concentration_of_223Ra_in_air", "radioactivity_concentration_of_223Rn_in_air", "radioactivity_concentration_of_224Ra_in_air", "radioactivity_concentration_of_225Ac_in_air", "radioactivity_concentration_of_225Ra_in_air", "radioactivity_concentration_of_226Ac_in_air", "radioactivity_concentration_of_226Ra_in_air", "radioactivity_concentration_of_226Th_in_air", "radioactivity_concentration_of_227Ac_in_air", "radioactivity_concentration_of_227Ra_in_air", "radioactivity_concentration_of_227Th_in_air", "radioactivity_concentration_of_228Ac_in_air", "radioactivity_concentration_of_228Ra_in_air", "radioactivity_concentration_of_228Th_in_air", "radioactivity_concentration_of_229Ac_in_air", "radioactivity_concentration_of_229Ra_in_air", "radioactivity_concentration_of_229Th_in_air", "radioactivity_concentration_of_230Pa_in_air", "radioactivity_concentration_of_230Th_in_air", "radioactivity_concentration_of_230U_in_air", "radioactivity_concentration_of_231Pa_in_air", "radioactivity_concentration_of_231Th_in_air", "radioactivity_concentration_of_231U_in_air", "radioactivity_concentration_of_232Pa_in_air", "radioactivity_concentration_of_232Th_in_air", "radioactivity_concentration_of_232U_in_air", "radioactivity_concentration_of_233Pa_in_air", "radioactivity_concentration_of_233Th_in_air", "radioactivity_concentration_of_233U_in_air", "radioactivity_concentration_of_234mPa_in_air", "radioactivity_concentration_of_234Pa_in_air", "radioactivity_concentration_of_234Th_in_air", "radioactivity_concentration_of_234U_in_air", "radioactivity_concentration_of_235Np_in_air", "radioactivity_concentration_of_235Pu_in_air", "radioactivity_concentration_of_235U_in_air", "radioactivity_concentration_of_236mNp_in_air", "radioactivity_concentration_of_236Np_in_air", "radioactivity_concentration_of_236Pu_in_air", "radioactivity_concentration_of_236U_in_air", "radioactivity_concentration_of_237Np_in_air", "radioactivity_concentration_of_237Pu_in_air", "radioactivity_concentration_of_237U_in_air", "radioactivity_concentration_of_238Np_in_air", "radioactivity_concentration_of_238Pu_in_air", "radioactivity_concentration_of_238U_in_air", "radioactivity_concentration_of_239Np_in_air", "radioactivity_concentration_of_239Pu_in_air", "radioactivity_concentration_of_239U_in_air", "radioactivity_concentration_of_240Am_in_air", "radioactivity_concentration_of_240mNp_in_air", "radioactivity_concentration_of_240Np_in_air", "radioactivity_concentration_of_240Pu_in_air", "radioactivity_concentration_of_240U_in_air", "radioactivity_concentration_of_241Am_in_air", "radioactivity_concentration_of_241Cm_in_air", "radioactivity_concentration_of_241Pu_in_air", "radioactivity_concentration_of_242Am_in_air", "radioactivity_concentration_of_242Cm_in_air", "radioactivity_concentration_of_242m1Am_in_air", "radioactivity_concentration_of_242m2Am_in_air", "radioactivity_concentration_of_242Pu_in_air", "radioactivity_concentration_of_243Am_in_air", "radioactivity_concentration_of_243Cm_in_air", "radioactivity_concentration_of_243Pu_in_air", "radioactivity_concentration_of_244Am_in_air", "radioactivity_concentration_of_244Cm_in_air", "radioactivity_concentration_of_244mAm_in_air", "radioactivity_concentration_of_244Pu_in_air", "radioactivity_concentration_of_245Am_in_air", "radioactivity_concentration_of_245Cm_in_air", "radioactivity_concentration_of_245Pu_in_air", "radioactivity_concentration_of_246Cm_in_air", "radioactivity_concentration_of_247Cm_in_air", "radioactivity_concentration_of_248Cm_in_air", "radioactivity_concentration_of_249Bk_in_air", "radioactivity_concentration_of_249Cf_in_air", "radioactivity_concentration_of_249Cm_in_air", "radioactivity_concentration_of_24Na_in_air", "radioactivity_concentration_of_250Bk_in_air", "radioactivity_concentration_of_250Cf_in_air", "radioactivity_concentration_of_250Cm_in_air", "radioactivity_concentration_of_251Cf_in_air", "radioactivity_concentration_of_252Cf_in_air", "radioactivity_concentration_of_253Cf_in_air", "radioactivity_concentration_of_253Es_in_air", "radioactivity_concentration_of_254Cf_in_air", "radioactivity_concentration_of_254Es_in_air", "radioactivity_concentration_of_254mEs_in_air", "radioactivity_concentration_of_255Es_in_air", "radioactivity_concentration_of_3H_in_air", "radioactivity_concentration_of_41Ar_in_air", "radioactivity_concentration_of_54Mn_in_air", "radioactivity_concentration_of_58Co_in_air", "radioactivity_concentration_of_60Co_in_air", "radioactivity_concentration_of_72Ga_in_air", "radioactivity_concentration_of_72Zn_in_air", "radioactivity_concentration_of_73Ga_in_air", "radioactivity_concentration_of_75Ge_in_air", "radioactivity_concentration_of_77As_in_air", "radioactivity_concentration_of_77Ge_in_air", "radioactivity_concentration_of_77mGe_in_air", "radioactivity_concentration_of_78As_in_air", "radioactivity_concentration_of_78Ge_in_air", "radioactivity_concentration_of_79Se_in_air", "radioactivity_concentration_of_81mSe_in_air", "radioactivity_concentration_of_81Se_in_air", "radioactivity_concentration_of_82Br_in_air", "radioactivity_concentration_of_82mBr_in_air", "radioactivity_concentration_of_83Br_in_air", "radioactivity_concentration_of_83mKr_in_air", "radioactivity_concentration_of_83mSe_in_air", "radioactivity_concentration_of_83Se_in_air", "radioactivity_concentration_of_84Br_in_air", "radioactivity_concentration_of_84mBr_in_air", "radioactivity_concentration_of_85Kr_in_air", "radioactivity_concentration_of_85mKr_in_air", "radioactivity_concentration_of_86mRb_in_air", "radioactivity_concentration_of_86Rb_in_air", "radioactivity_concentration_of_87Kr_in_air", "radioactivity_concentration_of_87Rb_in_air", "radioactivity_concentration_of_88Kr_in_air", "radioactivity_concentration_of_88Rb_in_air", "radioactivity_concentration_of_89Kr_in_air", "radioactivity_concentration_of_89Rb_in_air", "radioactivity_concentration_of_89Sr_in_air", "radioactivity_concentration_of_90mY_in_air", "radioactivity_concentration_of_90Sr_in_air", "radioactivity_concentration_of_90Y_in_air", "radioactivity_concentration_of_91mY_in_air", "radioactivity_concentration_of_91Sr_in_air", "radioactivity_concentration_of_91Y_in_air", "radioactivity_concentration_of_92Sr_in_air", "radioactivity_concentration_of_92Y_in_air", "radioactivity_concentration_of_93Y_in_air", "radioactivity_concentration_of_93Zr_in_air", "radioactivity_concentration_of_94mNb_in_air", "radioactivity_concentration_of_94Nb_in_air", "radioactivity_concentration_of_94Y_in_air", "radioactivity_concentration_of_95mNb_in_air", "radioactivity_concentration_of_95Nb_in_air", "radioactivity_concentration_of_95Y_in_air", "radioactivity_concentration_of_95Zr_in_air", "radioactivity_concentration_of_96Nb_in_air", "radioactivity_concentration_of_97mNb_in_air", "radioactivity_concentration_of_97Nb_in_air", "radioactivity_concentration_of_97Zr_in_air", "radioactivity_concentration_of_98Nb_in_air", "radioactivity_concentration_of_99Mo_in_air", "radioactivity_concentration_of_99mTc_in_air", "radioactivity_concentration_of_99Tc_in_air", "radius_of_tropical_cyclone_central_dense_overcast_region", "radius_of_tropical_cyclone_eye", "radius_of_tropical_cyclone_maximum_sustained_wind_speed", "rainfall_amount", "rainfall_flux", "rainfall_rate", "rate_of_change_test_quality_flag", "rate_of_hydroxyl_radical_destruction_due_to_reaction_with_nmvoc", "ratio_of_ice_volume_in_frozen_ground_to_pore_volume_in_unfrozen_ground", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "ratio_of_sea_water_practical_salinity_anomaly_to_relaxation_timescale", "ratio_of_x_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "ratio_of_y_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "realization", "reference_air_pressure_for_atmosphere_vertical_coordinate", "reference_epoch", "reference_pressure", "reference_sea_water_density_for_boussinesq_approximation", "region", "relative_humidity", "relative_humidity_for_aerosol_particle_size_selection", "relative_platform_azimuth_angle", "relative_sensor_azimuth_angle", "richardson_number_in_sea_water", "root_depth", "root_mass_content_of_carbon", "root_mass_content_of_nitrogen", "runoff_amount", "runoff_amount_excluding_baseflow", "runoff_flux", "salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "salt_flux_into_sea_water_from_rivers", "scattering_angle", "scene_type_of_dvorak_tropical_cyclone_cloud_region", "scene_type_of_dvorak_tropical_cyclone_eye_region", "sea_area", "sea_area_fraction", "sea_binary_mask", "sea_floor_depth_below_geoid", "sea_floor_depth_below_geopotential_datum", "sea_floor_depth_below_mean_sea_level", "sea_floor_depth_below_reference_ellipsoid", "sea_floor_depth_below_sea_surface", "sea_floor_sediment_grain_size", "sea_ice_albedo", "sea_ice_amount", "sea_ice_and_surface_snow_amount", "sea_ice_area", "sea_ice_area_fraction", "sea_ice_area_transport_across_line", "sea_ice_average_normal_horizontal_stress", "sea_ice_basal_drag_coefficient_for_momentum_in_sea_water", "sea_ice_basal_temperature", "sea_ice_classification", "sea_ice_draft", "sea_ice_extent", "sea_ice_floe_diameter", "sea_ice_freeboard", "sea_ice_mass", "sea_ice_mass_content_of_salt", "sea_ice_melt_pond_thickness", "sea_ice_salinity", "sea_ice_speed", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_ice_thickness", "sea_ice_transport_across_line", "sea_ice_volume", "sea_ice_x_displacement", "sea_ice_x_force_per_unit_area_due_to_coriolis_effect", "sea_ice_x_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_x_internal_stress", "sea_ice_x_transport", "sea_ice_x_velocity", "sea_ice_y_displacement", "sea_ice_y_force_per_unit_area_due_to_coriolis_effect", "sea_ice_y_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_y_internal_stress", "sea_ice_y_transport", "sea_ice_y_velocity", "sea_surface_density", "sea_surface_downward_eastward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_downward_northward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_foundation_temperature", "sea_surface_height_above_geoid", "sea_surface_height_above_geopotential_datum", "sea_surface_height_above_mean_sea_level", "sea_surface_height_above_reference_ellipsoid", "sea_surface_height_amplitude_due_to_earth_tide", "sea_surface_height_amplitude_due_to_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_geocentric_ocean_tide", "sea_surface_height_amplitude_due_to_non_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_pole_tide", "sea_surface_height_bias_due_to_sea_surface_roughness", "sea_surface_height_correction_due_to_air_pressure_and_wind_at_high_frequency", "sea_surface_height_correction_due_to_air_pressure_at_low_frequency", "sea_surface_mean_square_crosswave_slope", "sea_surface_mean_square_upwave_slope", "sea_surface_mean_square_upwave_slope_direction", "sea_surface_primary_swell_wave_directional_spread", "sea_surface_primary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_from_direction", "sea_surface_primary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_mean_period", "sea_surface_primary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_significant_height", "sea_surface_salinity", "sea_surface_secondary_swell_wave_directional_spread", "sea_surface_secondary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_from_direction", "sea_surface_secondary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_mean_period", "sea_surface_secondary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_significant_height", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_swell_wave_directional_spread", "sea_surface_swell_wave_from_direction", "sea_surface_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_swell_wave_mean_period", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_swell_wave_period", "sea_surface_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_swell_wave_significant_height", "sea_surface_swell_wave_to_direction", "sea_surface_temperature", "sea_surface_tertiary_swell_wave_directional_spread", "sea_surface_tertiary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_from_direction", "sea_surface_tertiary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_mean_period", "sea_surface_tertiary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_significant_height", "sea_surface_wave_directional_spread", "sea_surface_wave_directional_spread_at_variance_spectral_density_maximum", "sea_surface_wave_directional_variance_spectral_density", "sea_surface_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wave_from_direction", "sea_surface_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wave_maximum_crest_height", "sea_surface_wave_maximum_height", "sea_surface_wave_maximum_period", "sea_surface_wave_maximum_steepness", "sea_surface_wave_maximum_trough_depth", "sea_surface_wave_mean_height", "sea_surface_wave_mean_height_of_highest_tenth", "sea_surface_wave_mean_period", "sea_surface_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wave_mean_period_of_highest_tenth", "sea_surface_wave_mean_square_slope", "sea_surface_wave_mean_square_x_slope", "sea_surface_wave_mean_square_y_slope", "sea_surface_wave_mean_wavenumber_from_variance_spectral_density_first_wavenumber_moment", "sea_surface_wave_period_at_variance_spectral_density_maximum", "sea_surface_wave_period_of_highest_wave", "sea_surface_wave_significant_height", "sea_surface_wave_significant_period", "sea_surface_wave_stokes_drift_eastward_velocity", "sea_surface_wave_stokes_drift_northward_velocity", "sea_surface_wave_stokes_drift_speed", "sea_surface_wave_stokes_drift_to_direction", "sea_surface_wave_stokes_drift_x_velocity", "sea_surface_wave_stokes_drift_y_velocity", "sea_surface_wave_to_direction", "sea_surface_wave_variance_spectral_density", "sea_surface_wave_xx_radiation_stress", "sea_surface_wave_xy_radiation_stress", "sea_surface_wave_yy_radiation_stress", "sea_surface_wind_wave_directional_spread", "sea_surface_wind_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wind_wave_from_direction", "sea_surface_wind_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wind_wave_mean_period", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wind_wave_period", "sea_surface_wind_wave_period_at_variance_spectral_density_maximum", "sea_surface_wind_wave_significant_height", "sea_surface_wind_wave_to_direction", "sea_water_absolute_salinity", "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", "sea_water_age_since_surface_contact", "sea_water_alkalinity_expressed_as_mole_equivalent", "sea_water_alkalinity_natural_analogue_expressed_as_mole_equivalent", "sea_water_conservative_temperature", "sea_water_cox_salinity", "sea_water_density", "sea_water_electrical_conductivity", "sea_water_knudsen_salinity", "sea_water_mass", "sea_water_mass_per_unit_area", "sea_water_mass_per_unit_area_expressed_as_thickness", "sea_water_neutral_density", "sea_water_ph_abiotic_analogue_reported_on_total_scale", "sea_water_ph_natural_analogue_reported_on_total_scale", "sea_water_ph_reported_on_total_scale", "sea_water_potential_density", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_practical_salinity", "sea_water_practical_salinity_at_sea_floor", "sea_water_preformed_salinity", "sea_water_pressure", "sea_water_pressure_at_sea_floor", "sea_water_pressure_at_sea_water_surface", "sea_water_pressure_due_to_sea_water", "sea_water_redistributed_conservative_temperature", "sea_water_redistributed_potential_temperature", "sea_water_reference_salinity", "sea_water_salinity", "sea_water_salinity_at_sea_floor", "sea_water_sigma_t", "sea_water_sigma_t_difference", "sea_water_sigma_theta", "sea_water_sigma_theta_difference", "sea_water_specific_potential_enthalpy", "sea_water_speed", "sea_water_speed_at_sea_floor", "sea_water_speed_due_to_tides", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "sea_water_transport_across_line", "sea_water_turbidity", "sea_water_velocity_from_direction", "sea_water_velocity_to_direction", "sea_water_velocity_to_direction_at_sea_floor", "sea_water_velocity_to_direction_due_to_tides", "sea_water_volume", "sea_water_x_velocity", "sea_water_x_velocity_due_to_parameterized_mesoscale_eddies", "sea_water_y_velocity", "sea_water_y_velocity_due_to_parameterized_mesoscale_eddies", "secchi_depth_of_sea_water", "sensor_azimuth_angle", "sensor_band_central_radiation_frequency", "sensor_band_central_radiation_wavelength", "sensor_band_central_radiation_wavenumber", "sensor_band_identifier", "sensor_view_angle", "sensor_zenith_angle", "shallow_convection_time_fraction", "shallow_convective_cloud_base_altitude", "shallow_convective_cloud_top_altitude", "shallow_convective_precipitation_flux", "signal_intensity_from_multibeam_acoustic_doppler_velocity_sensor_in_sea_water", "single_scattering_albedo_in_air_due_to_ambient_aerosol_particles", "sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_iron_in_sea_water", "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_organic_nitrogen_in_sea_water", "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", "sinking_mole_flux_of_particulate_silicon_in_sea_water", "slow_soil_pool_mass_content_of_carbon", "snow_area_fraction_viewable_from_above", "snowfall_amount", "snowfall_flux", "snow_grain_size", "snow_transport_across_line_due_to_sea_ice_dynamics", "soil_albedo", "soil_frozen_water_content", "soil_hydraulic_conductivity_at_saturation", "soil_mass_content_of_13C", "soil_mass_content_of_14C", "soil_mass_content_of_carbon", "soil_mass_content_of_inorganic_ammonium_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrate_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", "soil_mass_content_of_nitrogen", "soil_moisture_content_at_field_capacity", "soil_pool", "soil_pool_carbon_decay_rate", "soil_porosity", "soil_suction_at_saturation", "soil_temperature", "soil_thermal_capacity", "soil_thermal_conductivity", "soil_type", "soil_water_ph", "solar_azimuth_angle", "solar_elevation_angle", "solar_irradiance", "solar_irradiance_per_unit_wavelength", "solar_zenith_angle", "solid_precipitation_flux", "solid_precipitation_flux_containing_17O", "solid_precipitation_flux_containing_18O", "solid_precipitation_flux_containing_single_2H", "soot_content_of_surface_snow", "sound_frequency", "sound_intensity_in_air", "sound_intensity_in_water", "sound_intensity_level_in_air", "sound_intensity_level_in_water", "sound_pressure_in_air", "sound_pressure_in_water", "sound_pressure_level_in_air", "sound_pressure_level_in_water", "source", "specific_dry_energy_of_air", "specific_gravitational_potential_energy", "specific_heat_capacity_of_frozen_ground", "specific_heat_capacity_of_sea_water", "specific_humidity", "specific_kinetic_energy_of_air", "specific_kinetic_energy_of_sea_water", "specific_turbulent_kinetic_energy_dissipation_in_sea_water", "specific_turbulent_kinetic_energy_of_sea_water", "speed_of_sound_in_air", "speed_of_sound_in_sea_water", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_below_threshold", "spike_test_quality_flag", "square_of_air_temperature", "square_of_brunt_vaisala_frequency_in_air", "square_of_brunt_vaisala_frequency_in_sea_water", "square_of_eastward_wind", "square_of_geopotential_height", "square_of_lagrangian_tendency_of_air_pressure", "square_of_northward_wind", "square_of_ocean_mixed_layer_thickness_defined_by_sigma_t", "square_of_sea_surface_height_above_geoid", "square_of_sea_surface_salinity", "square_of_sea_surface_temperature", "square_of_upward_air_velocity", "square_of_upward_ocean_mass_transport", "status_flag", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "steric_change_in_mean_sea_level", "steric_change_in_sea_surface_height", "storm_motion_speed", "stratiform_cloud_area_fraction", "stratiform_cloud_area_fraction_in_atmosphere_layer", "stratiform_cloud_longwave_emissivity", "stratiform_graupel_fall_amount", "stratiform_graupel_flux", "stratiform_precipitation_amount", "stratiform_precipitation_flux", "stratiform_rainfall_amount", "stratiform_rainfall_flux", "stratiform_rainfall_rate", "stratiform_snowfall_amount", "stratiform_snowfall_flux", "stratosphere_mole_content_of_nitrogen_dioxide", "stratosphere_optical_thickness_due_to_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_volcanic_ambient_aerosol_particles", "subsurface_litter_mass_content_of_carbon", "subsurface_litter_mass_content_of_nitrogen", "subsurface_runoff_amount", "subsurface_runoff_flux", "sunglint_angle", "sunlit_binary_mask", "surface_air_pressure", "surface_albedo", "surface_albedo_assuming_deep_snow", "surface_albedo_assuming_no_snow", "surface_altitude", "surface_backwards_scattering_coefficient_of_radar_wave", "surface_bidirectional_reflectance", "surface_brightness_temperature", "surface_carbon_dioxide_abiotic_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_natural_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_partial_pressure_difference_between_air_and_sea_water", "surface_carbon_dioxide_partial_pressure_difference_between_sea_water_and_air", "surface_diffuse_downwelling_photosynthetic_radiative_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_diffuse_shortwave_hemispherical_reflectance", "surface_direct_along_beam_shortwave_flux_in_air", "surface_direct_downwelling_shortwave_flux_in_air", "surface_direct_shortwave_hemispherical_reflectance", "surface_downward_eastward_stress", "surface_downward_eastward_stress_due_to_boundary_layer_mixing", "surface_downward_eastward_stress_due_to_ocean_viscous_dissipation", "surface_downward_eastward_stress_due_to_sea_surface_waves", "surface_downward_heat_flux_in_air", "surface_downward_heat_flux_in_sea_ice", "surface_downward_heat_flux_in_sea_water", "surface_downward_heat_flux_in_snow", "surface_downward_latent_heat_flux", "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_ammonia", "surface_downward_mass_flux_of_carbon_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_natural_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_methane_due_to_wetland_biological_consumption", "surface_downward_mass_flux_of_water_due_to_irrigation", "surface_downward_mole_flux_of_carbon_dioxide", "surface_downward_mole_flux_of_cfc11", "surface_downward_mole_flux_of_cfc12", "surface_downward_mole_flux_of_molecular_oxygen", "surface_downward_mole_flux_of_sulfur_hexafluoride", "surface_downward_northward_stress", "surface_downward_northward_stress_due_to_boundary_layer_mixing", "surface_downward_northward_stress_due_to_ocean_viscous_dissipation", "surface_downward_northward_stress_due_to_sea_surface_waves", "surface_downward_sensible_heat_flux", "surface_downward_water_flux", "surface_downward_x_stress", "surface_downward_x_stress_correction", "surface_downward_y_stress", "surface_downward_y_stress_correction", "surface_downwelling_longwave_flux_in_air", "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", "surface_downwelling_longwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_photon_flux_in_sea_water", "surface_downwelling_photon_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_radiance_in_sea_water", "surface_downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photosynthetic_photon_flux_in_air", "surface_downwelling_photosynthetic_photon_flux_in_sea_water", "surface_downwelling_photosynthetic_photon_radiance_in_sea_water", "surface_downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photosynthetic_radiance_in_sea_water", "surface_downwelling_photosynthetic_radiative_flux_in_air", "surface_downwelling_photosynthetic_radiative_flux_in_sea_water", "surface_downwelling_photosynthetic_spherical_irradiance_in_sea_water", "surface_downwelling_radiance_in_sea_water", "surface_downwelling_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_radiative_flux_in_sea_water", "surface_downwelling_radiative_flux_per_unit_wavelength_in_air", "surface_downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_shortwave_flux_in_air", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_downwelling_shortwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_spherical_irradiance_in_sea_water", "surface_downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_drag_coefficient_for_heat_in_air", "surface_drag_coefficient_for_momentum_in_air", "surface_drag_coefficient_in_air", "surface_eastward_sea_water_velocity", "surface_frozen_carbon_dioxide_amount", "surface_geopotential", "surface_geostrophic_eastward_sea_water_velocity", "surface_geostrophic_eastward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_northward_sea_water_velocity", "surface_geostrophic_northward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_x_velocity", "surface_geostrophic_sea_water_x_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_y_velocity", "surface_geostrophic_sea_water_y_velocity_assuming_mean_sea_level_for_geoid", "surface_height_above_geopotential_datum", "surface_litter_mass_content_of_carbon", "surface_litter_mass_content_of_nitrogen", "surface_longwave_emissivity", "surface_microwave_emissivity", "surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_longwave_flux", "surface_net_downward_longwave_flux_assuming_clear_sky", "surface_net_downward_mass_flux_of_ammonia_due_to_bidirectional_surface_exchange", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change", "surface_net_downward_radiative_flux", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_shortwave_flux", "surface_net_downward_shortwave_flux_assuming_clear_sky", "surface_net_upward_longwave_flux", "surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change", "surface_net_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_processes", "surface_net_upward_radiative_flux", "surface_net_upward_shortwave_flux", "surface_northward_sea_water_velocity", "surface_partial_pressure_of_carbon_dioxide_abiotic_analogue_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_in_air", "surface_partial_pressure_of_carbon_dioxide_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_natural_analogue_in_sea_water", "surface_radioactivity_content", "surface_radioactivity_content_of_101Mo", "surface_radioactivity_content_of_101Tc", "surface_radioactivity_content_of_102Mo", "surface_radioactivity_content_of_102mTc", "surface_radioactivity_content_of_102Tc", "surface_radioactivity_content_of_103mRh", "surface_radioactivity_content_of_103Ru", "surface_radioactivity_content_of_104Tc", "surface_radioactivity_content_of_105mRh", "surface_radioactivity_content_of_105Rh", "surface_radioactivity_content_of_105Ru", "surface_radioactivity_content_of_106mRh", "surface_radioactivity_content_of_106Rh", "surface_radioactivity_content_of_106Ru", "surface_radioactivity_content_of_107mPd", "surface_radioactivity_content_of_107Pd", "surface_radioactivity_content_of_107Rh", "surface_radioactivity_content_of_109mAg", "surface_radioactivity_content_of_109Pd", "surface_radioactivity_content_of_110mAg", "surface_radioactivity_content_of_111Ag", "surface_radioactivity_content_of_111mAg", "surface_radioactivity_content_of_111mCd", "surface_radioactivity_content_of_111mPd", "surface_radioactivity_content_of_111Pd", "surface_radioactivity_content_of_112Ag", "surface_radioactivity_content_of_112Pd", "surface_radioactivity_content_of_113Ag", "surface_radioactivity_content_of_113Cd", "surface_radioactivity_content_of_113mAg", "surface_radioactivity_content_of_113mCd", "surface_radioactivity_content_of_113mIn", "surface_radioactivity_content_of_115Ag", "surface_radioactivity_content_of_115Cd", "surface_radioactivity_content_of_115In", "surface_radioactivity_content_of_115mAg", "surface_radioactivity_content_of_115mCd", "surface_radioactivity_content_of_115mIn", "surface_radioactivity_content_of_116In", "surface_radioactivity_content_of_116mIn", "surface_radioactivity_content_of_117Cd", "surface_radioactivity_content_of_117In", "surface_radioactivity_content_of_117mCd", "surface_radioactivity_content_of_117mIn", "surface_radioactivity_content_of_117mSn", "surface_radioactivity_content_of_118Cd", "surface_radioactivity_content_of_118In", "surface_radioactivity_content_of_118mIn", "surface_radioactivity_content_of_119In", "surface_radioactivity_content_of_119mIn", "surface_radioactivity_content_of_119mSn", "surface_radioactivity_content_of_11C", "surface_radioactivity_content_of_121mSn", "surface_radioactivity_content_of_121Sn", "surface_radioactivity_content_of_123mSn", "surface_radioactivity_content_of_123Sn", "surface_radioactivity_content_of_124mSb", "surface_radioactivity_content_of_124Sb", "surface_radioactivity_content_of_125mTe", "surface_radioactivity_content_of_125Sb", "surface_radioactivity_content_of_125Sn", "surface_radioactivity_content_of_126mSb", "surface_radioactivity_content_of_126Sb", "surface_radioactivity_content_of_126Sn", "surface_radioactivity_content_of_127mTe", "surface_radioactivity_content_of_127Sb", "surface_radioactivity_content_of_127Sn", "surface_radioactivity_content_of_127Te", "surface_radioactivity_content_of_128mSb", "surface_radioactivity_content_of_128Sb", "surface_radioactivity_content_of_128Sn", "surface_radioactivity_content_of_129I", "surface_radioactivity_content_of_129mTe", "surface_radioactivity_content_of_129mXe", "surface_radioactivity_content_of_129Sb", "surface_radioactivity_content_of_129Te", "surface_radioactivity_content_of_130I", "surface_radioactivity_content_of_130mI", "surface_radioactivity_content_of_130mSb", "surface_radioactivity_content_of_130Sb", "surface_radioactivity_content_of_130Sn", "surface_radioactivity_content_of_131I", "surface_radioactivity_content_of_131mTe", "surface_radioactivity_content_of_131mXe", "surface_radioactivity_content_of_131Sb", "surface_radioactivity_content_of_131Te", "surface_radioactivity_content_of_132I", "surface_radioactivity_content_of_132Te", "surface_radioactivity_content_of_133I", "surface_radioactivity_content_of_133mI", "surface_radioactivity_content_of_133mTe", "surface_radioactivity_content_of_133mXe", "surface_radioactivity_content_of_133Te", "surface_radioactivity_content_of_133Xe", "surface_radioactivity_content_of_134Cs", "surface_radioactivity_content_of_134I", "surface_radioactivity_content_of_134mCs", "surface_radioactivity_content_of_134mI", "surface_radioactivity_content_of_134mXe", "surface_radioactivity_content_of_134Te", "surface_radioactivity_content_of_135Cs", "surface_radioactivity_content_of_135I", "surface_radioactivity_content_of_135mBa", "surface_radioactivity_content_of_135mCs", "surface_radioactivity_content_of_135mXe", "surface_radioactivity_content_of_135Xe", "surface_radioactivity_content_of_136Cs", "surface_radioactivity_content_of_137Cs", "surface_radioactivity_content_of_137mBa", "surface_radioactivity_content_of_137Xe", "surface_radioactivity_content_of_138Cs", "surface_radioactivity_content_of_138Xe", "surface_radioactivity_content_of_139Ba", "surface_radioactivity_content_of_13N", "surface_radioactivity_content_of_140Ba", "surface_radioactivity_content_of_140La", "surface_radioactivity_content_of_141Ce", "surface_radioactivity_content_of_141La", "surface_radioactivity_content_of_142Ce", "surface_radioactivity_content_of_142La", "surface_radioactivity_content_of_142mPr", "surface_radioactivity_content_of_142Pr", "surface_radioactivity_content_of_143Ce", "surface_radioactivity_content_of_143La", "surface_radioactivity_content_of_143Pr", "surface_radioactivity_content_of_144Ce", "surface_radioactivity_content_of_144mPr", "surface_radioactivity_content_of_144Nd", "surface_radioactivity_content_of_144Pr", "surface_radioactivity_content_of_145Pr", "surface_radioactivity_content_of_146Ce", "surface_radioactivity_content_of_146Pr", "surface_radioactivity_content_of_147Nd", "surface_radioactivity_content_of_147Pm", "surface_radioactivity_content_of_147Pr", "surface_radioactivity_content_of_147Sm", "surface_radioactivity_content_of_148mPm", "surface_radioactivity_content_of_148Pm", "surface_radioactivity_content_of_148Sm", "surface_radioactivity_content_of_149Nd", "surface_radioactivity_content_of_149Pm", "surface_radioactivity_content_of_149Sm", "surface_radioactivity_content_of_150Pm", "surface_radioactivity_content_of_151Nd", "surface_radioactivity_content_of_151Pm", "surface_radioactivity_content_of_151Sm", "surface_radioactivity_content_of_152mPm", "surface_radioactivity_content_of_152Nd", "surface_radioactivity_content_of_152Pm", "surface_radioactivity_content_of_153Sm", "surface_radioactivity_content_of_154Eu", "surface_radioactivity_content_of_155Eu", "surface_radioactivity_content_of_155Sm", "surface_radioactivity_content_of_156Eu", "surface_radioactivity_content_of_156Sm", "surface_radioactivity_content_of_157Eu", "surface_radioactivity_content_of_158Eu", "surface_radioactivity_content_of_159Eu", "surface_radioactivity_content_of_159Gd", "surface_radioactivity_content_of_15O", "surface_radioactivity_content_of_160Tb", "surface_radioactivity_content_of_161Tb", "surface_radioactivity_content_of_162Gd", "surface_radioactivity_content_of_162mTb", "surface_radioactivity_content_of_162Tb", "surface_radioactivity_content_of_163Tb", "surface_radioactivity_content_of_165Dy", "surface_radioactivity_content_of_18F", "surface_radioactivity_content_of_206Hg", "surface_radioactivity_content_of_206Tl", "surface_radioactivity_content_of_207mPb", "surface_radioactivity_content_of_207Tl", "surface_radioactivity_content_of_208Tl", "surface_radioactivity_content_of_209Bi", "surface_radioactivity_content_of_209Pb", "surface_radioactivity_content_of_209Tl", "surface_radioactivity_content_of_210Bi", "surface_radioactivity_content_of_210Pb", "surface_radioactivity_content_of_210Po", "surface_radioactivity_content_of_210Tl", "surface_radioactivity_content_of_211Bi", "surface_radioactivity_content_of_211Pb", "surface_radioactivity_content_of_211Po", "surface_radioactivity_content_of_212Bi", "surface_radioactivity_content_of_212Pb", "surface_radioactivity_content_of_212Po", "surface_radioactivity_content_of_213Bi", "surface_radioactivity_content_of_213Pb", "surface_radioactivity_content_of_213Po", "surface_radioactivity_content_of_214Bi", "surface_radioactivity_content_of_214Pb", "surface_radioactivity_content_of_214Po", "surface_radioactivity_content_of_215At", "surface_radioactivity_content_of_215Bi", "surface_radioactivity_content_of_215Po", "surface_radioactivity_content_of_216At", "surface_radioactivity_content_of_216Po", "surface_radioactivity_content_of_217At", "surface_radioactivity_content_of_217Po", "surface_radioactivity_content_of_218At", "surface_radioactivity_content_of_218Po", "surface_radioactivity_content_of_218Rn", "surface_radioactivity_content_of_219At", "surface_radioactivity_content_of_219Rn", "surface_radioactivity_content_of_220Rn", "surface_radioactivity_content_of_221Fr", "surface_radioactivity_content_of_221Rn", "surface_radioactivity_content_of_222Fr", "surface_radioactivity_content_of_222Ra", "surface_radioactivity_content_of_222Rn", "surface_radioactivity_content_of_223Fr", "surface_radioactivity_content_of_223Ra", "surface_radioactivity_content_of_223Rn", "surface_radioactivity_content_of_224Ra", "surface_radioactivity_content_of_225Ac", "surface_radioactivity_content_of_225Ra", "surface_radioactivity_content_of_226Ac", "surface_radioactivity_content_of_226Ra", "surface_radioactivity_content_of_226Th", "surface_radioactivity_content_of_227Ac", "surface_radioactivity_content_of_227Ra", "surface_radioactivity_content_of_227Th", "surface_radioactivity_content_of_228Ac", "surface_radioactivity_content_of_228Ra", "surface_radioactivity_content_of_228Th", "surface_radioactivity_content_of_229Ac", "surface_radioactivity_content_of_229Ra", "surface_radioactivity_content_of_229Th", "surface_radioactivity_content_of_230Pa", "surface_radioactivity_content_of_230Th", "surface_radioactivity_content_of_230U", "surface_radioactivity_content_of_231Pa", "surface_radioactivity_content_of_231Th", "surface_radioactivity_content_of_231U", "surface_radioactivity_content_of_232Pa", "surface_radioactivity_content_of_232Th", "surface_radioactivity_content_of_232U", "surface_radioactivity_content_of_233Pa", "surface_radioactivity_content_of_233Th", "surface_radioactivity_content_of_233U", "surface_radioactivity_content_of_234mPa", "surface_radioactivity_content_of_234Pa", "surface_radioactivity_content_of_234Th", "surface_radioactivity_content_of_234U", "surface_radioactivity_content_of_235Np", "surface_radioactivity_content_of_235Pu", "surface_radioactivity_content_of_235U", "surface_radioactivity_content_of_236mNp", "surface_radioactivity_content_of_236Np", "surface_radioactivity_content_of_236Pu", "surface_radioactivity_content_of_236U", "surface_radioactivity_content_of_237Np", "surface_radioactivity_content_of_237Pu", "surface_radioactivity_content_of_237U", "surface_radioactivity_content_of_238Np", "surface_radioactivity_content_of_238Pu", "surface_radioactivity_content_of_238U", "surface_radioactivity_content_of_239Np", "surface_radioactivity_content_of_239Pu", "surface_radioactivity_content_of_239U", "surface_radioactivity_content_of_240Am", "surface_radioactivity_content_of_240mNp", "surface_radioactivity_content_of_240Np", "surface_radioactivity_content_of_240Pu", "surface_radioactivity_content_of_240U", "surface_radioactivity_content_of_241Am", "surface_radioactivity_content_of_241Cm", "surface_radioactivity_content_of_241Pu", "surface_radioactivity_content_of_242Am", "surface_radioactivity_content_of_242Cm", "surface_radioactivity_content_of_242m1Am", "surface_radioactivity_content_of_242m2Am", "surface_radioactivity_content_of_242Pu", "surface_radioactivity_content_of_243Am", "surface_radioactivity_content_of_243Cm", "surface_radioactivity_content_of_243Pu", "surface_radioactivity_content_of_244Am", "surface_radioactivity_content_of_244Cm", "surface_radioactivity_content_of_244mAm", "surface_radioactivity_content_of_244Pu", "surface_radioactivity_content_of_245Am", "surface_radioactivity_content_of_245Cm", "surface_radioactivity_content_of_245Pu", "surface_radioactivity_content_of_246Cm", "surface_radioactivity_content_of_247Cm", "surface_radioactivity_content_of_248Cm", "surface_radioactivity_content_of_249Bk", "surface_radioactivity_content_of_249Cf", "surface_radioactivity_content_of_249Cm", "surface_radioactivity_content_of_24Na", "surface_radioactivity_content_of_250Bk", "surface_radioactivity_content_of_250Cf", "surface_radioactivity_content_of_250Cm", "surface_radioactivity_content_of_251Cf", "surface_radioactivity_content_of_252Cf", "surface_radioactivity_content_of_253Cf", "surface_radioactivity_content_of_253Es", "surface_radioactivity_content_of_254Cf", "surface_radioactivity_content_of_254Es", "surface_radioactivity_content_of_254mEs", "surface_radioactivity_content_of_255Es", "surface_radioactivity_content_of_3H", "surface_radioactivity_content_of_41Ar", "surface_radioactivity_content_of_54Mn", "surface_radioactivity_content_of_58Co", "surface_radioactivity_content_of_60Co", "surface_radioactivity_content_of_72Ga", "surface_radioactivity_content_of_72Zn", "surface_radioactivity_content_of_73Ga", "surface_radioactivity_content_of_75Ge", "surface_radioactivity_content_of_77As", "surface_radioactivity_content_of_77Ge", "surface_radioactivity_content_of_77mGe", "surface_radioactivity_content_of_78As", "surface_radioactivity_content_of_78Ge", "surface_radioactivity_content_of_79Se", "surface_radioactivity_content_of_81mSe", "surface_radioactivity_content_of_81Se", "surface_radioactivity_content_of_82Br", "surface_radioactivity_content_of_82mBr", "surface_radioactivity_content_of_83Br", "surface_radioactivity_content_of_83mKr", "surface_radioactivity_content_of_83mSe", "surface_radioactivity_content_of_83Se", "surface_radioactivity_content_of_84Br", "surface_radioactivity_content_of_84mBr", "surface_radioactivity_content_of_85Kr", "surface_radioactivity_content_of_85mKr", "surface_radioactivity_content_of_86mRb", "surface_radioactivity_content_of_86Rb", "surface_radioactivity_content_of_87Kr", "surface_radioactivity_content_of_87Rb", "surface_radioactivity_content_of_88Kr", "surface_radioactivity_content_of_88Rb", "surface_radioactivity_content_of_89Kr", "surface_radioactivity_content_of_89Rb", "surface_radioactivity_content_of_89Sr", "surface_radioactivity_content_of_90mY", "surface_radioactivity_content_of_90Sr", "surface_radioactivity_content_of_90Y", "surface_radioactivity_content_of_91mY", "surface_radioactivity_content_of_91Sr", "surface_radioactivity_content_of_91Y", "surface_radioactivity_content_of_92Sr", "surface_radioactivity_content_of_92Y", "surface_radioactivity_content_of_93Y", "surface_radioactivity_content_of_93Zr", "surface_radioactivity_content_of_94mNb", "surface_radioactivity_content_of_94Nb", "surface_radioactivity_content_of_94Y", "surface_radioactivity_content_of_95mNb", "surface_radioactivity_content_of_95Nb", "surface_radioactivity_content_of_95Y", "surface_radioactivity_content_of_95Zr", "surface_radioactivity_content_of_96Nb", "surface_radioactivity_content_of_97mNb", "surface_radioactivity_content_of_97Nb", "surface_radioactivity_content_of_97Zr", "surface_radioactivity_content_of_98Nb", "surface_radioactivity_content_of_99Mo", "surface_radioactivity_content_of_99mTc", "surface_radioactivity_content_of_99Tc", "surface_ratio_of_upwelling_radiance_emerging_from_sea_water_to_downwelling_radiative_flux_in_air", "surface_roughness_length", "surface_roughness_length_for_heat_in_air", "surface_roughness_length_for_humidity_in_air", "surface_roughness_length_for_momentum_in_air", "surface_runoff_amount", "surface_runoff_flux", "surface_snow_amount", "surface_snow_and_ice_melt_flux", "surface_snow_and_ice_melt_heat_flux", "surface_snow_and_ice_refreezing_flux", "surface_snow_area_fraction", "surface_snow_binary_mask", "surface_snow_density", "surface_snow_melt_amount", "surface_snow_melt_and_sublimation_heat_flux", "surface_snow_melt_flux", "surface_snow_melt_heat_flux", "surface_snow_sublimation_amount", "surface_snow_sublimation_heat_flux", "surface_snow_thickness", "surface_specific_humidity", "surface_temperature", "surface_temperature_anomaly", "surface_upward_eastward_stress_due_to_sea_surface_waves", "surface_upward_heat_flux_due_to_anthropogenic_energy_consumption", "surface_upward_heat_flux_in_air", "surface_upward_latent_heat_flux", "surface_upward_latent_heat_flux_due_to_sublimation", "surface_upward_mass_flux_of_ammonia", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change_excluding_forestry_and_agricultural_products", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_grazing", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_litter_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_vegetation_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_growth", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_maintenance", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_leaves", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_miscellaneous_living_matter", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_roots", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_respiration_in_soil", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_litter", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_soil", "surface_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_production", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_all_land_processes_excluding_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_emission_from_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mole_flux_of_carbon_dioxide", "surface_upward_mole_flux_of_dimethyl_sulfide", "surface_upward_northward_stress_due_to_sea_surface_waves", "surface_upward_sensible_heat_flux", "surface_upward_water_flux", "surface_upward_water_vapor_flux_in_air", "surface_upwelling_longwave_flux_in_air", "surface_upwelling_longwave_flux_in_air_assuming_clear_sky", "surface_upwelling_photosynthetic_photon_flux_in_air", "surface_upwelling_radiance_in_air", "surface_upwelling_radiance_in_air_emerging_from_sea_water", "surface_upwelling_radiance_in_air_reflected_by_sea_water", "surface_upwelling_radiance_in_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air", "surface_upwelling_radiance_per_unit_wavelength_in_air_emerging_from_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air_reflected_by_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_sea_water", "surface_upwelling_radiative_flux_per_unit_wavelength_in_air", "surface_upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_upwelling_shortwave_flux_in_air", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_water_amount", "surface_water_evaporation_flux", "syntax_test_quality_flag", "temperature_at_base_of_ice_sheet_model", "temperature_at_top_of_ice_sheet_model", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically_from_the_surface", "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "tendency_of_air_density", "tendency_of_air_pressure", "tendency_of_air_temperature", "tendency_of_air_temperature_due_to_advection", "tendency_of_air_temperature_due_to_boundary_layer_mixing", "tendency_of_air_temperature_due_to_convection", "tendency_of_air_temperature_due_to_diabatic_processes", "tendency_of_air_temperature_due_to_diffusion", "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", "tendency_of_air_temperature_due_to_dry_convection", "tendency_of_air_temperature_due_to_longwave_heating", "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_model_physics", "tendency_of_air_temperature_due_to_moist_convection", "tendency_of_air_temperature_due_to_radiative_heating", "tendency_of_air_temperature_due_to_shortwave_heating", "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_air_temperature_due_to_stratiform_precipitation", "tendency_of_air_temperature_due_to_turbulence", "tendency_of_atmosphere_dry_energy_content", "tendency_of_atmosphere_enthalpy_content_due_to_advection", "tendency_of_atmosphere_kinetic_energy_content_due_to_advection", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetone_due_to_emission", "tendency_of_atmosphere_mass_content_of_aceto_nitrile_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alkanes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alkenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alpha_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_aromatic_compounds_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_beta_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_forestry_and_agricultural_products", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_tetrachloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113a_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc114_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc115_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc11_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc12_due_to_emission", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_halon1202_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1211_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1301_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon2402_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcc140a_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc141b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc142b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc22_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_emission", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_limonene_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_methanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_bromide_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_chloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_monoterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_land_use_or_land_cover_change", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_soil", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition_into_stomata", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_peroxyacetyl_nitrate_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_peroxynitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_radon_due_to_emission", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sesquiterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_aqueous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_gaseous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_trimethylbenzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_water_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_deep_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_shallow_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_turbulence", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_per_unit_area", "tendency_of_atmosphere_mass_per_unit_area_due_to_advection", "tendency_of_atmosphere_mole_concentration_of_carbon_monoxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_nitrous_oxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_production", "tendency_of_atmosphere_moles_of_acetic_acid", "tendency_of_atmosphere_moles_of_aceto_nitrile", "tendency_of_atmosphere_moles_of_alpha_hexachlorocyclohexane", "tendency_of_atmosphere_moles_of_alpha_pinene", "tendency_of_atmosphere_moles_of_ammonia", "tendency_of_atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_atomic_bromine", "tendency_of_atmosphere_moles_of_atomic_chlorine", "tendency_of_atmosphere_moles_of_atomic_nitrogen", "tendency_of_atmosphere_moles_of_benzene", "tendency_of_atmosphere_moles_of_beta_pinene", "tendency_of_atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_bromine_chloride", "tendency_of_atmosphere_moles_of_bromine_monoxide", "tendency_of_atmosphere_moles_of_bromine_nitrate", "tendency_of_atmosphere_moles_of_brox_expressed_as_bromine", "tendency_of_atmosphere_moles_of_butane", "tendency_of_atmosphere_moles_of_carbon_dioxide", "tendency_of_atmosphere_moles_of_carbon_monoxide", "tendency_of_atmosphere_moles_of_carbon_tetrachloride", "tendency_of_atmosphere_moles_of_cfc11", "tendency_of_atmosphere_moles_of_cfc113", "tendency_of_atmosphere_moles_of_cfc113a", "tendency_of_atmosphere_moles_of_cfc114", "tendency_of_atmosphere_moles_of_cfc115", "tendency_of_atmosphere_moles_of_cfc12", "tendency_of_atmosphere_moles_of_chlorine_dioxide", "tendency_of_atmosphere_moles_of_chlorine_monoxide", "tendency_of_atmosphere_moles_of_chlorine_nitrate", "tendency_of_atmosphere_moles_of_clox_expressed_as_chlorine", "tendency_of_atmosphere_moles_of_dichlorine_peroxide", "tendency_of_atmosphere_moles_of_dimethyl_sulfide", "tendency_of_atmosphere_moles_of_dinitrogen_pentoxide", "tendency_of_atmosphere_moles_of_ethane", "tendency_of_atmosphere_moles_of_ethanol", "tendency_of_atmosphere_moles_of_ethene", "tendency_of_atmosphere_moles_of_ethyne", "tendency_of_atmosphere_moles_of_formaldehyde", "tendency_of_atmosphere_moles_of_formic_acid", "tendency_of_atmosphere_moles_of_gaseous_divalent_mercury", "tendency_of_atmosphere_moles_of_gaseous_elemental_mercury", "tendency_of_atmosphere_moles_of_halon1202", "tendency_of_atmosphere_moles_of_halon1211", "tendency_of_atmosphere_moles_of_halon1301", "tendency_of_atmosphere_moles_of_halon2402", "tendency_of_atmosphere_moles_of_hcc140a", "tendency_of_atmosphere_moles_of_hcfc141b", "tendency_of_atmosphere_moles_of_hcfc142b", "tendency_of_atmosphere_moles_of_hcfc22", "tendency_of_atmosphere_moles_of_hexachlorobiphenyl", "tendency_of_atmosphere_moles_of_hox_expressed_as_hydrogen", "tendency_of_atmosphere_moles_of_hydrogen_bromide", "tendency_of_atmosphere_moles_of_hydrogen_chloride", "tendency_of_atmosphere_moles_of_hydrogen_cyanide", "tendency_of_atmosphere_moles_of_hydrogen_peroxide", "tendency_of_atmosphere_moles_of_hydroperoxyl_radical", "tendency_of_atmosphere_moles_of_hydroxyl_radical", "tendency_of_atmosphere_moles_of_hypobromous_acid", "tendency_of_atmosphere_moles_of_hypochlorous_acid", "tendency_of_atmosphere_moles_of_inorganic_bromine", "tendency_of_atmosphere_moles_of_inorganic_chlorine", "tendency_of_atmosphere_moles_of_isoprene", "tendency_of_atmosphere_moles_of_limonene", "tendency_of_atmosphere_moles_of_methane", "tendency_of_atmosphere_moles_of_methanol", "tendency_of_atmosphere_moles_of_methyl_bromide", "tendency_of_atmosphere_moles_of_methyl_chloride", "tendency_of_atmosphere_moles_of_methyl_hydroperoxide", "tendency_of_atmosphere_moles_of_methyl_peroxy_radical", "tendency_of_atmosphere_moles_of_molecular_hydrogen", "tendency_of_atmosphere_moles_of_nitrate_radical", "tendency_of_atmosphere_moles_of_nitric_acid", "tendency_of_atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "tendency_of_atmosphere_moles_of_nitrogen_dioxide", "tendency_of_atmosphere_moles_of_nitrogen_monoxide", "tendency_of_atmosphere_moles_of_nitrous_acid", "tendency_of_atmosphere_moles_of_nitrous_oxide", "tendency_of_atmosphere_moles_of_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_nox_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_noy_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_ozone", "tendency_of_atmosphere_moles_of_peroxyacetyl_nitrate", "tendency_of_atmosphere_moles_of_peroxynitric_acid", "tendency_of_atmosphere_moles_of_propane", "tendency_of_atmosphere_moles_of_propene", "tendency_of_atmosphere_moles_of_radon", "tendency_of_atmosphere_moles_of_sulfate_dry_aerosol_particles", "tendency_of_atmosphere_moles_of_sulfur_dioxide", "tendency_of_atmosphere_moles_of_toluene", "tendency_of_atmosphere_moles_of_water_vapor", "tendency_of_atmosphere_moles_of_xylene", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_potential_energy_content_due_to_advection", "tendency_of_bedrock_altitude", "tendency_of_canopy_water_amount_due_to_evaporation_of_intercepted_precipitation", "tendency_of_change_in_land_ice_amount", "tendency_of_dry_energy_content_of_atmosphere_layer", "tendency_of_dry_static_energy_content_of_atmosphere_layer", "tendency_of_eastward_wind", "tendency_of_eastward_wind_due_to_advection", "tendency_of_eastward_wind_due_to_advection_by_northward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_advection_by_upward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_convection", "tendency_of_eastward_wind_due_to_diffusion", "tendency_of_eastward_wind_due_to_eliassen_palm_flux_divergence", "tendency_of_eastward_wind_due_to_gravity_wave_drag", "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_eastward_wind_due_to_numerical_artefacts", "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_enthalpy_content_of_atmosphere_layer_due_to_advection", "tendency_of_global_average_sea_level_change", "tendency_of_kinetic_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_land_ice_mass", "tendency_of_land_ice_mass_due_to_basal_mass_balance", "tendency_of_land_ice_mass_due_to_calving", "tendency_of_land_ice_mass_due_to_surface_mass_balance", "tendency_of_land_ice_thickness", "tendency_of_mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_dioxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nox_expressed_as_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_deep_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_shallow_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_turbulence", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_convective_cloud_ice_in_air", "tendency_of_mass_fraction_of_convective_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_aggregation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_bergeron_findeisen_process_from_cloud_liquid", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_deposition_and_sublimation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_evaporation_of_melting_ice", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_water_vapor", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_autoconversion", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_bergeron_findeisen_process_to_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_convection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_longwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_pressure_change", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_shortwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_turbulence", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_heterogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_melting_from_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_riming", "tendency_of_middle_atmosphere_moles_of_carbon_monoxide", "tendency_of_middle_atmosphere_moles_of_hcc140a", "tendency_of_middle_atmosphere_moles_of_methane", "tendency_of_middle_atmosphere_moles_of_methyl_bromide", "tendency_of_middle_atmosphere_moles_of_methyl_chloride", "tendency_of_middle_atmosphere_moles_of_molecular_hydrogen", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_dissolved_inorganic_carbon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_iron_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_silicon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_dissolution_from_inorganic_particles", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_scavenging_by_inorganic_particles", "tendency_of_mole_concentration_of_iron_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_and_photolytic_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_destruction", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_calcareous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diatoms", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diazotrophic_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_miscellaneous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_picophytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_nitrate_utilization", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_remineralization", "tendency_of_mole_concentration_of_silicon_in_sea_water_due_to_biological_production", "tendency_of_northward_wind", "tendency_of_northward_wind_due_to_advection", "tendency_of_northward_wind_due_to_convection", "tendency_of_northward_wind_due_to_diffusion", "tendency_of_northward_wind_due_to_gravity_wave_drag", "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_northward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_ocean_barotropic_streamfunction", "tendency_of_ocean_eddy_kinetic_energy_content_due_to_parameterized_eddy_advection", "tendency_of_ocean_mole_content_of_aragonite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_calcite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_deposition_and_fixation_and_runoff", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_fixation", "tendency_of_ocean_mole_content_of_inorganic_carbon", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_iron_due_to_biological_production", "tendency_of_ocean_mole_content_of_iron_due_to_deposition_and_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "tendency_of_ocean_mole_content_of_nitrogen_due_to_biological_production", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_phosphorus_due_to_biological_production", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_silicon_due_to_biological_production", "tendency_of_ocean_potential_energy_content", "tendency_of_ocean_potential_energy_content_due_to_background", "tendency_of_ocean_potential_energy_content_due_to_tides", "tendency_of_potential_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_convection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_diffusion", "tendency_of_sea_ice_amount_due_to_basal_melting", "tendency_of_sea_ice_amount_due_to_congelation_ice_accumulation", "tendency_of_sea_ice_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_sea_ice_amount_due_to_frazil_ice_accumulation_in_leads", "tendency_of_sea_ice_amount_due_to_lateral_growth_of_ice_floes", "tendency_of_sea_ice_amount_due_to_lateral_melting", "tendency_of_sea_ice_amount_due_to_sea_ice_dynamics", "tendency_of_sea_ice_amount_due_to_sea_ice_thermodynamics", "tendency_of_sea_ice_amount_due_to_surface_melting", "tendency_of_sea_ice_area_fraction_due_to_dynamics", "tendency_of_sea_ice_area_fraction_due_to_ridging", "tendency_of_sea_ice_area_fraction_due_to_thermodynamics", "tendency_of_sea_ice_thickness_due_to_dynamics", "tendency_of_sea_ice_thickness_due_to_thermodynamics", "tendency_of_sea_surface_height_above_mean_sea_level", "tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_salinity", "tendency_of_sea_water_salinity_due_to_advection", "tendency_of_sea_water_salinity_due_to_horizontal_mixing", "tendency_of_sea_water_salinity_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_due_to_sea_ice_thermodynamics", "tendency_of_sea_water_salinity_due_to_vertical_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_residual_mean_advection", "tendency_of_sea_water_temperature", "tendency_of_sea_water_temperature_due_to_advection", "tendency_of_sea_water_temperature_due_to_horizontal_mixing", "tendency_of_sea_water_temperature_due_to_parameterized_eddy_advection", "tendency_of_sea_water_temperature_due_to_vertical_mixing", "tendency_of_soil_and_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_soil_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fertilization", "tendency_of_specific_humidity", "tendency_of_specific_humidity_due_to_advection", "tendency_of_specific_humidity_due_to_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_convection", "tendency_of_specific_humidity_due_to_diffusion", "tendency_of_specific_humidity_due_to_model_physics", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_stratiform_precipitation", "tendency_of_surface_air_pressure", "tendency_of_surface_snow_amount", "tendency_of_surface_snow_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_surface_snow_amount_due_to_drifting_into_sea", "tendency_of_surface_snow_amount_due_to_sea_ice_dynamics", "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", "tendency_of_troposphere_moles_of_carbon_monoxide", "tendency_of_troposphere_moles_of_hcc140a", "tendency_of_troposphere_moles_of_hcfc22", "tendency_of_troposphere_moles_of_methane", "tendency_of_troposphere_moles_of_methyl_bromide", "tendency_of_troposphere_moles_of_methyl_chloride", "tendency_of_troposphere_moles_of_molecular_hydrogen", "tendency_of_upward_air_velocity", "tendency_of_upward_air_velocity_due_to_advection", "tendency_of_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_wind_speed_due_to_convection", "tendency_of_wind_speed_due_to_gravity_wave_drag", "thermal_conductivity_of_frozen_ground", "thermal_energy_content_of_surface_snow", "thermodynamic_phase_of_cloud_water_particles_at_cloud_top", "thermosteric_change_in_mean_sea_level", "thermosteric_change_in_sea_surface_height", "thickness_of_convective_rainfall_amount", "thickness_of_convective_snowfall_amount", "thickness_of_ice_on_sea_ice_melt_pond", "thickness_of_liquid_water_cloud", "thickness_of_rainfall_amount", "thickness_of_snowfall_amount", "thickness_of_stratiform_rainfall_amount", "thickness_of_stratiform_snowfall_amount", "thunderstorm_probability", "tidal_sea_surface_height_above_lowest_astronomical_tide", "tidal_sea_surface_height_above_mean_higher_high_water", "tidal_sea_surface_height_above_mean_lower_low_water", "tidal_sea_surface_height_above_mean_low_water_springs", "tidal_sea_surface_height_above_mean_sea_level", "time", "time_of_maximum_flood_depth", "time_sample_difference_due_to_collocation", "time_when_flood_water_falls_below_threshold", "time_when_flood_water_rises_above_threshold", "toa_adjusted_longwave_forcing", "toa_adjusted_radiative_forcing", "toa_adjusted_shortwave_forcing", "toa_bidirectional_reflectance", "toa_brightness_temperature", "toa_brightness_temperature_assuming_clear_sky", "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", "toa_brightness_temperature_of_standard_scene", "toa_cloud_radiative_effect", "toa_incoming_shortwave_flux", "toa_instantaneous_longwave_forcing", "toa_instantaneous_radiative_forcing", "toa_instantaneous_shortwave_forcing", "toa_longwave_cloud_radiative_effect", "toa_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "toa_net_downward_longwave_flux", "toa_net_downward_longwave_flux_assuming_clear_sky", "toa_net_downward_radiative_flux", "toa_net_downward_shortwave_flux", "toa_net_downward_shortwave_flux_assuming_clear_sky", "toa_net_upward_longwave_flux", "toa_net_upward_longwave_flux_assuming_clear_sky", "toa_net_upward_shortwave_flux", "toa_outgoing_longwave_flux", "toa_outgoing_longwave_flux_assuming_clear_sky", "toa_outgoing_longwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_outgoing_radiance_per_unit_wavelength", "toa_outgoing_radiance_per_unit_wavelength_due_to_solar_induced_fluorescence", "toa_outgoing_radiance_per_unit_wavenumber", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_target", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_target", "toa_outgoing_shortwave_flux", "toa_outgoing_shortwave_flux_assuming_clear_sky", "toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol", "toa_outgoing_shortwave_flux_assuming_no_aerosol", "toa_outgoing_shortwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_shortwave_cloud_radiative_effect", "to_direction_of_air_velocity_relative_to_sea_water", "to_direction_of_surface_downward_stress", "tracer_lifetime", "transpiration_amount", "transpiration_flux", "tropical_cyclone_eye_brightness_temperature", "tropical_cyclone_maximum_sustained_wind_speed", "tropopause_adjusted_longwave_forcing", "tropopause_adjusted_radiative_forcing", "tropopause_adjusted_shortwave_forcing", "tropopause_air_pressure", "tropopause_air_temperature", "tropopause_altitude", "tropopause_downwelling_longwave_flux", "tropopause_instantaneous_longwave_forcing", "tropopause_instantaneous_radiative_forcing", "tropopause_instantaneous_shortwave_forcing", "tropopause_net_downward_longwave_flux", "tropopause_net_downward_shortwave_flux", "tropopause_upwelling_shortwave_flux", "troposphere_mole_content_of_bromine_monoxide", "troposphere_mole_content_of_formaldehyde", "troposphere_mole_content_of_glyoxal", "troposphere_mole_content_of_iodine_monoxide", "troposphere_mole_content_of_nitrogen_dioxide", "troposphere_mole_content_of_ozone", "troposphere_mole_content_of_sulfur_dioxide", "turbulent_mixing_length_of_sea_water", "ultraviolet_index", "ultraviolet_index_assuming_clear_sky", "ultraviolet_index_assuming_overcast_sky", "upward_air_velocity", "upward_derivative_of_eastward_wind", "upward_derivative_of_northward_wind", "upward_derivative_of_wind_from_direction", "upward_dry_static_energy_flux_due_to_diffusion", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_eastward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_westward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_orographic_gravity_waves", "upward_eastward_stress_at_sea_ice_base", "upward_eliassen_palm_flux_in_air", "upward_geothermal_heat_flux_at_ground_level_in_land_ice", "upward_geothermal_heat_flux_at_sea_floor", "upward_heat_flux_at_ground_level_in_snow", "upward_heat_flux_at_ground_level_in_soil", "upward_heat_flux_in_air", "upward_heat_flux_in_sea_water_due_to_convection", "upward_latent_heat_flux_in_air", "upward_mass_flux_of_air", "upward_northward_stress_at_sea_ice_base", "upward_ocean_mass_transport", "upward_sea_ice_basal_heat_flux", "upward_sea_water_velocity", "upward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "upward_sensible_heat_flux_in_air", "upward_transformed_eulerian_mean_air_velocity", "upward_upward_derivative_of_geopotential", "upward_water_vapor_flux_in_air", "upward_water_vapor_flux_in_air_due_to_diffusion", "upward_x_stress_at_sea_ice_base", "upward_y_stress_at_sea_ice_base", "upwelling_longwave_flux_in_air", "upwelling_longwave_flux_in_air_assuming_clear_sky", "upwelling_longwave_radiance_in_air", "upwelling_radiance_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "upwelling_shortwave_flux_in_air", "upwelling_shortwave_flux_in_air_assuming_clear_sky", "upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "upwelling_shortwave_radiance_in_air", "vegetation_area_fraction", "vegetation_carbon_content", "vegetation_mass_content_of_13C", "vegetation_mass_content_of_14C", "vegetation_mass_content_of_nitrogen", "vertical_component_of_ocean_xy_tracer_diffusivity", "vertical_navigation_clearance_above_waterway_surface", "virtual_salt_flux_correction", "virtual_salt_flux_into_sea_water", "virtual_salt_flux_into_sea_water_due_to_evaporation", "virtual_salt_flux_into_sea_water_due_to_newtonian_relaxation", "virtual_salt_flux_into_sea_water_due_to_rainfall", "virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "virtual_salt_flux_into_sea_water_from_rivers", "virtual_temperature", "visibility_in_air", "volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles", "volume_absorption_coefficient_of_radiative_flux_in_sea_water", "volume_absorption_coefficient_of_radiative_flux_in_sea_water_due_to_dissolved_organic_matter", "volume_attenuated_backwards_scattering_function_in_air", "volume_attenuated_backwards_scattering_function_in_air_assuming_no_aerosol_or_cloud", "volume_attenuation_coefficient_of_downwelling_radiative_flux_in_sea_water", "volume_backwards_scattering_coefficient_in_air_due_to_dried_aerosol_particles", "volume_backwards_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water_corrected_for_pure_water_attenuance", "volume_extinction_coefficient_in_air_due_to_ambient_aerosol_particles", "volume_extinction_coefficient_in_air_due_to_cloud_particles", "volume_fraction_of_clay_in_soil", "volume_fraction_of_condensed_water_in_soil", "volume_fraction_of_condensed_water_in_soil_at_critical_point", "volume_fraction_of_condensed_water_in_soil_at_field_capacity", "volume_fraction_of_condensed_water_in_soil_at_wilting_point", "volume_fraction_of_condensed_water_in_soil_pores", "volume_fraction_of_frozen_water_in_soil", "volume_fraction_of_oxygen_in_sea_water", "volume_fraction_of_sand_in_soil", "volume_fraction_of_silt_in_soil", "volume_mixing_ratio_of_oxygen_at_stp_in_sea_water", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_dried_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_scattering_function_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_function_of_radiative_flux_in_sea_water", "water_evaporation_amount", "water_evaporation_amount_from_canopy", "water_evaporation_flux_from_canopy", "water_evaporation_flux_from_soil", "water_evapotranspiration_flux", "water_flux_correction", "water_flux_into_sea_water", "water_flux_into_sea_water_due_to_sea_ice_thermodynamics", "water_flux_into_sea_water_due_to_surface_drainage", "water_flux_into_sea_water_from_icebergs", "water_flux_into_sea_water_from_land_ice", "water_flux_into_sea_water_from_rivers", "water_flux_into_sea_water_from_rivers_and_surface_downward_water_flux", "water_flux_into_sea_water_without_flux_correction", "water_flux_out_of_sea_ice_and_sea_water", "water_flux_out_of_sea_water", "water_flux_out_of_sea_water_due_to_newtonian_relaxation", "water_flux_out_of_sea_water_due_to_sea_ice_thermodynamics", "water_potential_evaporation_amount", "water_potential_evaporation_flux", "water_sublimation_flux", "water_surface_height_above_reference_datum", "water_surface_reference_datum_altitude", "water_table_depth", "water_vapor_partial_pressure_in_air", "water_vapor_saturation_deficit_in_air", "water_volume_transport_in_river_channel", "water_volume_transport_into_sea_water_from_rivers", "wave_frequency", "westward_upward_derivative_of_geopotential", "westward_westward_derivative_of_geopotential", "wet_bulb_potential_temperature", "wet_bulb_temperature", "wind_chill_of_air_temperature", "wind_from_direction", "wind_gust_from_direction", "wind_mixing_energy_flux_into_sea_water", "wind_speed", "wind_speed_of_gust", "wind_speed_shear", "wind_to_direction", "wood_debris_mass_content_of_carbon", "wood_debris_mass_content_of_nitrogen", "x_derivative_of_ocean_rigid_lid_pressure", "x_heat_flux_in_sea_water_due_to_advection", "x_wind", "x_wind_gust", "y_derivative_of_ocean_rigid_lid_pressure", "y_heat_flux_in_sea_water_due_to_advection", "y_wind", "y_wind_gust", "zenith_angle"], "description": "Options", "index": [0], "layout": "IPY_MODEL_472c502c82e24479aa9d31f11343ca5f", "rows": 10, "style": "IPY_MODEL_a66ee3d802144e32a94aa69133b79954"}}, "8177644bf7464684b420143288a2be27": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextModel", "state": {"description": "include", "layout": "IPY_MODEL_35ce78e899b64bf59563c5676a49fd2f", "style": "IPY_MODEL_653bec301b4f49fdb48b20cb16e035d8", "value": "tem"}}, "88102ffcd5944311b5ccc7448d867782": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "8c0a76952410422bab4d80ab5306404a": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", "air_pseudo_equivalent_potential_temperature", "air_pseudo_equivalent_temperature", "air_temperature", "air_temperature_anomaly", "air_temperature_at_cloud_top", "air_temperature_at_effective_cloud_top_defined_by_infrared_radiation", "air_temperature_lapse_rate", "air_temperature_threshold", "apparent_air_temperature", "automated_tropical_cyclone_forecasting_system_storm_identifier", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "canopy_temperature", "change_over_time_in_sea_water_conservative_temperature", "change_over_time_in_sea_water_potential_temperature", "change_over_time_in_sea_water_temperature", "covariance_over_longitude_of_northward_wind_and_air_temperature", "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", "depth_at_shallowest_isotherm_defined_by_soil_temperature", "depth_of_isosurface_of_sea_water_potential_temperature", "dew_point_temperature", "difference_between_sea_surface_temperature_and_air_temperature", "dynamic_tropopause_potential_temperature", "fire_temperature", "freezing_temperature_of_sea_water", "heat_index_of_air_temperature", "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", "integral_wrt_depth_of_sea_water_temperature", "integral_wrt_time_of_air_temperature_deficit", "integral_wrt_time_of_air_temperature_excess", "land_ice_basal_temperature", "land_ice_temperature", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", "number_of_days_with_air_temperature_above_threshold", "number_of_days_with_air_temperature_below_threshold", "number_of_days_with_surface_temperature_below_threshold", "ocean_mixed_layer_thickness_defined_by_temperature", "product_of_air_temperature_and_specific_humidity", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_eastward_wind_and_air_temperature", "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", "product_of_northward_sea_water_velocity_and_temperature", "product_of_northward_wind_and_air_temperature", "product_of_upward_air_velocity_and_air_temperature", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "sea_ice_basal_temperature", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_surface_foundation_temperature", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_temperature", "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", "sea_water_conservative_temperature", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_redistributed_conservative_temperature", "sea_water_redistributed_potential_temperature", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "soil_temperature", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", "square_of_air_temperature", "square_of_sea_surface_temperature", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "surface_brightness_temperature", "surface_temperature", "surface_temperature_anomaly", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", "temperature_at_base_of_ice_sheet_model", "temperature_at_top_of_ice_sheet_model", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically_from_the_surface", "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "tendency_of_air_temperature", "tendency_of_air_temperature_due_to_advection", "tendency_of_air_temperature_due_to_boundary_layer_mixing", "tendency_of_air_temperature_due_to_convection", "tendency_of_air_temperature_due_to_diabatic_processes", "tendency_of_air_temperature_due_to_diffusion", "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", "tendency_of_air_temperature_due_to_dry_convection", "tendency_of_air_temperature_due_to_longwave_heating", "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_model_physics", "tendency_of_air_temperature_due_to_moist_convection", "tendency_of_air_temperature_due_to_radiative_heating", "tendency_of_air_temperature_due_to_shortwave_heating", "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_air_temperature_due_to_stratiform_precipitation", "tendency_of_air_temperature_due_to_turbulence", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_temperature", "tendency_of_sea_water_temperature_due_to_advection", "tendency_of_sea_water_temperature_due_to_horizontal_mixing", "tendency_of_sea_water_temperature_due_to_parameterized_eddy_advection", "tendency_of_sea_water_temperature_due_to_vertical_mixing", "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", "toa_brightness_temperature", "toa_brightness_temperature_assuming_clear_sky", "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", "toa_brightness_temperature_of_standard_scene", "tropical_cyclone_eye_brightness_temperature", "tropopause_air_temperature", "virtual_temperature", "wet_bulb_potential_temperature", "wet_bulb_temperature", "wind_chill_of_air_temperature"], "description": "Options", "index": [0], "layout": "IPY_MODEL_69efdc6bdd9e489199d5b73ccb06c79c", "rows": 10, "style": "IPY_MODEL_4f36137883c14732b514d4d75847351e"}}, "938489e78d954b6dbe373339e04bd535": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "939b182a9bf84d3c87819e34ad964512": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "991c1cb5e58842d38227691b6cfe15d1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ButtonModel", "state": {"description": "Press to save", "layout": "IPY_MODEL_a2942a7eea4a441093bf96c5f2207198", "style": "IPY_MODEL_d487cde5a3ee4bca96148467136b9f8a", "tooltip": null}}, "9b0b5a9476ac433bae0fa98096df4a7e": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {"width": "50%"}}, "a2942a7eea4a441093bf96c5f2207198": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "a3f91050466040919c3e6b3d6823e487": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextStyleModel", "state": {"description_width": "", "font_size": null, "text_color": null}}, "a5704994a16b40e3b56c18fabd50f188": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "a66ee3d802144e32a94aa69133b79954": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "aab2f6fc9e544de2bd48ae267b11fa32": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "VBoxModel", "state": {"_dom_classes": ["widget-interact"], "children": ["IPY_MODEL_44ab81cf6ec749e9ad65fc52794c32c7", "IPY_MODEL_8177644bf7464684b420143288a2be27", "IPY_MODEL_68de4b0bf9f24947862a8ef71de230f8", "IPY_MODEL_e350ad25445947b0b9db8ecd5723b4f7"], "layout": "IPY_MODEL_ae791d67b513406a80facb5f6b81f978"}}, "ae791d67b513406a80facb5f6b81f978": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}, "bbf48800a8464cbea4ba905c9177376a": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["acoustic_signal_roundtrip_travel_time_in_sea_water", "aerodynamic_particle_diameter", "aerodynamic_resistance", "age_of_sea_ice", "age_of_stratospheric_air", "age_of_surface_snow", "aggregate_quality_flag", "air_density", "air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", "air_pressure", "air_pressure_anomaly", "air_pressure_at_cloud_base", "air_pressure_at_cloud_top", "air_pressure_at_convective_cloud_base", "air_pressure_at_convective_cloud_top", "air_pressure_at_freezing_level", "air_pressure_at_mean_sea_level", "air_pressure_at_top_of_atmosphere_model", "air_pseudo_equivalent_potential_temperature", "air_pseudo_equivalent_temperature", "air_temperature", "air_temperature_anomaly", "air_temperature_at_cloud_top", "air_temperature_at_effective_cloud_top_defined_by_infrared_radiation", "air_temperature_lapse_rate", "air_temperature_threshold", "altimeter_range", "altimeter_range_correction_due_to_dry_troposphere", "altimeter_range_correction_due_to_ionosphere", "altimeter_range_correction_due_to_wet_troposphere", "altitude", "altitude_at_top_of_atmosphere_model", "altitude_at_top_of_dry_convection", "amplitude_of_global_average_sea_level_change", "angle_of_emergence", "angle_of_incidence", "angle_of_rotation_from_east_to_x", "angle_of_rotation_from_east_to_y", "angle_of_rotation_from_solar_azimuth_to_platform_azimuth", "angstrom_exponent_of_ambient_aerosol_in_air", "apparent_air_temperature", "apparent_oxygen_utilization", "area_fraction", "area_fraction_below_surface", "area_fraction_of_day_defined_by_solar_zenith_angle", "area_fraction_of_night_defined_by_solar_zenith_angle", "area_fraction_of_twilight_defined_by_solar_zenith_angle", "area_type", "asymmetry_factor_of_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_absorption_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_boundary_layer_thickness", "atmosphere_convective_available_potential_energy", "atmosphere_convective_available_potential_energy_wrt_surface", "atmosphere_convective_inhibition", "atmosphere_convective_inhibition_wrt_surface", "atmosphere_downdraft_convective_mass_flux", "atmosphere_dry_energy_content", "atmosphere_dry_static_energy_content", "atmosphere_eastward_stress_due_to_gravity_wave_drag", "atmosphere_energy_content", "atmosphere_enthalpy_content", "atmosphere_heat_diffusivity", "atmosphere_helicity", "atmosphere_horizontal_streamfunction", "atmosphere_horizontal_velocity_potential", "atmosphere_hybrid_height_coordinate", "atmosphere_hybrid_sigma_pressure_coordinate", "atmosphere_kinetic_energy_content", "atmosphere_layer_thickness_expressed_as_geopotential_height_difference", "atmosphere_level_of_free_convection", "atmosphere_level_of_free_convection_wrt_surface", "atmosphere_lifting_condensation_level", "atmosphere_lifting_condensation_level_wrt_surface", "atmosphere_ln_pressure_coordinate", "atmosphere_mass_content_of_acetic_acid", "atmosphere_mass_content_of_aceto_nitrile", "atmosphere_mass_content_of_alkanes", "atmosphere_mass_content_of_alkenes", "atmosphere_mass_content_of_alpha_hexachlorocyclohexane", "atmosphere_mass_content_of_alpha_pinene", "atmosphere_mass_content_of_ammonia", "atmosphere_mass_content_of_ammonium_dry_aerosol_particles", "atmosphere_mass_content_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_aromatic_compounds", "atmosphere_mass_content_of_atomic_bromine", "atmosphere_mass_content_of_atomic_chlorine", "atmosphere_mass_content_of_atomic_nitrogen", "atmosphere_mass_content_of_benzene", "atmosphere_mass_content_of_beta_pinene", "atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_bromine_chloride", "atmosphere_mass_content_of_bromine_monoxide", "atmosphere_mass_content_of_bromine_nitrate", "atmosphere_mass_content_of_brox_expressed_as_bromine", "atmosphere_mass_content_of_butane", "atmosphere_mass_content_of_carbon_dioxide", "atmosphere_mass_content_of_carbon_monoxide", "atmosphere_mass_content_of_carbon_tetrachloride", "atmosphere_mass_content_of_cfc11", "atmosphere_mass_content_of_cfc113", "atmosphere_mass_content_of_cfc113a", "atmosphere_mass_content_of_cfc114", "atmosphere_mass_content_of_cfc115", "atmosphere_mass_content_of_cfc12", "atmosphere_mass_content_of_chlorine_dioxide", "atmosphere_mass_content_of_chlorine_monoxide", "atmosphere_mass_content_of_chlorine_nitrate", "atmosphere_mass_content_of_cloud_condensed_water", "atmosphere_mass_content_of_cloud_ice", "atmosphere_mass_content_of_cloud_liquid_water", "atmosphere_mass_content_of_clox_expressed_as_chlorine", "atmosphere_mass_content_of_convective_cloud_condensed_water", "atmosphere_mass_content_of_convective_cloud_ice", "atmosphere_mass_content_of_convective_cloud_liquid_water", "atmosphere_mass_content_of_dichlorine_peroxide", "atmosphere_mass_content_of_dimethyl_sulfide", "atmosphere_mass_content_of_dinitrogen_pentoxide", "atmosphere_mass_content_of_dust_dry_aerosol_particles", "atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles", "atmosphere_mass_content_of_ethane", "atmosphere_mass_content_of_ethanol", "atmosphere_mass_content_of_ethene", "atmosphere_mass_content_of_ethyne", "atmosphere_mass_content_of_formaldehyde", "atmosphere_mass_content_of_formic_acid", "atmosphere_mass_content_of_gaseous_divalent_mercury", "atmosphere_mass_content_of_gaseous_elemental_mercury", "atmosphere_mass_content_of_graupel", "atmosphere_mass_content_of_graupel_and_hail", "atmosphere_mass_content_of_hail", "atmosphere_mass_content_of_halon1202", "atmosphere_mass_content_of_halon1211", "atmosphere_mass_content_of_halon1301", "atmosphere_mass_content_of_halon2402", "atmosphere_mass_content_of_hcc140a", "atmosphere_mass_content_of_hcfc141b", "atmosphere_mass_content_of_hcfc142b", "atmosphere_mass_content_of_hcfc22", "atmosphere_mass_content_of_hexachlorobiphenyl", "atmosphere_mass_content_of_hox_expressed_as_hydrogen", "atmosphere_mass_content_of_hydrogen_bromide", "atmosphere_mass_content_of_hydrogen_chloride", "atmosphere_mass_content_of_hydrogen_cyanide", "atmosphere_mass_content_of_hydrogen_peroxide", "atmosphere_mass_content_of_hydroperoxyl_radical", "atmosphere_mass_content_of_hydroxyl_radical", "atmosphere_mass_content_of_hypobromous_acid", "atmosphere_mass_content_of_hypochlorous_acid", "atmosphere_mass_content_of_inorganic_bromine", "atmosphere_mass_content_of_inorganic_chlorine", "atmosphere_mass_content_of_isoprene", "atmosphere_mass_content_of_limonene", "atmosphere_mass_content_of_liquid_precipitation", "atmosphere_mass_content_of_mercury_dry_aerosol_particles", "atmosphere_mass_content_of_methane", "atmosphere_mass_content_of_methanol", "atmosphere_mass_content_of_methyl_bromide", "atmosphere_mass_content_of_methyl_chloride", "atmosphere_mass_content_of_methyl_hydroperoxide", "atmosphere_mass_content_of_methyl_peroxy_radical", "atmosphere_mass_content_of_molecular_hydrogen", "atmosphere_mass_content_of_nitrate_dry_aerosol_particles", "atmosphere_mass_content_of_nitrate_radical", "atmosphere_mass_content_of_nitric_acid", "atmosphere_mass_content_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_mass_content_of_nitrogen_monoxide", "atmosphere_mass_content_of_nitrous_acid", "atmosphere_mass_content_of_nitrous_oxide", "atmosphere_mass_content_of_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_nox_expressed_as_nitrogen", "atmosphere_mass_content_of_noy_expressed_as_nitrogen", "atmosphere_mass_content_of_oxygenated_hydrocarbons", "atmosphere_mass_content_of_ozone", "atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_peroxyacetyl_nitrate", "atmosphere_mass_content_of_peroxynitric_acid", "atmosphere_mass_content_of_peroxy_radicals", "atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_propane", "atmosphere_mass_content_of_propene", "atmosphere_mass_content_of_radon", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_expressed_as_cations", "atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_snow", "atmosphere_mass_content_of_sulfate", "atmosphere_mass_content_of_sulfate_ambient_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur", "atmosphere_mass_content_of_sulfur_dioxide", "atmosphere_mass_content_of_terpenes", "atmosphere_mass_content_of_toluene", "atmosphere_mass_content_of_volcanic_ash", "atmosphere_mass_content_of_water", "atmosphere_mass_content_of_water_in_ambient_aerosol_particles", "atmosphere_mass_content_of_water_vapor", "atmosphere_mass_content_of_xylene", "atmosphere_mass_of_air_per_unit_area", "atmosphere_mass_of_carbon_dioxide", "atmosphere_mass_per_unit_area", "atmosphere_mole_content_of_carbon_monoxide", "atmosphere_mole_content_of_methane", "atmosphere_mole_content_of_nitrogen_dioxide", "atmosphere_mole_content_of_ozone", "atmosphere_mole_content_of_water_vapor", "atmosphere_moles_of_acetic_acid", "atmosphere_moles_of_aceto_nitrile", "atmosphere_moles_of_alpha_hexachlorocyclohexane", "atmosphere_moles_of_alpha_pinene", "atmosphere_moles_of_ammonia", "atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_atomic_bromine", "atmosphere_moles_of_atomic_chlorine", "atmosphere_moles_of_atomic_nitrogen", "atmosphere_moles_of_benzene", "atmosphere_moles_of_beta_pinene", "atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_bromine_chloride", "atmosphere_moles_of_bromine_monoxide", "atmosphere_moles_of_bromine_nitrate", "atmosphere_moles_of_brox_expressed_as_bromine", "atmosphere_moles_of_butane", "atmosphere_moles_of_carbon_dioxide", "atmosphere_moles_of_carbon_monoxide", "atmosphere_moles_of_carbon_tetrachloride", "atmosphere_moles_of_cfc11", "atmosphere_moles_of_cfc113", "atmosphere_moles_of_cfc113a", "atmosphere_moles_of_cfc114", "atmosphere_moles_of_cfc115", "atmosphere_moles_of_cfc12", "atmosphere_moles_of_chlorine_dioxide", "atmosphere_moles_of_chlorine_monoxide", "atmosphere_moles_of_chlorine_nitrate", "atmosphere_moles_of_clox_expressed_as_chlorine", "atmosphere_moles_of_dichlorine_peroxide", "atmosphere_moles_of_dimethyl_sulfide", "atmosphere_moles_of_dinitrogen_pentoxide", "atmosphere_moles_of_ethane", "atmosphere_moles_of_ethanol", "atmosphere_moles_of_ethene", "atmosphere_moles_of_ethyne", "atmosphere_moles_of_formaldehyde", "atmosphere_moles_of_formic_acid", "atmosphere_moles_of_gaseous_divalent_mercury", "atmosphere_moles_of_gaseous_elemental_mercury", "atmosphere_moles_of_halon1202", "atmosphere_moles_of_halon1211", "atmosphere_moles_of_halon1301", "atmosphere_moles_of_halon2402", "atmosphere_moles_of_hcc140a", "atmosphere_moles_of_hcfc141b", "atmosphere_moles_of_hcfc142b", "atmosphere_moles_of_hcfc22", "atmosphere_moles_of_hexachlorobiphenyl", "atmosphere_moles_of_hox_expressed_as_hydrogen", "atmosphere_moles_of_hydrogen_bromide", "atmosphere_moles_of_hydrogen_chloride", "atmosphere_moles_of_hydrogen_cyanide", "atmosphere_moles_of_hydrogen_peroxide", "atmosphere_moles_of_hydroperoxyl_radical", "atmosphere_moles_of_hydroxyl_radical", "atmosphere_moles_of_hypobromous_acid", "atmosphere_moles_of_hypochlorous_acid", "atmosphere_moles_of_inorganic_bromine", "atmosphere_moles_of_inorganic_chlorine", "atmosphere_moles_of_isoprene", "atmosphere_moles_of_limonene", "atmosphere_moles_of_methane", "atmosphere_moles_of_methanol", "atmosphere_moles_of_methyl_bromide", "atmosphere_moles_of_methyl_chloride", "atmosphere_moles_of_methyl_hydroperoxide", "atmosphere_moles_of_methyl_peroxy_radical", "atmosphere_moles_of_molecular_hydrogen", "atmosphere_moles_of_nitrate_radical", "atmosphere_moles_of_nitric_acid", "atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_moles_of_nitrogen_dioxide", "atmosphere_moles_of_nitrogen_monoxide", "atmosphere_moles_of_nitrous_acid", "atmosphere_moles_of_nitrous_oxide", "atmosphere_moles_of_nmvoc_expressed_as_carbon", "atmosphere_moles_of_nox_expressed_as_nitrogen", "atmosphere_moles_of_noy_expressed_as_nitrogen", "atmosphere_moles_of_ozone", "atmosphere_moles_of_peroxyacetyl_nitrate", "atmosphere_moles_of_peroxynitric_acid", "atmosphere_moles_of_propane", "atmosphere_moles_of_propene", "atmosphere_moles_of_radon", "atmosphere_moles_of_sulfur_dioxide", "atmosphere_moles_of_toluene", "atmosphere_moles_of_water_vapor", "atmosphere_moles_of_xylene", "atmosphere_momentum_diffusivity", "atmosphere_net_rate_of_absorption_of_longwave_energy", "atmosphere_net_rate_of_absorption_of_shortwave_energy", "atmosphere_net_upward_convective_mass_flux", "atmosphere_net_upward_deep_convective_mass_flux", "atmosphere_net_upward_shallow_convective_mass_flux", "atmosphere_northward_stress_due_to_gravity_wave_drag", "atmosphere_number_content_of_aerosol_particles", "atmosphere_number_content_of_cloud_droplets", "atmosphere_number_content_of_ice_crystals", "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_ammonium_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_optical_thickness_due_to_cloud", "atmosphere_optical_thickness_due_to_convective_cloud", "atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_dust_dry_aerosol_particles", "atmosphere_optical_thickness_due_to_nitrate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm10_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm1_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm2p5_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_stratiform_cloud", "atmosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_water_in_ambient_aerosol_particles", "atmosphere_potential_energy_content", "atmosphere_sigma_coordinate", "atmosphere_sleve_coordinate", "atmosphere_stability_k_index", "atmosphere_stability_showalter_index", "atmosphere_stability_total_totals_index", "atmosphere_transformed_eulerian_mean_meridional_overturning_mass_streamfunction", "atmosphere_updraft_convective_mass_flux", "atmosphere_upward_absolute_vorticity", "atmosphere_upward_relative_vorticity", "atmosphere_x_relative_vorticity", "atmosphere_y_relative_vorticity", "attenuated_signal_test_quality_flag", "automated_tropical_cyclone_forecasting_system_storm_identifier", "backscattering_ratio_in_air", "baroclinic_eastward_sea_water_velocity", "baroclinic_northward_sea_water_velocity", "barometric_altitude", "barotropic_eastward_sea_water_velocity", "barotropic_northward_sea_water_velocity", "barotropic_sea_water_x_velocity", "barotropic_sea_water_y_velocity", "basal_downward_heat_flux_in_sea_ice", "baseflow_amount", "beam_consistency_indicator_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "beaufort_wind_force", "bedrock_altitude", "bedrock_altitude_change_due_to_isostatic_adjustment", "biological_taxon_lsid", "biological_taxon_name", "bioluminescent_photon_rate_in_sea_water", "biomass_burning_carbon_flux", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "brunt_vaisala_frequency_in_air", "burned_area", "burned_area_fraction", "canopy_albedo", "canopy_and_surface_water_amount", "canopy_height", "canopy_resistance_to_ozone_dry_deposition", "canopy_snow_amount", "canopy_temperature", "canopy_throughfall_flux", "canopy_water_amount", "carbon_mass_content_of_forestry_and_agricultural_products", "carbon_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_litter_and_soil_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_soil_from_litter", "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", "cell_area", "cell_thickness", "change_in_atmosphere_energy_content_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_energy_content_of_atmosphere_layer_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_land_ice_amount", "change_in_land_ice_mass", "change_over_time_in_amount_of_ice_and_snow_on_land", "change_over_time_in_atmosphere_mass_content_of_water_due_to_advection", "change_over_time_in_canopy_water_amount", "change_over_time_in_groundwater_amount", "change_over_time_in_land_surface_liquid_water_amount", "change_over_time_in_land_water_amount", "change_over_time_in_mass_content_of_water_in_soil", "change_over_time_in_river_water_amount", "change_over_time_in_sea_water_absolute_salinity", "change_over_time_in_sea_water_conservative_temperature", "change_over_time_in_sea_water_density", "change_over_time_in_sea_water_neutral_density", "change_over_time_in_sea_water_potential_density", "change_over_time_in_sea_water_potential_temperature", "change_over_time_in_sea_water_practical_salinity", "change_over_time_in_sea_water_preformed_salinity", "change_over_time_in_sea_water_salinity", "change_over_time_in_sea_water_specific_potential_enthalpy", "change_over_time_in_sea_water_temperature", "change_over_time_in_surface_snow_amount", "change_over_time_in_thermal_energy_content_of_ice_and_snow_on_land", "change_over_time_in_thermal_energy_content_of_vegetation_and_litter_and_soil", "charnock_coefficient_for_surface_roughness_length_for_momentum_in_air", "clear_sky_area_fraction", "climatology_test_quality_flag", "cloud_albedo", "cloud_area_fraction", "cloud_area_fraction_in_atmosphere_layer", "cloud_base_altitude", "cloud_binary_mask", "cloud_ice_mixing_ratio", "cloud_liquid_water_mixing_ratio", "cloud_top_altitude", "colony_forming_unit_number_concentration_of_biological_taxon_in_sea_water", "compressive_strength_of_sea_ice", "concentration_of_colored_dissolved_organic_matter_in_sea_water_expressed_as_equivalent_mass_fraction_of_quinine_sulfate_dihydrate", "convection_time_fraction", "convective_cloud_area_fraction", "convective_cloud_area_fraction_in_atmosphere_layer", "convective_cloud_base_altitude", "convective_cloud_base_height", "convective_cloud_longwave_emissivity", "convective_cloud_top_altitude", "convective_cloud_top_height", "convective_precipitation_amount", "convective_precipitation_flux", "convective_precipitation_rate", "convective_rainfall_amount", "convective_rainfall_flux", "convective_rainfall_rate", "convective_snowfall_amount", "convective_snowfall_flux", "coriolis_parameter", "correction_for_model_negative_specific_humidity", "covariance_over_longitude_of_northward_wind_and_air_temperature", "depth", "depth_at_base_of_unfrozen_ground", "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", "depth_at_shallowest_isotherm_defined_by_soil_temperature", "depth_at_shallowest_local_minimum_in_vertical_profile_of_mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "depth_below_geoid", "depth_below_sea_floor", "depth_of_isosurface_of_sea_water_potential_temperature", "dew_point_depression", "dew_point_temperature", "diameter_of_ambient_aerosol_particles", "difference_between_sea_surface_temperature_and_air_temperature", "difference_of_air_pressure_from_model_reference", "diffuse_downwelling_shortwave_flux_in_air", "diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "dimensionless_exner_function", "direct_downwelling_shortwave_flux_in_air", "direction_of_radial_vector_away_from_instrument", "direction_of_radial_vector_toward_instrument", "direction_of_sea_ice_displacement", "direction_of_sea_ice_velocity", "distance_from_geocenter", "distance_from_sun", "distance_from_tropical_cyclone_center_to_leading_edge_of_displaced_convection", "divergence_of_sea_ice_velocity", "divergence_of_wind", "downward_air_velocity", "downward_dry_static_energy_flux_due_to_diffusion", "downward_eastward_momentum_flux_in_air", "downward_eastward_momentum_flux_in_air_due_to_diffusion", "downward_eastward_stress_at_sea_ice_base", "downward_heat_flux_at_ground_level_in_snow", "downward_heat_flux_at_ground_level_in_soil", "downward_heat_flux_in_air", "downward_heat_flux_in_floating_ice", "downward_heat_flux_in_sea_ice", "downward_heat_flux_in_soil", "downward_liquid_water_mass_flux_into_groundwater", "downward_northward_momentum_flux_in_air", "downward_northward_momentum_flux_in_air_due_to_diffusion", "downward_northward_stress_at_sea_ice_base", "downward_sea_ice_basal_salt_flux", "downward_water_vapor_flux_in_air_due_to_diffusion", "downward_x_stress_at_sea_ice_base", "downward_x_stress_at_sea_water_surface", "downward_x_stress_correction_at_sea_water_surface", "downward_y_stress_at_sea_ice_base", "downward_y_stress_at_sea_water_surface", "downward_y_stress_correction_at_sea_water_surface", "downwelling_longwave_flux_in_air", "downwelling_longwave_flux_in_air_assuming_clear_sky", "downwelling_longwave_radiance_in_air", "downwelling_photon_flux_in_sea_water", "downwelling_photon_flux_per_unit_wavelength_in_sea_water", "downwelling_photon_radiance_in_sea_water", "downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "downwelling_photon_spherical_irradiance_in_sea_water", "downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "downwelling_photosynthetic_photon_flux_in_sea_water", "downwelling_photosynthetic_photon_radiance_in_sea_water", "downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "downwelling_photosynthetic_radiance_in_sea_water", "downwelling_photosynthetic_radiative_flux_in_sea_water", "downwelling_photosynthetic_spherical_irradiance_in_sea_water", "downwelling_radiance_in_sea_water", "downwelling_radiance_per_unit_wavelength_in_air", "downwelling_radiance_per_unit_wavelength_in_sea_water", "downwelling_radiative_flux_in_sea_water", "downwelling_radiative_flux_per_unit_wavelength_in_air", "downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "downwelling_shortwave_flux_in_air", "downwelling_shortwave_flux_in_air_assuming_clear_sky", "downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "downwelling_shortwave_flux_in_sea_water", "downwelling_shortwave_flux_in_sea_water_at_sea_ice_base", "downwelling_shortwave_radiance_in_air", "downwelling_spherical_irradiance_in_sea_water", "downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "dry_atmosphere_mole_fraction_of_carbon_dioxide", "dry_atmosphere_mole_fraction_of_methane", "dry_energy_content_of_atmosphere_layer", "dry_static_energy_content_of_atmosphere_layer", "duration_of_sunshine", "dvorak_tropical_cyclone_current_intensity_number", "dvorak_tropical_number", "dynamic_tropopause_potential_temperature", "eastward_air_velocity_relative_to_sea_water", "eastward_atmosphere_dry_static_energy_transport_across_unit_distance", "eastward_atmosphere_water_transport_across_unit_distance", "eastward_atmosphere_water_vapor_transport_across_unit_distance", "eastward_derivative_of_eastward_wind", "eastward_derivative_of_northward_sea_ice_velocity", "eastward_derivative_of_northward_wind", "eastward_derivative_of_wind_from_direction", "eastward_flood_water_velocity", "eastward_friction_velocity_in_air", "eastward_land_ice_velocity", "eastward_mass_flux_of_air", "eastward_momentum_flux_correction", "eastward_sea_ice_displacement", "eastward_sea_ice_velocity", "eastward_sea_water_velocity", "eastward_sea_water_velocity_assuming_no_tide", "eastward_sea_water_velocity_at_sea_floor", "eastward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "eastward_sea_water_velocity_due_to_tides", "eastward_transformed_eulerian_mean_air_velocity", "eastward_water_vapor_flux_in_air", "eastward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "eastward_wind", "eastward_wind_shear", "effective_radius_of_cloud_condensed_water_particles_at_cloud_top", "effective_radius_of_cloud_liquid_water_particles", "effective_radius_of_cloud_liquid_water_particles_at_liquid_water_cloud_top", "effective_radius_of_convective_cloud_ice_particles", "effective_radius_of_convective_cloud_liquid_water_particles", "effective_radius_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "effective_radius_of_convective_cloud_rain_particles", "effective_radius_of_convective_cloud_snow_particles", "effective_radius_of_stratiform_cloud_graupel_particles", "effective_radius_of_stratiform_cloud_ice_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "effective_radius_of_stratiform_cloud_rain_particles", "effective_radius_of_stratiform_cloud_snow_particles", "electrical_mobility_diameter_of_ambient_aerosol_particles", "enrichment_of_14C_in_carbon_dioxide_in_air_expressed_as_uppercase_delta_14C", "enthalpy_content_of_atmosphere_layer", "equilibrium_line_altitude", "equivalent_pressure_of_atmosphere_ozone_content", "equivalent_reflectivity_factor", "equivalent_thickness_at_stp_of_atmosphere_ozone_content", "ertel_potential_vorticity", "fast_soil_pool_mass_content_of_carbon", "final_air_pressure_of_lifted_parcel", "fire_area", "fire_radiative_power", "fire_temperature", "flat_line_test_quality_flag", "floating_ice_shelf_area", "floating_ice_shelf_area_fraction", "floating_ice_thickness", "flood_water_duration_above_threshold", "flood_water_speed", "flood_water_thickness", "fog_area_fraction", "forecast_period", "forecast_reference_time", "fractional_saturation_of_oxygen_in_sea_water", "fraction_of_surface_downwelling_photosynthetic_radiative_flux_absorbed_by_vegetation", "fraction_of_time_with_sea_ice_area_fraction_above_threshold", "freezing_level_altitude", "freezing_temperature_of_sea_water", "frequency_of_lightning_flashes_per_unit_area", "frozen_water_content_of_soil_layer", "fugacity_of_carbon_dioxide_in_sea_water", "gap_test_quality_flag", "geoid_height_above_reference_ellipsoid", "geopotential", "geopotential_height", "geopotential_height_anomaly", "geopotential_height_at_cloud_top", "geopotential_height_at_volcanic_ash_cloud_top", "geostrophic_eastward_sea_water_velocity", "geostrophic_eastward_wind", "geostrophic_northward_sea_water_velocity", "geostrophic_northward_wind", "global_average_sea_level_change", "global_average_steric_sea_level_change", "global_average_thermosteric_sea_level_change", "graupel_and_hail_fall_amount", "graupel_and_hail_fall_flux", "graupel_fall_amount", "graupel_fall_flux", "grid_latitude", "grid_longitude", "gross_primary_productivity_of_biomass_expressed_as_13C", "gross_primary_productivity_of_biomass_expressed_as_14C", "gross_primary_productivity_of_biomass_expressed_as_carbon", "gross_range_test_quality_flag", "gross_rate_of_decrease_in_area_fraction", "gross_rate_of_increase_in_area_fraction", "grounded_ice_sheet_area", "grounded_ice_sheet_area_fraction", "ground_level_altitude", "growth_limitation_of_calcareous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_diatoms_due_to_solar_irradiance", "growth_limitation_of_diazotrophic_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_miscellaneous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_picophytoplankton_due_to_solar_irradiance", "hail_fall_amount", "hail_fall_flux", "halosteric_change_in_mean_sea_level", "halosteric_change_in_sea_surface_height", "harmonic_period", "heat_flux_correction", "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", "heat_flux_into_sea_water_due_to_newtonian_relaxation", "heat_flux_into_sea_water_due_to_sea_ice_thermodynamics", "heat_flux_into_sea_water_due_to_snow_thermodynamics", "heat_index_of_air_temperature", "height", "height_above_geopotential_datum", "height_above_geopotential_datum_at_top_of_atmosphere_model", "height_above_mean_sea_level", "height_above_reference_ellipsoid", "height_above_sea_floor", "height_at_cloud_top", "height_at_effective_cloud_top_defined_by_infrared_radiation", "high_type_cloud_area_fraction", "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid", "histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid", "horizontal_atmosphere_dry_energy_transport", "horizontal_dry_energy_transport_in_atmosphere_layer", "humidity_mixing_ratio", "ice_cloud_area_fraction", "ice_cloud_area_fraction_in_atmosphere_layer", "ice_volume_in_frozen_ground_in_excess_of_pore_volume_in_unfrozen_ground_expressed_as_fraction_of_frozen_ground_volume", "incoming_water_volume_transport_along_river_channel", "indicative_error_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "institution", "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_salinity_and_sea_water_density", "integral_wrt_depth_of_sea_water_practical_salinity", "integral_wrt_depth_of_sea_water_temperature", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "integral_wrt_height_of_product_of_eastward_wind_and_specific_humidity", "integral_wrt_height_of_product_of_northward_wind_and_specific_humidity", "integral_wrt_time_of_air_temperature_deficit", "integral_wrt_time_of_air_temperature_excess", "integral_wrt_time_of_mole_stomatal_uptake_of_ozone", "integral_wrt_time_of_radioactivity_concentration_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_104Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_110mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_11C_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_136Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_139Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_13N_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_145Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_150Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_153Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_154Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_157Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_158Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_15O_in_air", "integral_wrt_time_of_radioactivity_concentration_of_160Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_161Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162mTb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_163Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_165Dy_in_air", "integral_wrt_time_of_radioactivity_concentration_of_18F_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Hg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207mPb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_208Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_220Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_224Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234mPa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m1Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m2Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244mAm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_246Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_247Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_248Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_24Na_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_251Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_252Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254mEs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_255Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_3H_in_air", "integral_wrt_time_of_radioactivity_concentration_of_41Ar_in_air", "integral_wrt_time_of_radioactivity_concentration_of_54Mn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_58Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_60Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Zn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_73Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_75Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77mGe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_79Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86mRb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_96Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_98Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Tc_in_air", "integral_wrt_time_of_surface_downward_eastward_stress", "integral_wrt_time_of_surface_downward_latent_heat_flux", "integral_wrt_time_of_surface_downward_northward_stress", "integral_wrt_time_of_surface_downward_sensible_heat_flux", "integral_wrt_time_of_surface_downwelling_longwave_flux_in_air", "integral_wrt_time_of_surface_downwelling_shortwave_flux_in_air", "integral_wrt_time_of_surface_net_downward_longwave_flux", "integral_wrt_time_of_surface_net_downward_shortwave_flux", "integral_wrt_time_of_toa_net_downward_shortwave_flux", "integral_wrt_time_of_toa_outgoing_longwave_flux", "iron_growth_limitation_of_calcareous_phytoplankton", "iron_growth_limitation_of_diatoms", "iron_growth_limitation_of_diazotrophic_phytoplankton", "iron_growth_limitation_of_miscellaneous_phytoplankton", "iron_growth_limitation_of_picophytoplankton", "isccp_cloud_area_fraction", "isotope_ratio_of_17O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotope_ratio_of_18O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotropic_longwave_radiance_in_air", "isotropic_radiance_per_unit_wavelength_in_air", "isotropic_shortwave_radiance_in_air", "kinetic_energy_content_of_atmosphere_layer", "kinetic_energy_dissipation_in_atmosphere_boundary_layer", "lagrangian_tendency_of_air_pressure", "lagrangian_tendency_of_atmosphere_sigma_coordinate", "land_area_fraction", "land_binary_mask", "land_cover_lccs", "land_ice_area_fraction", "land_ice_basal_drag", "land_ice_basal_melt_rate", "land_ice_basal_specific_mass_balance_flux", "land_ice_basal_temperature", "land_ice_basal_upward_velocity", "land_ice_basal_x_velocity", "land_ice_basal_y_velocity", "land_ice_calving_rate", "land_ice_lwe_basal_melt_rate", "land_ice_lwe_calving_rate", "land_ice_lwe_surface_specific_mass_balance_rate", "land_ice_mass", "land_ice_mass_not_displacing_sea_water", "land_ice_runoff_flux", "land_ice_sigma_coordinate", "land_ice_specific_mass_flux_due_to_calving", "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", "land_ice_surface_melt_flux", "land_ice_surface_specific_mass_balance_flux", "land_ice_surface_specific_mass_balance_rate", "land_ice_surface_upward_velocity", "land_ice_surface_x_velocity", "land_ice_surface_y_velocity", "land_ice_temperature", "land_ice_thickness", "land_ice_vertical_mean_x_velocity", "land_ice_vertical_mean_y_velocity", "land_ice_x_velocity", "land_ice_y_velocity", "land_surface_liquid_water_amount", "land_water_amount", "latitude", "leaf_area_index", "leaf_mass_content_of_carbon", "leaf_mass_content_of_nitrogen", "lightning_potential_index", "lightning_radiant_energy", "liquid_water_cloud_area_fraction", "liquid_water_cloud_area_fraction_in_atmosphere_layer", "liquid_water_content_of_permafrost_layer", "liquid_water_content_of_soil_layer", "liquid_water_content_of_surface_snow", "liquid_water_mass_flux_into_soil_due_to_surface_snow_melt", "litter_mass_content_of_13C", "litter_mass_content_of_14C", "litter_mass_content_of_carbon", "litter_mass_content_of_nitrogen", "location_test_quality_flag", "log10_size_interval_based_number_size_distribution_of_cloud_condensation_nuclei_at_stp_in_air", "longitude", "low_type_cloud_area_fraction", "lwe_convective_precipitation_rate", "lwe_convective_snowfall_rate", "lwe_precipitation_rate", "lwe_snowfall_rate", "lwe_stratiform_precipitation_rate", "lwe_stratiform_snowfall_rate", "lwe_thickness_of_atmosphere_mass_content_of_water_vapor", "lwe_thickness_of_canopy_water_amount", "lwe_thickness_of_convective_precipitation_amount", "lwe_thickness_of_convective_snowfall_amount", "lwe_thickness_of_frozen_water_content_of_soil_layer", "lwe_thickness_of_moisture_content_of_soil_layer", "lwe_thickness_of_precipitation_amount", "lwe_thickness_of_snowfall_amount", "lwe_thickness_of_soil_moisture_content", "lwe_thickness_of_stratiform_precipitation_amount", "lwe_thickness_of_stratiform_snowfall_amount", "lwe_thickness_of_surface_snow_amount", "lwe_thickness_of_water_evaporation_amount", "lwe_water_evaporation_rate", "magnitude_of_air_velocity_relative_to_sea_water", "magnitude_of_derivative_of_position_wrt_model_level_number", "magnitude_of_derivative_of_position_wrt_x_coordinate_index", "magnitude_of_derivative_of_position_wrt_y_coordinate_index", "magnitude_of_heat_flux_in_sea_water_due_to_advection", "magnitude_of_sea_ice_displacement", "magnitude_of_surface_downward_stress", "mass_concentration_of_19_butanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_19_hexanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_acetic_acid_in_air", "mass_concentration_of_aceto_nitrile_in_air", "mass_concentration_of_adenosine_triphosphate_in_sea_water", "mass_concentration_of_alkanes_in_air", "mass_concentration_of_alkenes_in_air", "mass_concentration_of_alpha_carotene_in_sea_water", "mass_concentration_of_alpha_hexachlorocyclohexane_in_air", "mass_concentration_of_alpha_pinene_in_air", "mass_concentration_of_ammonia_in_air", "mass_concentration_of_ammonium_dry_aerosol_particles_in_air", "mass_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_aromatic_compounds_in_air", "mass_concentration_of_atomic_bromine_in_air", "mass_concentration_of_atomic_chlorine_in_air", "mass_concentration_of_atomic_nitrogen_in_air", "mass_concentration_of_benzene_in_air", "mass_concentration_of_beta_carotene_in_sea_water", "mass_concentration_of_beta_pinene_in_air", "mass_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_biomass_burning_dry_aerosol_particles_in_air", "mass_concentration_of_bromine_chloride_in_air", "mass_concentration_of_bromine_monoxide_in_air", "mass_concentration_of_bromine_nitrate_in_air", "mass_concentration_of_brox_expressed_as_bromine_in_air", "mass_concentration_of_butane_in_air", "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_carbon_dioxide_in_air", "mass_concentration_of_carbon_monoxide_in_air", "mass_concentration_of_carbon_tetrachloride_in_air", "mass_concentration_of_carotene_in_sea_water", "mass_concentration_of_cfc113a_in_air", "mass_concentration_of_cfc113_in_air", "mass_concentration_of_cfc114_in_air", "mass_concentration_of_cfc115_in_air", "mass_concentration_of_cfc11_in_air", "mass_concentration_of_cfc12_in_air", "mass_concentration_of_chlorine_dioxide_in_air", "mass_concentration_of_chlorine_monoxide_in_air", "mass_concentration_of_chlorine_nitrate_in_air", "mass_concentration_of_chlorophyll_a_in_sea_water", "mass_concentration_of_chlorophyll_b_in_sea_water", "mass_concentration_of_chlorophyll_c1_and_chlorophyll_c2_in_sea_water", "mass_concentration_of_chlorophyll_c3_in_sea_water", "mass_concentration_of_chlorophyll_c_in_sea_water", "mass_concentration_of_chlorophyllide_a_in_sea_water", "mass_concentration_of_chlorophyll_in_sea_water", "mass_concentration_of_cloud_liquid_water_in_air", "mass_concentration_of_clox_expressed_as_chlorine_in_air", "mass_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "mass_concentration_of_condensed_water_in_soil", "mass_concentration_of_diadinoxanthin_in_sea_water", "mass_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_dichlorine_peroxide_in_air", "mass_concentration_of_dimethyl_sulfide_in_air", "mass_concentration_of_dinitrogen_pentoxide_in_air", "mass_concentration_of_divinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_drizzle_in_air", "mass_concentration_of_dust_dry_aerosol_particles_in_air", "mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_concentration_of_ethane_in_air", "mass_concentration_of_ethanol_in_air", "mass_concentration_of_ethene_in_air", "mass_concentration_of_ethyne_in_air", "mass_concentration_of_flagellates_expressed_as_carbon_in_sea_water", "mass_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_formaldehyde_in_air", "mass_concentration_of_formic_acid_in_air", "mass_concentration_of_fucoxanthin_in_sea_water", "mass_concentration_of_gaseous_divalent_mercury_in_air", "mass_concentration_of_gaseous_elemental_mercury_in_air", "mass_concentration_of_halon1202_in_air", "mass_concentration_of_halon1211_in_air", "mass_concentration_of_halon1301_in_air", "mass_concentration_of_halon2402_in_air", "mass_concentration_of_hcc140a_in_air", "mass_concentration_of_hcfc141b_in_air", "mass_concentration_of_hcfc142b_in_air", "mass_concentration_of_hcfc22_in_air", "mass_concentration_of_hexachlorobiphenyl_in_air", "mass_concentration_of_hox_expressed_as_hydrogen_in_air", "mass_concentration_of_hydrogen_bromide_in_air", "mass_concentration_of_hydrogen_chloride_in_air", "mass_concentration_of_hydrogen_cyanide_in_air", "mass_concentration_of_hydrogen_peroxide_in_air", "mass_concentration_of_hydroperoxyl_radical_in_air", "mass_concentration_of_hydroxyl_radical_in_air", "mass_concentration_of_hypobromous_acid_in_air", "mass_concentration_of_hypochlorous_acid_in_air", "mass_concentration_of_inorganic_bromine_in_air", "mass_concentration_of_inorganic_chlorine_in_air", "mass_concentration_of_inorganic_nitrogen_in_sea_water", "mass_concentration_of_isoprene_in_air", "mass_concentration_of_limonene_in_air", "mass_concentration_of_liquid_water_in_air", "mass_concentration_of_lutein_in_sea_water", "mass_concentration_of_mercury_dry_aerosol_particles_in_air", "mass_concentration_of_methane_in_air", "mass_concentration_of_methanol_in_air", "mass_concentration_of_methyl_bromide_in_air", "mass_concentration_of_methyl_chloride_in_air", "mass_concentration_of_methyl_hydroperoxide_in_air", "mass_concentration_of_methyl_peroxy_radical_in_air", "mass_concentration_of_microphytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_molecular_hydrogen_in_air", "mass_concentration_of_monovinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_nanophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_nitrate_dry_aerosol_particles_in_air", "mass_concentration_of_nitrate_radical_in_air", "mass_concentration_of_nitric_acid_in_air", "mass_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_concentration_of_nitrogen_dioxide_in_air", "mass_concentration_of_nitrogen_monoxide_in_air", "mass_concentration_of_nitrous_acid_in_air", "mass_concentration_of_nitrous_oxide_in_air", "mass_concentration_of_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_nox_expressed_as_nitrogen_in_air", "mass_concentration_of_noy_expressed_as_nitrogen_in_air", "mass_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mass_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_oxygenated_hydrocarbons_in_air", "mass_concentration_of_oxygen_in_sea_water", "mass_concentration_of_ozone_in_air", "mass_concentration_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_peridinin_in_sea_water", "mass_concentration_of_peroxyacetyl_nitrate_in_air", "mass_concentration_of_peroxynitric_acid_in_air", "mass_concentration_of_peroxy_radicals_in_air", "mass_concentration_of_petroleum_hydrocarbons_in_sea_water", "mass_concentration_of_phaeopigments_in_sea_water", "mass_concentration_of_phosphate_in_sea_water", "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_pm10_ambient_aerosol_particles_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_pm1_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_prasinoxanthin_in_sea_water", "mass_concentration_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_propane_in_air", "mass_concentration_of_propene_in_air", "mass_concentration_of_radon_in_air", "mass_concentration_of_rain_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_silicate_in_sea_water", "mass_concentration_of_sulfate_ambient_aerosol_particles_in_air", "mass_concentration_of_sulfate_dry_aerosol_particles_in_air", "mass_concentration_of_sulfur_dioxide_in_air", "mass_concentration_of_suspended_matter_in_sea_water", "mass_concentration_of_terpenes_in_air", "mass_concentration_of_toluene_in_air", "mass_concentration_of_violaxanthin_in_sea_water", "mass_concentration_of_volcanic_ash_in_air", "mass_concentration_of_water_in_ambient_aerosol_particles_in_air", "mass_concentration_of_water_vapor_in_air", "mass_concentration_of_xylene_in_air", "mass_concentration_of_zeaxanthin_in_sea_water", "mass_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mass_content_of_13C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_14C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_cloud_condensed_water_in_atmosphere_layer", "mass_content_of_cloud_ice_in_atmosphere_layer", "mass_content_of_cloud_liquid_water_in_atmosphere_layer", "mass_content_of_nitrogen_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_water_in_atmosphere_layer", "mass_content_of_water_in_soil", "mass_content_of_water_in_soil_layer", "mass_content_of_water_in_soil_layer_defined_by_root_depth", "mass_content_of_water_vapor_containing_17O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_18O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_single_2H_in_atmosphere_layer", "mass_content_of_water_vapor_in_atmosphere_layer", "mass_flux_of_carbon_into_forestry_and_agricultural_products_due_to_crop_harvesting", "mass_flux_of_carbon_into_litter_from_vegetation", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence", "mass_flux_of_carbon_into_sea_water_from_rivers", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_senescence", "mass_flux_of_carbon_out_of_soil_due_to_leaching_and_runoff", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_into_sea_from_rivers", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_litter_and_soil_due_to_immobilisation_and_remineralization", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil_due_to_leaching_and_runoff", "mass_fraction_of_acetic_acid_in_air", "mass_fraction_of_aceto_nitrile_in_air", "mass_fraction_of_alkanes_in_air", "mass_fraction_of_alkenes_in_air", "mass_fraction_of_alpha_hexachlorocyclohexane_in_air", "mass_fraction_of_alpha_pinene_in_air", "mass_fraction_of_ammonia_in_air", "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_aromatic_compounds_in_air", "mass_fraction_of_atomic_bromine_in_air", "mass_fraction_of_atomic_chlorine_in_air", "mass_fraction_of_atomic_nitrogen_in_air", "mass_fraction_of_benzene_in_air", "mass_fraction_of_beta_pinene_in_air", "mass_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_bromine_chloride_in_air", "mass_fraction_of_bromine_monoxide_in_air", "mass_fraction_of_bromine_nitrate_in_air", "mass_fraction_of_brox_expressed_as_bromine_in_air", "mass_fraction_of_butane_in_air", "mass_fraction_of_carbon_dioxide_in_air", "mass_fraction_of_carbon_dioxide_tracer_in_air", "mass_fraction_of_carbon_monoxide_in_air", "mass_fraction_of_carbon_tetrachloride_in_air", "mass_fraction_of_cfc113a_in_air", "mass_fraction_of_cfc113_in_air", "mass_fraction_of_cfc114_in_air", "mass_fraction_of_cfc115_in_air", "mass_fraction_of_cfc11_in_air", "mass_fraction_of_cfc12_in_air", "mass_fraction_of_chlorine_dioxide_in_air", "mass_fraction_of_chlorine_monoxide_in_air", "mass_fraction_of_chlorine_nitrate_in_air", "mass_fraction_of_chlorophyll_a_in_sea_water", "mass_fraction_of_clay_in_soil", "mass_fraction_of_cloud_condensed_water_in_air", "mass_fraction_of_cloud_ice_in_air", "mass_fraction_of_cloud_liquid_water_in_air", "mass_fraction_of_clox_expressed_as_chlorine_in_air", "mass_fraction_of_convective_cloud_condensed_water_in_air", "mass_fraction_of_convective_cloud_ice_in_air", "mass_fraction_of_convective_cloud_liquid_water_in_air", "mass_fraction_of_dichlorine_peroxide_in_air", "mass_fraction_of_dimethyl_sulfide_in_air", "mass_fraction_of_dinitrogen_pentoxide_in_air", "mass_fraction_of_dust_dry_aerosol_particles_in_air", "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_ethane_in_air", "mass_fraction_of_ethanol_in_air", "mass_fraction_of_ethene_in_air", "mass_fraction_of_ethyne_in_air", "mass_fraction_of_formaldehyde_in_air", "mass_fraction_of_formic_acid_in_air", "mass_fraction_of_frozen_water_in_soil_moisture", "mass_fraction_of_gaseous_divalent_mercury_in_air", "mass_fraction_of_gaseous_elemental_mercury_in_air", "mass_fraction_of_graupel_and_hail_in_air", "mass_fraction_of_graupel_in_air", "mass_fraction_of_gravel_in_soil", "mass_fraction_of_hail_in_air", "mass_fraction_of_halon1202_in_air", "mass_fraction_of_halon1211_in_air", "mass_fraction_of_halon1301_in_air", "mass_fraction_of_halon2402_in_air", "mass_fraction_of_hcc140a_in_air", "mass_fraction_of_hcfc141b_in_air", "mass_fraction_of_hcfc142b_in_air", "mass_fraction_of_hcfc22_in_air", "mass_fraction_of_hexachlorobiphenyl_in_air", "mass_fraction_of_hox_expressed_as_hydrogen_in_air", "mass_fraction_of_hydrogen_bromide_in_air", "mass_fraction_of_hydrogen_chloride_in_air", "mass_fraction_of_hydrogen_cyanide_in_air", "mass_fraction_of_hydrogen_peroxide_in_air", "mass_fraction_of_hydroperoxyl_radical_in_air", "mass_fraction_of_hydroxyl_radical_in_air", "mass_fraction_of_hypobromous_acid_in_air", "mass_fraction_of_hypochlorous_acid_in_air", "mass_fraction_of_inorganic_bromine_in_air", "mass_fraction_of_inorganic_chlorine_in_air", "mass_fraction_of_isoprene_in_air", "mass_fraction_of_limonene_in_air", "mass_fraction_of_liquid_precipitation_in_air", "mass_fraction_of_mercury_dry_aerosol_particles_in_air", "mass_fraction_of_methane_in_air", "mass_fraction_of_methanesulfonic_acid_dry_aerosol_particles_in_air", "mass_fraction_of_methanol_in_air", "mass_fraction_of_methyl_bromide_in_air", "mass_fraction_of_methyl_chloride_in_air", "mass_fraction_of_methyl_hydroperoxide_in_air", "mass_fraction_of_methyl_peroxy_radical_in_air", "mass_fraction_of_molecular_hydrogen_in_air", "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_nitrate_radical_in_air", "mass_fraction_of_nitric_acid_in_air", "mass_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_fraction_of_nitrogen_dioxide_in_air", "mass_fraction_of_nitrogen_monoxide_in_air", "mass_fraction_of_nitrous_acid_in_air", "mass_fraction_of_nitrous_oxide_in_air", "mass_fraction_of_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_nox_expressed_as_nitrogen_in_air", "mass_fraction_of_noy_expressed_as_nitrogen_in_air", "mass_fraction_of_organic_matter_in_soil", "mass_fraction_of_oxygenated_hydrocarbons_in_air", "mass_fraction_of_ozone_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_peroxyacetyl_nitrate_in_air", "mass_fraction_of_peroxynitric_acid_in_air", "mass_fraction_of_peroxy_radicals_in_air", "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_pm10_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_pm1_ambient_aerosol_particles_in_air", "mass_fraction_of_pm1_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_precipitation_in_air", "mass_fraction_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_propane_in_air", "mass_fraction_of_propene_in_air", "mass_fraction_of_radon_in_air", "mass_fraction_of_rainfall_falling_onto_surface_snow", "mass_fraction_of_sand_in_soil", "mass_fraction_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_shallow_convective_cloud_liquid_water_in_air", "mass_fraction_of_silt_in_soil", "mass_fraction_of_snow_in_air", "mass_fraction_of_solid_precipitation_falling_onto_surface_snow", "mass_fraction_of_stratiform_cloud_ice_in_air", "mass_fraction_of_stratiform_cloud_liquid_water_in_air", "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_sulfur_dioxide_in_air", "mass_fraction_of_sulfuric_acid_in_air", "mass_fraction_of_terpenes_in_air", "mass_fraction_of_toluene_in_air", "mass_fraction_of_unfrozen_water_in_soil_moisture", "mass_fraction_of_water_in_air", "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_xylene_in_air", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_strain_rate", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_stress", "medium_soil_pool_mass_content_of_carbon", "medium_type_cloud_area_fraction", "minimum_depth_of_aragonite_undersaturation_in_sea_water", "minimum_depth_of_calcite_undersaturation_in_sea_water", "minus_one_times_surface_upwelling_longwave_flux_in_air", "minus_one_times_surface_upwelling_shortwave_flux_in_air", "minus_one_times_toa_outgoing_shortwave_flux", "minus_one_times_water_flux_into_sea_water_from_rivers", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "minus_tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "minus_tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "miscellaneous_living_matter_mass_content_of_carbon", "miscellaneous_living_matter_mass_content_of_nitrogen", "model_level_number", "model_level_number_at_base_of_ocean_mixed_layer_defined_by_sigma_theta", "model_level_number_at_convective_cloud_base", "model_level_number_at_convective_cloud_top", "model_level_number_at_sea_floor", "model_level_number_at_top_of_atmosphere_boundary_layer", "moisture_content_of_soil_layer_at_field_capacity", "mole_concentration_of_acetic_acid_in_air", "mole_concentration_of_aceto_nitrile_in_air", "mole_concentration_of_adenosine_triphosphate_in_sea_water", "mole_concentration_of_alpha_hexachlorocyclohexane_in_air", "mole_concentration_of_alpha_pinene_in_air", "mole_concentration_of_ammonia_in_air", "mole_concentration_of_ammonium_in_sea_water", "mole_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_atomic_bromine_in_air", "mole_concentration_of_atomic_chlorine_in_air", "mole_concentration_of_atomic_nitrogen_in_air", "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", "mole_concentration_of_benzene_in_air", "mole_concentration_of_beta_pinene_in_air", "mole_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mole_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_bromine_chloride_in_air", "mole_concentration_of_bromine_monoxide_in_air", "mole_concentration_of_bromine_nitrate_in_air", "mole_concentration_of_brox_expressed_as_bromine_in_air", "mole_concentration_of_butane_in_air", "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_carbonate_abiotic_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_calcite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_natural_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbon_dioxide_in_air", "mole_concentration_of_carbon_monoxide_in_air", "mole_concentration_of_carbon_tetrachloride_in_air", "mole_concentration_of_cfc113a_in_air", "mole_concentration_of_cfc113_in_air", "mole_concentration_of_cfc114_in_air", "mole_concentration_of_cfc115_in_air", "mole_concentration_of_cfc11_in_air", "mole_concentration_of_cfc11_in_sea_water", "mole_concentration_of_cfc12_in_air", "mole_concentration_of_cfc12_in_sea_water", "mole_concentration_of_chlorine_dioxide_in_air", "mole_concentration_of_chlorine_monoxide_in_air", "mole_concentration_of_chlorine_nitrate_in_air", "mole_concentration_of_clox_expressed_as_chlorine_in_air", "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_dichlorine_peroxide_in_air", "mole_concentration_of_dimethyl_sulfide_in_air", "mole_concentration_of_dimethyl_sulfide_in_sea_water", "mole_concentration_of_dinitrogen_pentoxide_in_air", "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_abiotic_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_natural_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", "mole_concentration_of_dissolved_iron_in_sea_water", "mole_concentration_of_dissolved_molecular_nitrogen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile", "mole_concentration_of_dissolved_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_carbon_in_sea_water", "mole_concentration_of_dissolved_organic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_phosphorus_in_sea_water", "mole_concentration_of_ethane_in_air", "mole_concentration_of_ethanol_in_air", "mole_concentration_of_ethene_in_air", "mole_concentration_of_ethyne_in_air", "mole_concentration_of_formaldehyde_in_air", "mole_concentration_of_formic_acid_in_air", "mole_concentration_of_gaseous_divalent_mercury_in_air", "mole_concentration_of_gaseous_elemental_mercury_in_air", "mole_concentration_of_halon1202_in_air", "mole_concentration_of_halon1211_in_air", "mole_concentration_of_halon1301_in_air", "mole_concentration_of_halon2402_in_air", "mole_concentration_of_hcc140a_in_air", "mole_concentration_of_hcfc141b_in_air", "mole_concentration_of_hcfc142b_in_air", "mole_concentration_of_hcfc22_in_air", "mole_concentration_of_hexachlorobiphenyl_in_air", "mole_concentration_of_hox_expressed_as_hydrogen_in_air", "mole_concentration_of_hydrogen_bromide_in_air", "mole_concentration_of_hydrogen_chloride_in_air", "mole_concentration_of_hydrogen_cyanide_in_air", "mole_concentration_of_hydrogen_peroxide_in_air", "mole_concentration_of_hydrogen_sulfide_in_sea_water", "mole_concentration_of_hydroperoxyl_radical_in_air", "mole_concentration_of_hydroxyl_radical_in_air", "mole_concentration_of_hypobromous_acid_in_air", "mole_concentration_of_hypochlorous_acid_in_air", "mole_concentration_of_inorganic_bromine_in_air", "mole_concentration_of_inorganic_chlorine_in_air", "mole_concentration_of_isoprene_in_air", "mole_concentration_of_limonene_in_air", "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_methane_in_air", "mole_concentration_of_methanol_in_air", "mole_concentration_of_methyl_bromide_in_air", "mole_concentration_of_methyl_chloride_in_air", "mole_concentration_of_methyl_hydroperoxide_in_air", "mole_concentration_of_methyl_peroxy_radical_in_air", "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_molecular_hydrogen_in_air", "mole_concentration_of_nitrate_and_nitrite_in_sea_water", "mole_concentration_of_nitrate_in_sea_water", "mole_concentration_of_nitrate_radical_in_air", "mole_concentration_of_nitric_acid_in_air", "mole_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_concentration_of_nitrite_in_sea_water", "mole_concentration_of_nitrogen_dioxide_in_air", "mole_concentration_of_nitrogen_monoxide_in_air", "mole_concentration_of_nitrous_acid_in_air", "mole_concentration_of_nitrous_oxide_in_air", "mole_concentration_of_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_nox_expressed_as_nitrogen_in_air", "mole_concentration_of_noy_expressed_as_nitrogen_in_air", "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water", "mole_concentration_of_ozone_in_air", "mole_concentration_of_particulate_matter_expressed_as_carbon_in_sea_water", "mole_concentration_of_particulate_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_nitrogen_in_sea_water", "mole_concentration_of_peroxyacetyl_nitrate_in_air", "mole_concentration_of_peroxynitric_acid_in_air", "mole_concentration_of_phosphate_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water", "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_propane_in_air", "mole_concentration_of_propene_in_air", "mole_concentration_of_radon_in_air", "mole_concentration_of_silicate_in_sea_water", "mole_concentration_of_sulfur_dioxide_in_air", "mole_concentration_of_sulfur_hexafluoride_in_sea_water", "mole_concentration_of_toluene_in_air", "mole_concentration_of_water_vapor_in_air", "mole_concentration_of_xylene_in_air", "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water", "mole_content_of_carbon_monoxide_in_atmosphere_layer", "mole_content_of_methane_in_atmosphere_layer", "mole_content_of_nitrogen_dioxide_in_atmosphere_layer", "mole_content_of_ozone_in_atmosphere_layer", "mole_fraction_of_acetaldehyde_in_air", "mole_fraction_of_acetic_acid_in_air", "mole_fraction_of_acetone_in_air", "mole_fraction_of_aceto_nitrile_in_air", "mole_fraction_of_aldehydes_in_air", "mole_fraction_of_alkanes_in_air", "mole_fraction_of_alkenes_in_air", "mole_fraction_of_alpha_hexachlorocyclohexane_in_air", "mole_fraction_of_alpha_pinene_in_air", "mole_fraction_of_ammonia_in_air", "mole_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_artificial_tracer_with_fixed_lifetime_in_air", "mole_fraction_of_atomic_bromine_in_air", "mole_fraction_of_atomic_chlorine_in_air", "mole_fraction_of_atomic_nitrogen_in_air", "mole_fraction_of_benzene_in_air", "mole_fraction_of_beta_pinene_in_air", "mole_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_bromine_chloride_in_air", "mole_fraction_of_bromine_monoxide_in_air", "mole_fraction_of_bromine_nitrate_in_air", "mole_fraction_of_brox_expressed_as_bromine_in_air", "mole_fraction_of_butane_in_air", "mole_fraction_of_carbon_dioxide_in_air", "mole_fraction_of_carbon_monoxide_in_air", "mole_fraction_of_carbon_tetrachloride_in_air", "mole_fraction_of_carbon_tetrafluoride_in_air", "mole_fraction_of_carbonyl_fluoride_in_air", "mole_fraction_of_carbonyl_sulfide_in_air", "mole_fraction_of_cfc113a_in_air", "mole_fraction_of_cfc113_in_air", "mole_fraction_of_cfc114_in_air", "mole_fraction_of_cfc115_in_air", "mole_fraction_of_cfc11_in_air", "mole_fraction_of_cfc12_in_air", "mole_fraction_of_chlorine_dioxide_in_air", "mole_fraction_of_chlorine_monoxide_in_air", "mole_fraction_of_chlorine_nitrate_in_air", "mole_fraction_of_chloroform_in_air", "mole_fraction_of_clox_expressed_as_chlorine_in_air", "mole_fraction_of_dichlorine_in_air", "mole_fraction_of_dichlorine_peroxide_in_air", "mole_fraction_of_dichloromethane_in_air", "mole_fraction_of_dimethyl_sulfide_in_air", "mole_fraction_of_dinitrogen_pentoxide_in_air", "mole_fraction_of_ethane_in_air", "mole_fraction_of_ethanol_in_air", "mole_fraction_of_ethene_in_air", "mole_fraction_of_ethyne_in_air", "mole_fraction_of_formaldehyde_in_air", "mole_fraction_of_formic_acid_in_air", "mole_fraction_of_gaseous_divalent_mercury_in_air", "mole_fraction_of_gaseous_elemental_mercury_in_air", "mole_fraction_of_glyoxal_in_air", "mole_fraction_of_halon1202_in_air", "mole_fraction_of_halon1211_in_air", "mole_fraction_of_halon1301_in_air", "mole_fraction_of_halon2402_in_air", "mole_fraction_of_hcc140a_in_air", "mole_fraction_of_hcfc124_in_air", "mole_fraction_of_hcfc141b_in_air", "mole_fraction_of_hcfc142b_in_air", "mole_fraction_of_hcfc22_in_air", "mole_fraction_of_hexachlorobiphenyl_in_air", "mole_fraction_of_hfc125_in_air", "mole_fraction_of_hfc134a_in_air", "mole_fraction_of_hfc143a_in_air", "mole_fraction_of_hfc152a_in_air", "mole_fraction_of_hfc227ea_in_air", "mole_fraction_of_hfc236fa_in_air", "mole_fraction_of_hfc23_in_air", "mole_fraction_of_hfc245fa_in_air", "mole_fraction_of_hfc32_in_air", "mole_fraction_of_hfc365mfc_in_air", "mole_fraction_of_hfc4310mee_in_air", "mole_fraction_of_hox_expressed_as_hydrogen_in_air", "mole_fraction_of_hydrogen_bromide_in_air", "mole_fraction_of_hydrogen_chloride_in_air", "mole_fraction_of_hydrogen_cyanide_in_air", "mole_fraction_of_hydrogen_peroxide_in_air", "mole_fraction_of_hydrogen_sulfide_in_air", "mole_fraction_of_hydroperoxyl_radical_in_air", "mole_fraction_of_hydroxyl_radical_in_air", "mole_fraction_of_hypobromous_acid_in_air", "mole_fraction_of_hypochlorous_acid_in_air", "mole_fraction_of_inorganic_bromine_in_air", "mole_fraction_of_inorganic_chlorine_in_air", "mole_fraction_of_isoprene_in_air", "mole_fraction_of_limonene_in_air", "mole_fraction_of_methane_in_air", "mole_fraction_of_methanol_in_air", "mole_fraction_of_methyl_bromide_in_air", "mole_fraction_of_methyl_chloride_in_air", "mole_fraction_of_methylglyoxal_in_air", "mole_fraction_of_methyl_hydroperoxide_in_air", "mole_fraction_of_methyl_peroxy_radical_in_air", "mole_fraction_of_molecular_hydrogen_in_air", "mole_fraction_of_nitrate_radical_in_air", "mole_fraction_of_nitric_acid_in_air", "mole_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_fraction_of_nitrogen_dioxide_in_air", "mole_fraction_of_nitrogen_monoxide_in_air", "mole_fraction_of_nitrogen_trifluoride_in_air", "mole_fraction_of_nitrous_acid_in_air", "mole_fraction_of_nitrous_oxide_in_air", "mole_fraction_of_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_nox_expressed_as_nitrogen_in_air", "mole_fraction_of_noy_expressed_as_nitrogen_in_air", "mole_fraction_of_organic_nitrates_in_air", "mole_fraction_of_ox_in_air", "mole_fraction_of_ozone_in_air", "mole_fraction_of_perchloroethene_in_air", "mole_fraction_of_peroxyacetyl_nitrate_in_air", "mole_fraction_of_peroxynitric_acid_in_air", "mole_fraction_of_pfc116_in_air", "mole_fraction_of_pfc218_in_air", "mole_fraction_of_pfc318_in_air", "mole_fraction_of_propane_in_air", "mole_fraction_of_propene_in_air", "mole_fraction_of_radon_in_air", "mole_fraction_of_sulfur_dioxide_in_air", "mole_fraction_of_sulfur_hexafluoride_in_air", "mole_fraction_of_sulfuryl_fluoride_in_air", "mole_fraction_of_toluene_in_air", "mole_fraction_of_water_vapor_in_air", "mole_fraction_of_xylene_in_air", "mole_ratio_of_nitrate_to_phosphate_in_sea_water", "moles_of_cfc11_per_unit_mass_in_sea_water", "moles_of_dissolved_inorganic_carbon_per_unit_mass_in_sea_water", "moles_of_nitrate_and_nitrite_per_unit_mass_in_sea_water", "moles_of_nitrate_per_unit_mass_in_sea_water", "moles_of_nitrite_per_unit_mass_in_sea_water", "moles_of_oxygen_per_unit_mass_in_sea_water", "moles_of_phosphate_per_unit_mass_in_sea_water", "moles_of_silicate_per_unit_mass_in_sea_water", "multi_variate_test_quality_flag", "neighbor_test_quality_flag", "net_downward_longwave_flux_in_air", "net_downward_longwave_flux_in_air_assuming_clear_sky", "net_downward_radiative_flux_at_top_of_atmosphere_model", "net_downward_shortwave_flux_at_sea_water_surface", "net_downward_shortwave_flux_in_air", "net_downward_shortwave_flux_in_air_assuming_clear_sky", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_calcareous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diatoms", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diazotrophic_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_miscellaneous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_picophytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_due_to_nitrate_utilization", "net_primary_production_of_biomass_expressed_as_carbon_per_unit_volume_in_sea_water", "net_primary_productivity_of_biomass_expressed_as_carbon", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_leaves", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_miscellaneous_living_matter", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_roots", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_wood", "net_rate_of_absorption_of_longwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_ocean_layer", "net_upward_longwave_flux_in_air", "net_upward_longwave_flux_in_air_assuming_clear_sky", "net_upward_shortwave_flux_in_air", "net_upward_shortwave_flux_in_air_assuming_clear_sky", "nitrogen_growth_limitation_of_calcareous_phytoplankton", "nitrogen_growth_limitation_of_diatoms", "nitrogen_growth_limitation_of_diazotrophic_phytoplankton", "nitrogen_growth_limitation_of_miscellaneous_phytoplankton", "nitrogen_growth_limitation_of_picophytoplankton", "nitrogen_mass_content_of_forestry_and_agricultural_products", "nitrogen_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "nitrogen_mass_flux_into_litter_from_vegetation", "nitrogen_mass_flux_into_soil_from_litter", "nitrogen_mass_flux_into_soil_from_vegetation_excluding_litter", "non_tidal_elevation_of_sea_surface_height", "normalized_difference_vegetation_index", "northward_air_velocity_relative_to_sea_water", "northward_atmosphere_dry_static_energy_transport_across_unit_distance", "northward_atmosphere_heat_transport", "northward_atmosphere_water_transport_across_unit_distance", "northward_atmosphere_water_vapor_transport_across_unit_distance", "northward_derivative_of_eastward_sea_ice_velocity", "northward_derivative_of_eastward_wind", "northward_derivative_of_northward_wind", "northward_derivative_of_wind_from_direction", "northward_eliassen_palm_flux_in_air", "northward_flood_water_velocity", "northward_friction_velocity_in_air", "northward_heat_flux_in_air_due_to_eddy_advection", "northward_land_ice_velocity", "northward_mass_flux_of_air", "northward_momentum_flux_correction", "northward_northward_derivative_of_geopotential", "northward_ocean_freshwater_transport", "northward_ocean_freshwater_transport_due_to_diffusion", "northward_ocean_freshwater_transport_due_to_gyre", "northward_ocean_freshwater_transport_due_to_overturning", "northward_ocean_freshwater_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport", "northward_ocean_heat_transport_due_to_diffusion", "northward_ocean_heat_transport_due_to_gyre", "northward_ocean_heat_transport_due_to_overturning", "northward_ocean_heat_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_diffusion", "northward_ocean_heat_transport_due_to_parameterized_submesoscale_eddy_advection", "northward_ocean_salt_transport", "northward_ocean_salt_transport_due_to_diffusion", "northward_ocean_salt_transport_due_to_gyre", "northward_ocean_salt_transport_due_to_overturning", "northward_ocean_salt_transport_due_to_parameterized_eddy_advection", "northward_sea_ice_displacement", "northward_sea_ice_velocity", "northward_sea_water_velocity", "northward_sea_water_velocity_assuming_no_tide", "northward_sea_water_velocity_at_sea_floor", "northward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "northward_sea_water_velocity_due_to_tides", "northward_transformed_eulerian_mean_air_velocity", "northward_upward_derivative_of_geopotential", "northward_water_vapor_flux_in_air", "northward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "northward_westward_derivative_of_geopotential", "northward_wind", "northward_wind_shear", "nudging_increment_in_mass_content_of_water_in_soil", "nudging_increment_in_snow_and_ice_amount_on_land", "number_concentration_of_aerosol_particles_at_stp_in_air", "number_concentration_of_ambient_aerosol_particles_in_air", "number_concentration_of_biological_taxon_in_sea_water", "number_concentration_of_cloud_condensation_nuclei_at_stp_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air_at_liquid_water_cloud_top", "number_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "number_concentration_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "number_concentration_of_ice_crystals_in_air", "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top", "number_concentration_of_nucleation_mode_ambient_aerosol_particles_in_air", "number_concentration_of_ozone_molecules_in_air", "number_concentration_of_pm10_aerosol_particles_in_air", "number_concentration_of_pm2p5_aerosol_particles_in_air", "number_concentration_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "number_of_days_with_air_temperature_above_threshold", "number_of_days_with_air_temperature_below_threshold", "number_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "number_of_days_with_surface_temperature_below_threshold", "number_of_days_with_wind_speed_above_threshold", "number_of_icebergs_per_unit_area", "number_of_missing_observations", "number_of_observations", "ocean_barotropic_mass_streamfunction", "ocean_barotropic_streamfunction", "ocean_double_sigma_coordinate", "ocean_heat_x_transport", "ocean_heat_x_transport_due_to_diffusion", "ocean_heat_x_transport_due_to_parameterized_eddy_advection", "ocean_heat_y_transport", "ocean_heat_y_transport_due_to_diffusion", "ocean_heat_y_transport_due_to_parameterized_eddy_advection", "ocean_isopycnal_layer_thickness_diffusivity", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_vertical_friction", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_xy_friction", "ocean_mass_content_of_dissolved_inorganic_carbon", "ocean_mass_content_of_dissolved_organic_carbon", "ocean_mass_content_of_particulate_organic_matter_expressed_as_carbon", "ocean_mass_x_transport", "ocean_mass_x_transport_due_to_advection", "ocean_mass_x_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_mass_y_transport", "ocean_mass_y_transport_due_to_advection", "ocean_mass_y_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "ocean_meridional_overturning_streamfunction", "ocean_mixed_layer_thickness", "ocean_mixed_layer_thickness_defined_by_mixing_scheme", "ocean_mixed_layer_thickness_defined_by_sigma_t", "ocean_mixed_layer_thickness_defined_by_sigma_theta", "ocean_mixed_layer_thickness_defined_by_temperature", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_deficit", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_threshold", "ocean_momentum_xy_biharmonic_diffusivity", "ocean_momentum_xy_laplacian_diffusivity", "ocean_montgomery_potential", "ocean_relative_vorticity", "ocean_rigid_lid_pressure", "ocean_rigid_lid_pressure_expressed_as_sea_surface_height_above_geoid", "ocean_salt_x_transport", "ocean_salt_y_transport", "ocean_s_coordinate", "ocean_s_coordinate_g1", "ocean_s_coordinate_g2", "ocean_sigma_coordinate", "ocean_sigma_z_coordinate", "ocean_tracer_biharmonic_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_epineutral_biharmonic_diffusivity", "ocean_tracer_epineutral_laplacian_diffusivity", "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_xy_biharmonic_diffusivity", "ocean_tracer_xy_laplacian_diffusivity", "ocean_vertical_diffusivity", "ocean_vertical_heat_diffusivity", "ocean_vertical_momentum_diffusivity", "ocean_vertical_momentum_diffusivity_due_to_background", "ocean_vertical_momentum_diffusivity_due_to_convection", "ocean_vertical_momentum_diffusivity_due_to_form_drag", "ocean_vertical_momentum_diffusivity_due_to_tides", "ocean_vertical_salt_diffusivity", "ocean_vertical_tracer_diffusivity", "ocean_vertical_tracer_diffusivity_due_to_background", "ocean_vertical_tracer_diffusivity_due_to_convection", "ocean_vertical_tracer_diffusivity_due_to_tides", "ocean_vertical_tracer_diffusivity_due_to_wind_mixing", "ocean_volume", "ocean_volume_fraction", "ocean_volume_transport_across_line", "ocean_volume_x_transport", "ocean_volume_y_transport", "ocean_y_overturning_mass_streamfunction", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "omnidirectional_photosynthetic_spherical_irradiance_in_sea_water", "omnidirectional_spherical_irradiance_per_unit_wavelength_in_sea_water", "optical_thickness_of_atmosphere_layer_due_to_ambient_aerosol_particles", "original_air_pressure_of_lifted_parcel", "outgoing_water_volume_transport_along_river_channel", "partial_pressure_of_carbon_dioxide_in_sea_water", "partial_pressure_of_methane_in_sea_water", "permafrost_active_layer_thickness", "permafrost_area_fraction", "permafrost_layer_thickness", "phase_of_global_average_sea_level_change", "photolysis_rate_of_molecular_oxygen", "photolysis_rate_of_nitrogen_dioxide", "photolysis_rate_of_ozone", "photolysis_rate_of_ozone_to_1D_oxygen_atom", "planetary_albedo", "platform_azimuth_angle", "platform_course", "platform_heave", "platform_heave_down", "platform_heave_rate", "platform_heave_rate_down", "platform_heave_rate_up", "platform_heave_up", "platform_id", "platform_name", "platform_orientation", "platform_pitch", "platform_pitch_fore_down", "platform_pitch_fore_up", "platform_pitch_rate", "platform_pitch_rate_fore_down", "platform_pitch_rate_fore_up", "platform_roll", "platform_roll_rate", "platform_roll_rate_starboard_down", "platform_roll_rate_starboard_up", "platform_roll_starboard_down", "platform_roll_starboard_up", "platform_speed_wrt_air", "platform_speed_wrt_ground", "platform_speed_wrt_sea_water", "platform_surge", "platform_surge_aft", "platform_surge_fore", "platform_surge_rate", "platform_surge_rate_aft", "platform_surge_rate_fore", "platform_sway", "platform_sway_port", "platform_sway_rate", "platform_sway_rate_port", "platform_sway_rate_starboard", "platform_sway_starboard", "platform_view_angle", "platform_yaw", "platform_yaw_fore_port", "platform_yaw_fore_starboard", "platform_yaw_rate", "platform_yaw_rate_fore_port", "platform_yaw_rate_fore_starboard", "platform_zenith_angle", "potential_energy_content_of_atmosphere_layer", "potential_vorticity_of_atmosphere_layer", "potential_vorticity_of_ocean_layer", "precipitation_amount", "precipitation_flux", "precipitation_flux_containing_17O", "precipitation_flux_containing_18O", "precipitation_flux_containing_single_2H", "precipitation_flux_onto_canopy", "predominant_precipitation_type_at_surface", "pressure_at_effective_cloud_top_defined_by_infrared_radiation", "probability_distribution_of_wind_from_direction_over_time", "product_of_air_temperature_and_specific_humidity", "product_of_eastward_sea_water_velocity_and_salinity", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_eastward_wind_and_air_temperature", "product_of_eastward_wind_and_geopotential_height", "product_of_eastward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_eastward_wind_and_northward_wind", "product_of_eastward_wind_and_specific_humidity", "product_of_eastward_wind_and_upward_air_velocity", "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", "product_of_lagrangian_tendency_of_air_pressure_and_geopotential_height", "product_of_lagrangian_tendency_of_air_pressure_and_specific_humidity", "product_of_northward_sea_water_velocity_and_salinity", "product_of_northward_sea_water_velocity_and_temperature", "product_of_northward_wind_and_air_temperature", "product_of_northward_wind_and_geopotential_height", "product_of_northward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_northward_wind_and_specific_humidity", "product_of_northward_wind_and_upward_air_velocity", "product_of_upward_air_velocity_and_air_temperature", "product_of_upward_air_velocity_and_specific_humidity", "projection_x_angular_coordinate", "projection_x_coordinate", "projection_y_angular_coordinate", "projection_y_coordinate", "proportion_of_acceptable_signal_returns_from_acoustic_instrument_in_sea_water", "quality_flag", "radial_sea_water_velocity_away_from_instrument", "radial_sea_water_velocity_toward_instrument", "radial_velocity_of_scatterers_away_from_instrument", "radial_velocity_of_scatterers_toward_instrument", "radiation_frequency", "radiation_wavelength", "radioactivity_concentration_in_air", "radioactivity_concentration_of_101Mo_in_air", "radioactivity_concentration_of_101Tc_in_air", "radioactivity_concentration_of_102Mo_in_air", "radioactivity_concentration_of_102mTc_in_air", "radioactivity_concentration_of_102Tc_in_air", "radioactivity_concentration_of_103mRh_in_air", "radioactivity_concentration_of_103Ru_in_air", "radioactivity_concentration_of_104Tc_in_air", "radioactivity_concentration_of_105mRh_in_air", "radioactivity_concentration_of_105Rh_in_air", "radioactivity_concentration_of_105Ru_in_air", "radioactivity_concentration_of_106mRh_in_air", "radioactivity_concentration_of_106Rh_in_air", "radioactivity_concentration_of_106Ru_in_air", "radioactivity_concentration_of_107mPd_in_air", "radioactivity_concentration_of_107Pd_in_air", "radioactivity_concentration_of_107Rh_in_air", "radioactivity_concentration_of_109mAg_in_air", "radioactivity_concentration_of_109Pd_in_air", "radioactivity_concentration_of_110mAg_in_air", "radioactivity_concentration_of_111Ag_in_air", "radioactivity_concentration_of_111mAg_in_air", "radioactivity_concentration_of_111mCd_in_air", "radioactivity_concentration_of_111mPd_in_air", "radioactivity_concentration_of_111Pd_in_air", "radioactivity_concentration_of_112Ag_in_air", "radioactivity_concentration_of_112Pd_in_air", "radioactivity_concentration_of_113Ag_in_air", "radioactivity_concentration_of_113Cd_in_air", "radioactivity_concentration_of_113mAg_in_air", "radioactivity_concentration_of_113mCd_in_air", "radioactivity_concentration_of_113mIn_in_air", "radioactivity_concentration_of_115Ag_in_air", "radioactivity_concentration_of_115Cd_in_air", "radioactivity_concentration_of_115In_in_air", "radioactivity_concentration_of_115mAg_in_air", "radioactivity_concentration_of_115mCd_in_air", "radioactivity_concentration_of_115mIn_in_air", "radioactivity_concentration_of_116In_in_air", "radioactivity_concentration_of_116mIn_in_air", "radioactivity_concentration_of_117Cd_in_air", "radioactivity_concentration_of_117In_in_air", "radioactivity_concentration_of_117mCd_in_air", "radioactivity_concentration_of_117mIn_in_air", "radioactivity_concentration_of_117mSn_in_air", "radioactivity_concentration_of_118Cd_in_air", "radioactivity_concentration_of_118In_in_air", "radioactivity_concentration_of_118mIn_in_air", "radioactivity_concentration_of_119In_in_air", "radioactivity_concentration_of_119mIn_in_air", "radioactivity_concentration_of_119mSn_in_air", "radioactivity_concentration_of_11C_in_air", "radioactivity_concentration_of_121mSn_in_air", "radioactivity_concentration_of_121Sn_in_air", "radioactivity_concentration_of_123mSn_in_air", "radioactivity_concentration_of_123Sn_in_air", "radioactivity_concentration_of_124mSb_in_air", "radioactivity_concentration_of_124Sb_in_air", "radioactivity_concentration_of_125mTe_in_air", "radioactivity_concentration_of_125Sb_in_air", "radioactivity_concentration_of_125Sn_in_air", "radioactivity_concentration_of_126mSb_in_air", "radioactivity_concentration_of_126Sb_in_air", "radioactivity_concentration_of_126Sn_in_air", "radioactivity_concentration_of_127mTe_in_air", "radioactivity_concentration_of_127Sb_in_air", "radioactivity_concentration_of_127Sn_in_air", "radioactivity_concentration_of_127Te_in_air", "radioactivity_concentration_of_128mSb_in_air", "radioactivity_concentration_of_128Sb_in_air", "radioactivity_concentration_of_128Sn_in_air", "radioactivity_concentration_of_129I_in_air", "radioactivity_concentration_of_129mTe_in_air", "radioactivity_concentration_of_129mXe_in_air", "radioactivity_concentration_of_129Sb_in_air", "radioactivity_concentration_of_129Te_in_air", "radioactivity_concentration_of_130I_in_air", "radioactivity_concentration_of_130mI_in_air", "radioactivity_concentration_of_130mSb_in_air", "radioactivity_concentration_of_130Sb_in_air", "radioactivity_concentration_of_130Sn_in_air", "radioactivity_concentration_of_131I_in_air", "radioactivity_concentration_of_131mTe_in_air", "radioactivity_concentration_of_131mXe_in_air", "radioactivity_concentration_of_131Sb_in_air", "radioactivity_concentration_of_131Te_in_air", "radioactivity_concentration_of_132I_in_air", "radioactivity_concentration_of_132Te_in_air", "radioactivity_concentration_of_133I_in_air", "radioactivity_concentration_of_133mI_in_air", "radioactivity_concentration_of_133mTe_in_air", "radioactivity_concentration_of_133mXe_in_air", "radioactivity_concentration_of_133Te_in_air", "radioactivity_concentration_of_133Xe_in_air", "radioactivity_concentration_of_134Cs_in_air", "radioactivity_concentration_of_134I_in_air", "radioactivity_concentration_of_134mCs_in_air", "radioactivity_concentration_of_134mI_in_air", "radioactivity_concentration_of_134mXe_in_air", "radioactivity_concentration_of_134Te_in_air", "radioactivity_concentration_of_135Cs_in_air", "radioactivity_concentration_of_135I_in_air", "radioactivity_concentration_of_135mBa_in_air", "radioactivity_concentration_of_135mCs_in_air", "radioactivity_concentration_of_135mXe_in_air", "radioactivity_concentration_of_135Xe_in_air", "radioactivity_concentration_of_136Cs_in_air", "radioactivity_concentration_of_137Cs_in_air", "radioactivity_concentration_of_137mBa_in_air", "radioactivity_concentration_of_137Xe_in_air", "radioactivity_concentration_of_138Cs_in_air", "radioactivity_concentration_of_138Xe_in_air", "radioactivity_concentration_of_139Ba_in_air", "radioactivity_concentration_of_13N_in_air", "radioactivity_concentration_of_140Ba_in_air", "radioactivity_concentration_of_140La_in_air", "radioactivity_concentration_of_141Ce_in_air", "radioactivity_concentration_of_141La_in_air", "radioactivity_concentration_of_142Ce_in_air", "radioactivity_concentration_of_142La_in_air", "radioactivity_concentration_of_142mPr_in_air", "radioactivity_concentration_of_142Pr_in_air", "radioactivity_concentration_of_143Ce_in_air", "radioactivity_concentration_of_143La_in_air", "radioactivity_concentration_of_143Pr_in_air", "radioactivity_concentration_of_144Ce_in_air", "radioactivity_concentration_of_144mPr_in_air", "radioactivity_concentration_of_144Nd_in_air", "radioactivity_concentration_of_144Pr_in_air", "radioactivity_concentration_of_145Pr_in_air", "radioactivity_concentration_of_146Ce_in_air", "radioactivity_concentration_of_146Pr_in_air", "radioactivity_concentration_of_147Nd_in_air", "radioactivity_concentration_of_147Pm_in_air", "radioactivity_concentration_of_147Pr_in_air", "radioactivity_concentration_of_147Sm_in_air", "radioactivity_concentration_of_148mPm_in_air", "radioactivity_concentration_of_148Pm_in_air", "radioactivity_concentration_of_148Sm_in_air", "radioactivity_concentration_of_149Nd_in_air", "radioactivity_concentration_of_149Pm_in_air", "radioactivity_concentration_of_149Sm_in_air", "radioactivity_concentration_of_150Pm_in_air", "radioactivity_concentration_of_151Nd_in_air", "radioactivity_concentration_of_151Pm_in_air", "radioactivity_concentration_of_151Sm_in_air", "radioactivity_concentration_of_152mPm_in_air", "radioactivity_concentration_of_152Nd_in_air", "radioactivity_concentration_of_152Pm_in_air", "radioactivity_concentration_of_153Sm_in_air", "radioactivity_concentration_of_154Eu_in_air", "radioactivity_concentration_of_155Eu_in_air", "radioactivity_concentration_of_155Sm_in_air", "radioactivity_concentration_of_156Eu_in_air", "radioactivity_concentration_of_156Sm_in_air", "radioactivity_concentration_of_157Eu_in_air", "radioactivity_concentration_of_158Eu_in_air", "radioactivity_concentration_of_159Eu_in_air", "radioactivity_concentration_of_159Gd_in_air", "radioactivity_concentration_of_15O_in_air", "radioactivity_concentration_of_160Tb_in_air", "radioactivity_concentration_of_161Tb_in_air", "radioactivity_concentration_of_162Gd_in_air", "radioactivity_concentration_of_162mTb_in_air", "radioactivity_concentration_of_162Tb_in_air", "radioactivity_concentration_of_163Tb_in_air", "radioactivity_concentration_of_165Dy_in_air", "radioactivity_concentration_of_18F_in_air", "radioactivity_concentration_of_206Hg_in_air", "radioactivity_concentration_of_206Tl_in_air", "radioactivity_concentration_of_207mPb_in_air", "radioactivity_concentration_of_207Tl_in_air", "radioactivity_concentration_of_208Tl_in_air", "radioactivity_concentration_of_209Bi_in_air", "radioactivity_concentration_of_209Pb_in_air", "radioactivity_concentration_of_209Tl_in_air", "radioactivity_concentration_of_210Bi_in_air", "radioactivity_concentration_of_210Pb_in_air", "radioactivity_concentration_of_210Po_in_air", "radioactivity_concentration_of_210Tl_in_air", "radioactivity_concentration_of_211Bi_in_air", "radioactivity_concentration_of_211Pb_in_air", "radioactivity_concentration_of_211Po_in_air", "radioactivity_concentration_of_212Bi_in_air", "radioactivity_concentration_of_212Pb_in_air", "radioactivity_concentration_of_212Po_in_air", "radioactivity_concentration_of_213Bi_in_air", "radioactivity_concentration_of_213Pb_in_air", "radioactivity_concentration_of_213Po_in_air", "radioactivity_concentration_of_214Bi_in_air", "radioactivity_concentration_of_214Pb_in_air", "radioactivity_concentration_of_214Po_in_air", "radioactivity_concentration_of_215At_in_air", "radioactivity_concentration_of_215Bi_in_air", "radioactivity_concentration_of_215Po_in_air", "radioactivity_concentration_of_216At_in_air", "radioactivity_concentration_of_216Po_in_air", "radioactivity_concentration_of_217At_in_air", "radioactivity_concentration_of_217Po_in_air", "radioactivity_concentration_of_218At_in_air", "radioactivity_concentration_of_218Po_in_air", "radioactivity_concentration_of_218Rn_in_air", "radioactivity_concentration_of_219At_in_air", "radioactivity_concentration_of_219Rn_in_air", "radioactivity_concentration_of_220Rn_in_air", "radioactivity_concentration_of_221Fr_in_air", "radioactivity_concentration_of_221Rn_in_air", "radioactivity_concentration_of_222Fr_in_air", "radioactivity_concentration_of_222Ra_in_air", "radioactivity_concentration_of_222Rn_in_air", "radioactivity_concentration_of_223Fr_in_air", "radioactivity_concentration_of_223Ra_in_air", "radioactivity_concentration_of_223Rn_in_air", "radioactivity_concentration_of_224Ra_in_air", "radioactivity_concentration_of_225Ac_in_air", "radioactivity_concentration_of_225Ra_in_air", "radioactivity_concentration_of_226Ac_in_air", "radioactivity_concentration_of_226Ra_in_air", "radioactivity_concentration_of_226Th_in_air", "radioactivity_concentration_of_227Ac_in_air", "radioactivity_concentration_of_227Ra_in_air", "radioactivity_concentration_of_227Th_in_air", "radioactivity_concentration_of_228Ac_in_air", "radioactivity_concentration_of_228Ra_in_air", "radioactivity_concentration_of_228Th_in_air", "radioactivity_concentration_of_229Ac_in_air", "radioactivity_concentration_of_229Ra_in_air", "radioactivity_concentration_of_229Th_in_air", "radioactivity_concentration_of_230Pa_in_air", "radioactivity_concentration_of_230Th_in_air", "radioactivity_concentration_of_230U_in_air", "radioactivity_concentration_of_231Pa_in_air", "radioactivity_concentration_of_231Th_in_air", "radioactivity_concentration_of_231U_in_air", "radioactivity_concentration_of_232Pa_in_air", "radioactivity_concentration_of_232Th_in_air", "radioactivity_concentration_of_232U_in_air", "radioactivity_concentration_of_233Pa_in_air", "radioactivity_concentration_of_233Th_in_air", "radioactivity_concentration_of_233U_in_air", "radioactivity_concentration_of_234mPa_in_air", "radioactivity_concentration_of_234Pa_in_air", "radioactivity_concentration_of_234Th_in_air", "radioactivity_concentration_of_234U_in_air", "radioactivity_concentration_of_235Np_in_air", "radioactivity_concentration_of_235Pu_in_air", "radioactivity_concentration_of_235U_in_air", "radioactivity_concentration_of_236mNp_in_air", "radioactivity_concentration_of_236Np_in_air", "radioactivity_concentration_of_236Pu_in_air", "radioactivity_concentration_of_236U_in_air", "radioactivity_concentration_of_237Np_in_air", "radioactivity_concentration_of_237Pu_in_air", "radioactivity_concentration_of_237U_in_air", "radioactivity_concentration_of_238Np_in_air", "radioactivity_concentration_of_238Pu_in_air", "radioactivity_concentration_of_238U_in_air", "radioactivity_concentration_of_239Np_in_air", "radioactivity_concentration_of_239Pu_in_air", "radioactivity_concentration_of_239U_in_air", "radioactivity_concentration_of_240Am_in_air", "radioactivity_concentration_of_240mNp_in_air", "radioactivity_concentration_of_240Np_in_air", "radioactivity_concentration_of_240Pu_in_air", "radioactivity_concentration_of_240U_in_air", "radioactivity_concentration_of_241Am_in_air", "radioactivity_concentration_of_241Cm_in_air", "radioactivity_concentration_of_241Pu_in_air", "radioactivity_concentration_of_242Am_in_air", "radioactivity_concentration_of_242Cm_in_air", "radioactivity_concentration_of_242m1Am_in_air", "radioactivity_concentration_of_242m2Am_in_air", "radioactivity_concentration_of_242Pu_in_air", "radioactivity_concentration_of_243Am_in_air", "radioactivity_concentration_of_243Cm_in_air", "radioactivity_concentration_of_243Pu_in_air", "radioactivity_concentration_of_244Am_in_air", "radioactivity_concentration_of_244Cm_in_air", "radioactivity_concentration_of_244mAm_in_air", "radioactivity_concentration_of_244Pu_in_air", "radioactivity_concentration_of_245Am_in_air", "radioactivity_concentration_of_245Cm_in_air", "radioactivity_concentration_of_245Pu_in_air", "radioactivity_concentration_of_246Cm_in_air", "radioactivity_concentration_of_247Cm_in_air", "radioactivity_concentration_of_248Cm_in_air", "radioactivity_concentration_of_249Bk_in_air", "radioactivity_concentration_of_249Cf_in_air", "radioactivity_concentration_of_249Cm_in_air", "radioactivity_concentration_of_24Na_in_air", "radioactivity_concentration_of_250Bk_in_air", "radioactivity_concentration_of_250Cf_in_air", "radioactivity_concentration_of_250Cm_in_air", "radioactivity_concentration_of_251Cf_in_air", "radioactivity_concentration_of_252Cf_in_air", "radioactivity_concentration_of_253Cf_in_air", "radioactivity_concentration_of_253Es_in_air", "radioactivity_concentration_of_254Cf_in_air", "radioactivity_concentration_of_254Es_in_air", "radioactivity_concentration_of_254mEs_in_air", "radioactivity_concentration_of_255Es_in_air", "radioactivity_concentration_of_3H_in_air", "radioactivity_concentration_of_41Ar_in_air", "radioactivity_concentration_of_54Mn_in_air", "radioactivity_concentration_of_58Co_in_air", "radioactivity_concentration_of_60Co_in_air", "radioactivity_concentration_of_72Ga_in_air", "radioactivity_concentration_of_72Zn_in_air", "radioactivity_concentration_of_73Ga_in_air", "radioactivity_concentration_of_75Ge_in_air", "radioactivity_concentration_of_77As_in_air", "radioactivity_concentration_of_77Ge_in_air", "radioactivity_concentration_of_77mGe_in_air", "radioactivity_concentration_of_78As_in_air", "radioactivity_concentration_of_78Ge_in_air", "radioactivity_concentration_of_79Se_in_air", "radioactivity_concentration_of_81mSe_in_air", "radioactivity_concentration_of_81Se_in_air", "radioactivity_concentration_of_82Br_in_air", "radioactivity_concentration_of_82mBr_in_air", "radioactivity_concentration_of_83Br_in_air", "radioactivity_concentration_of_83mKr_in_air", "radioactivity_concentration_of_83mSe_in_air", "radioactivity_concentration_of_83Se_in_air", "radioactivity_concentration_of_84Br_in_air", "radioactivity_concentration_of_84mBr_in_air", "radioactivity_concentration_of_85Kr_in_air", "radioactivity_concentration_of_85mKr_in_air", "radioactivity_concentration_of_86mRb_in_air", "radioactivity_concentration_of_86Rb_in_air", "radioactivity_concentration_of_87Kr_in_air", "radioactivity_concentration_of_87Rb_in_air", "radioactivity_concentration_of_88Kr_in_air", "radioactivity_concentration_of_88Rb_in_air", "radioactivity_concentration_of_89Kr_in_air", "radioactivity_concentration_of_89Rb_in_air", "radioactivity_concentration_of_89Sr_in_air", "radioactivity_concentration_of_90mY_in_air", "radioactivity_concentration_of_90Sr_in_air", "radioactivity_concentration_of_90Y_in_air", "radioactivity_concentration_of_91mY_in_air", "radioactivity_concentration_of_91Sr_in_air", "radioactivity_concentration_of_91Y_in_air", "radioactivity_concentration_of_92Sr_in_air", "radioactivity_concentration_of_92Y_in_air", "radioactivity_concentration_of_93Y_in_air", "radioactivity_concentration_of_93Zr_in_air", "radioactivity_concentration_of_94mNb_in_air", "radioactivity_concentration_of_94Nb_in_air", "radioactivity_concentration_of_94Y_in_air", "radioactivity_concentration_of_95mNb_in_air", "radioactivity_concentration_of_95Nb_in_air", "radioactivity_concentration_of_95Y_in_air", "radioactivity_concentration_of_95Zr_in_air", "radioactivity_concentration_of_96Nb_in_air", "radioactivity_concentration_of_97mNb_in_air", "radioactivity_concentration_of_97Nb_in_air", "radioactivity_concentration_of_97Zr_in_air", "radioactivity_concentration_of_98Nb_in_air", "radioactivity_concentration_of_99Mo_in_air", "radioactivity_concentration_of_99mTc_in_air", "radioactivity_concentration_of_99Tc_in_air", "radius_of_tropical_cyclone_central_dense_overcast_region", "radius_of_tropical_cyclone_eye", "radius_of_tropical_cyclone_maximum_sustained_wind_speed", "rainfall_amount", "rainfall_flux", "rainfall_rate", "rate_of_change_test_quality_flag", "rate_of_hydroxyl_radical_destruction_due_to_reaction_with_nmvoc", "ratio_of_ice_volume_in_frozen_ground_to_pore_volume_in_unfrozen_ground", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "ratio_of_sea_water_practical_salinity_anomaly_to_relaxation_timescale", "ratio_of_x_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "ratio_of_y_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "realization", "reference_air_pressure_for_atmosphere_vertical_coordinate", "reference_epoch", "reference_pressure", "reference_sea_water_density_for_boussinesq_approximation", "region", "relative_humidity", "relative_humidity_for_aerosol_particle_size_selection", "relative_platform_azimuth_angle", "relative_sensor_azimuth_angle", "richardson_number_in_sea_water", "root_depth", "root_mass_content_of_carbon", "root_mass_content_of_nitrogen", "runoff_amount", "runoff_amount_excluding_baseflow", "runoff_flux", "salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "salt_flux_into_sea_water_from_rivers", "scattering_angle", "scene_type_of_dvorak_tropical_cyclone_cloud_region", "scene_type_of_dvorak_tropical_cyclone_eye_region", "sea_area", "sea_area_fraction", "sea_binary_mask", "sea_floor_depth_below_geoid", "sea_floor_depth_below_geopotential_datum", "sea_floor_depth_below_mean_sea_level", "sea_floor_depth_below_reference_ellipsoid", "sea_floor_depth_below_sea_surface", "sea_floor_sediment_grain_size", "sea_ice_albedo", "sea_ice_amount", "sea_ice_and_surface_snow_amount", "sea_ice_area", "sea_ice_area_fraction", "sea_ice_area_transport_across_line", "sea_ice_average_normal_horizontal_stress", "sea_ice_basal_drag_coefficient_for_momentum_in_sea_water", "sea_ice_basal_temperature", "sea_ice_classification", "sea_ice_draft", "sea_ice_extent", "sea_ice_floe_diameter", "sea_ice_freeboard", "sea_ice_mass", "sea_ice_mass_content_of_salt", "sea_ice_melt_pond_thickness", "sea_ice_salinity", "sea_ice_speed", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_ice_thickness", "sea_ice_transport_across_line", "sea_ice_volume", "sea_ice_x_displacement", "sea_ice_x_force_per_unit_area_due_to_coriolis_effect", "sea_ice_x_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_x_internal_stress", "sea_ice_x_transport", "sea_ice_x_velocity", "sea_ice_y_displacement", "sea_ice_y_force_per_unit_area_due_to_coriolis_effect", "sea_ice_y_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_y_internal_stress", "sea_ice_y_transport", "sea_ice_y_velocity", "sea_surface_density", "sea_surface_downward_eastward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_downward_northward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_foundation_temperature", "sea_surface_height_above_geoid", "sea_surface_height_above_geopotential_datum", "sea_surface_height_above_mean_sea_level", "sea_surface_height_above_reference_ellipsoid", "sea_surface_height_amplitude_due_to_earth_tide", "sea_surface_height_amplitude_due_to_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_geocentric_ocean_tide", "sea_surface_height_amplitude_due_to_non_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_pole_tide", "sea_surface_height_bias_due_to_sea_surface_roughness", "sea_surface_height_correction_due_to_air_pressure_and_wind_at_high_frequency", "sea_surface_height_correction_due_to_air_pressure_at_low_frequency", "sea_surface_mean_square_crosswave_slope", "sea_surface_mean_square_upwave_slope", "sea_surface_mean_square_upwave_slope_direction", "sea_surface_primary_swell_wave_directional_spread", "sea_surface_primary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_from_direction", "sea_surface_primary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_mean_period", "sea_surface_primary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_significant_height", "sea_surface_salinity", "sea_surface_secondary_swell_wave_directional_spread", "sea_surface_secondary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_from_direction", "sea_surface_secondary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_mean_period", "sea_surface_secondary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_significant_height", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_swell_wave_directional_spread", "sea_surface_swell_wave_from_direction", "sea_surface_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_swell_wave_mean_period", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_swell_wave_period", "sea_surface_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_swell_wave_significant_height", "sea_surface_swell_wave_to_direction", "sea_surface_temperature", "sea_surface_tertiary_swell_wave_directional_spread", "sea_surface_tertiary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_from_direction", "sea_surface_tertiary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_mean_period", "sea_surface_tertiary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_significant_height", "sea_surface_wave_directional_spread", "sea_surface_wave_directional_spread_at_variance_spectral_density_maximum", "sea_surface_wave_directional_variance_spectral_density", "sea_surface_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wave_from_direction", "sea_surface_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wave_maximum_crest_height", "sea_surface_wave_maximum_height", "sea_surface_wave_maximum_period", "sea_surface_wave_maximum_steepness", "sea_surface_wave_maximum_trough_depth", "sea_surface_wave_mean_height", "sea_surface_wave_mean_height_of_highest_tenth", "sea_surface_wave_mean_period", "sea_surface_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wave_mean_period_of_highest_tenth", "sea_surface_wave_mean_square_slope", "sea_surface_wave_mean_square_x_slope", "sea_surface_wave_mean_square_y_slope", "sea_surface_wave_mean_wavenumber_from_variance_spectral_density_first_wavenumber_moment", "sea_surface_wave_period_at_variance_spectral_density_maximum", "sea_surface_wave_period_of_highest_wave", "sea_surface_wave_significant_height", "sea_surface_wave_significant_period", "sea_surface_wave_stokes_drift_eastward_velocity", "sea_surface_wave_stokes_drift_northward_velocity", "sea_surface_wave_stokes_drift_speed", "sea_surface_wave_stokes_drift_to_direction", "sea_surface_wave_stokes_drift_x_velocity", "sea_surface_wave_stokes_drift_y_velocity", "sea_surface_wave_to_direction", "sea_surface_wave_variance_spectral_density", "sea_surface_wave_xx_radiation_stress", "sea_surface_wave_xy_radiation_stress", "sea_surface_wave_yy_radiation_stress", "sea_surface_wind_wave_directional_spread", "sea_surface_wind_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wind_wave_from_direction", "sea_surface_wind_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wind_wave_mean_period", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wind_wave_period", "sea_surface_wind_wave_period_at_variance_spectral_density_maximum", "sea_surface_wind_wave_significant_height", "sea_surface_wind_wave_to_direction", "sea_water_absolute_salinity", "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", "sea_water_age_since_surface_contact", "sea_water_alkalinity_expressed_as_mole_equivalent", "sea_water_alkalinity_natural_analogue_expressed_as_mole_equivalent", "sea_water_conservative_temperature", "sea_water_cox_salinity", "sea_water_density", "sea_water_electrical_conductivity", "sea_water_knudsen_salinity", "sea_water_mass", "sea_water_mass_per_unit_area", "sea_water_mass_per_unit_area_expressed_as_thickness", "sea_water_neutral_density", "sea_water_ph_abiotic_analogue_reported_on_total_scale", "sea_water_ph_natural_analogue_reported_on_total_scale", "sea_water_ph_reported_on_total_scale", "sea_water_potential_density", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_practical_salinity", "sea_water_practical_salinity_at_sea_floor", "sea_water_preformed_salinity", "sea_water_pressure", "sea_water_pressure_at_sea_floor", "sea_water_pressure_at_sea_water_surface", "sea_water_pressure_due_to_sea_water", "sea_water_redistributed_conservative_temperature", "sea_water_redistributed_potential_temperature", "sea_water_reference_salinity", "sea_water_salinity", "sea_water_salinity_at_sea_floor", "sea_water_sigma_t", "sea_water_sigma_t_difference", "sea_water_sigma_theta", "sea_water_sigma_theta_difference", "sea_water_specific_potential_enthalpy", "sea_water_speed", "sea_water_speed_at_sea_floor", "sea_water_speed_due_to_tides", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "sea_water_transport_across_line", "sea_water_turbidity", "sea_water_velocity_from_direction", "sea_water_velocity_to_direction", "sea_water_velocity_to_direction_at_sea_floor", "sea_water_velocity_to_direction_due_to_tides", "sea_water_volume", "sea_water_x_velocity", "sea_water_x_velocity_due_to_parameterized_mesoscale_eddies", "sea_water_y_velocity", "sea_water_y_velocity_due_to_parameterized_mesoscale_eddies", "secchi_depth_of_sea_water", "sensor_azimuth_angle", "sensor_band_central_radiation_frequency", "sensor_band_central_radiation_wavelength", "sensor_band_central_radiation_wavenumber", "sensor_band_identifier", "sensor_view_angle", "sensor_zenith_angle", "shallow_convection_time_fraction", "shallow_convective_cloud_base_altitude", "shallow_convective_cloud_top_altitude", "shallow_convective_precipitation_flux", "signal_intensity_from_multibeam_acoustic_doppler_velocity_sensor_in_sea_water", "single_scattering_albedo_in_air_due_to_ambient_aerosol_particles", "sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_iron_in_sea_water", "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_organic_nitrogen_in_sea_water", "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", "sinking_mole_flux_of_particulate_silicon_in_sea_water", "slow_soil_pool_mass_content_of_carbon", "snow_area_fraction_viewable_from_above", "snowfall_amount", "snowfall_flux", "snow_grain_size", "snow_transport_across_line_due_to_sea_ice_dynamics", "soil_albedo", "soil_frozen_water_content", "soil_hydraulic_conductivity_at_saturation", "soil_mass_content_of_13C", "soil_mass_content_of_14C", "soil_mass_content_of_carbon", "soil_mass_content_of_inorganic_ammonium_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrate_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", "soil_mass_content_of_nitrogen", "soil_moisture_content_at_field_capacity", "soil_pool", "soil_pool_carbon_decay_rate", "soil_porosity", "soil_suction_at_saturation", "soil_temperature", "soil_thermal_capacity", "soil_thermal_conductivity", "soil_type", "soil_water_ph", "solar_azimuth_angle", "solar_elevation_angle", "solar_irradiance", "solar_irradiance_per_unit_wavelength", "solar_zenith_angle", "solid_precipitation_flux", "solid_precipitation_flux_containing_17O", "solid_precipitation_flux_containing_18O", "solid_precipitation_flux_containing_single_2H", "soot_content_of_surface_snow", "sound_frequency", "sound_intensity_in_air", "sound_intensity_in_water", "sound_intensity_level_in_air", "sound_intensity_level_in_water", "sound_pressure_in_air", "sound_pressure_in_water", "sound_pressure_level_in_air", "sound_pressure_level_in_water", "source", "specific_dry_energy_of_air", "specific_gravitational_potential_energy", "specific_heat_capacity_of_frozen_ground", "specific_heat_capacity_of_sea_water", "specific_humidity", "specific_kinetic_energy_of_air", "specific_kinetic_energy_of_sea_water", "specific_turbulent_kinetic_energy_dissipation_in_sea_water", "specific_turbulent_kinetic_energy_of_sea_water", "speed_of_sound_in_air", "speed_of_sound_in_sea_water", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_below_threshold", "spike_test_quality_flag", "square_of_air_temperature", "square_of_brunt_vaisala_frequency_in_air", "square_of_brunt_vaisala_frequency_in_sea_water", "square_of_eastward_wind", "square_of_geopotential_height", "square_of_lagrangian_tendency_of_air_pressure", "square_of_northward_wind", "square_of_ocean_mixed_layer_thickness_defined_by_sigma_t", "square_of_sea_surface_height_above_geoid", "square_of_sea_surface_salinity", "square_of_sea_surface_temperature", "square_of_upward_air_velocity", "square_of_upward_ocean_mass_transport", "status_flag", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "steric_change_in_mean_sea_level", "steric_change_in_sea_surface_height", "storm_motion_speed", "stratiform_cloud_area_fraction", "stratiform_cloud_area_fraction_in_atmosphere_layer", "stratiform_cloud_longwave_emissivity", "stratiform_graupel_fall_amount", "stratiform_graupel_flux", "stratiform_precipitation_amount", "stratiform_precipitation_flux", "stratiform_rainfall_amount", "stratiform_rainfall_flux", "stratiform_rainfall_rate", "stratiform_snowfall_amount", "stratiform_snowfall_flux", "stratosphere_mole_content_of_nitrogen_dioxide", "stratosphere_optical_thickness_due_to_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_volcanic_ambient_aerosol_particles", "subsurface_litter_mass_content_of_carbon", "subsurface_litter_mass_content_of_nitrogen", "subsurface_runoff_amount", "subsurface_runoff_flux", "sunglint_angle", "sunlit_binary_mask", "surface_air_pressure", "surface_albedo", "surface_albedo_assuming_deep_snow", "surface_albedo_assuming_no_snow", "surface_altitude", "surface_backwards_scattering_coefficient_of_radar_wave", "surface_bidirectional_reflectance", "surface_brightness_temperature", "surface_carbon_dioxide_abiotic_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_natural_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_partial_pressure_difference_between_air_and_sea_water", "surface_carbon_dioxide_partial_pressure_difference_between_sea_water_and_air", "surface_diffuse_downwelling_photosynthetic_radiative_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_diffuse_shortwave_hemispherical_reflectance", "surface_direct_along_beam_shortwave_flux_in_air", "surface_direct_downwelling_shortwave_flux_in_air", "surface_direct_shortwave_hemispherical_reflectance", "surface_downward_eastward_stress", "surface_downward_eastward_stress_due_to_boundary_layer_mixing", "surface_downward_eastward_stress_due_to_ocean_viscous_dissipation", "surface_downward_eastward_stress_due_to_sea_surface_waves", "surface_downward_heat_flux_in_air", "surface_downward_heat_flux_in_sea_ice", "surface_downward_heat_flux_in_sea_water", "surface_downward_heat_flux_in_snow", "surface_downward_latent_heat_flux", "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_ammonia", "surface_downward_mass_flux_of_carbon_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_natural_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_methane_due_to_wetland_biological_consumption", "surface_downward_mass_flux_of_water_due_to_irrigation", "surface_downward_mole_flux_of_carbon_dioxide", "surface_downward_mole_flux_of_cfc11", "surface_downward_mole_flux_of_cfc12", "surface_downward_mole_flux_of_molecular_oxygen", "surface_downward_mole_flux_of_sulfur_hexafluoride", "surface_downward_northward_stress", "surface_downward_northward_stress_due_to_boundary_layer_mixing", "surface_downward_northward_stress_due_to_ocean_viscous_dissipation", "surface_downward_northward_stress_due_to_sea_surface_waves", "surface_downward_sensible_heat_flux", "surface_downward_water_flux", "surface_downward_x_stress", "surface_downward_x_stress_correction", "surface_downward_y_stress", "surface_downward_y_stress_correction", "surface_downwelling_longwave_flux_in_air", "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", "surface_downwelling_longwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_photon_flux_in_sea_water", "surface_downwelling_photon_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_radiance_in_sea_water", "surface_downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photosynthetic_photon_flux_in_air", "surface_downwelling_photosynthetic_photon_flux_in_sea_water", "surface_downwelling_photosynthetic_photon_radiance_in_sea_water", "surface_downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photosynthetic_radiance_in_sea_water", "surface_downwelling_photosynthetic_radiative_flux_in_air", "surface_downwelling_photosynthetic_radiative_flux_in_sea_water", "surface_downwelling_photosynthetic_spherical_irradiance_in_sea_water", "surface_downwelling_radiance_in_sea_water", "surface_downwelling_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_radiative_flux_in_sea_water", "surface_downwelling_radiative_flux_per_unit_wavelength_in_air", "surface_downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_shortwave_flux_in_air", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_downwelling_shortwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_spherical_irradiance_in_sea_water", "surface_downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_drag_coefficient_for_heat_in_air", "surface_drag_coefficient_for_momentum_in_air", "surface_drag_coefficient_in_air", "surface_eastward_sea_water_velocity", "surface_frozen_carbon_dioxide_amount", "surface_geopotential", "surface_geostrophic_eastward_sea_water_velocity", "surface_geostrophic_eastward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_northward_sea_water_velocity", "surface_geostrophic_northward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_x_velocity", "surface_geostrophic_sea_water_x_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_y_velocity", "surface_geostrophic_sea_water_y_velocity_assuming_mean_sea_level_for_geoid", "surface_height_above_geopotential_datum", "surface_litter_mass_content_of_carbon", "surface_litter_mass_content_of_nitrogen", "surface_longwave_emissivity", "surface_microwave_emissivity", "surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_longwave_flux", "surface_net_downward_longwave_flux_assuming_clear_sky", "surface_net_downward_mass_flux_of_ammonia_due_to_bidirectional_surface_exchange", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change", "surface_net_downward_radiative_flux", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_shortwave_flux", "surface_net_downward_shortwave_flux_assuming_clear_sky", "surface_net_upward_longwave_flux", "surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change", "surface_net_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_processes", "surface_net_upward_radiative_flux", "surface_net_upward_shortwave_flux", "surface_northward_sea_water_velocity", "surface_partial_pressure_of_carbon_dioxide_abiotic_analogue_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_in_air", "surface_partial_pressure_of_carbon_dioxide_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_natural_analogue_in_sea_water", "surface_radioactivity_content", "surface_radioactivity_content_of_101Mo", "surface_radioactivity_content_of_101Tc", "surface_radioactivity_content_of_102Mo", "surface_radioactivity_content_of_102mTc", "surface_radioactivity_content_of_102Tc", "surface_radioactivity_content_of_103mRh", "surface_radioactivity_content_of_103Ru", "surface_radioactivity_content_of_104Tc", "surface_radioactivity_content_of_105mRh", "surface_radioactivity_content_of_105Rh", "surface_radioactivity_content_of_105Ru", "surface_radioactivity_content_of_106mRh", "surface_radioactivity_content_of_106Rh", "surface_radioactivity_content_of_106Ru", "surface_radioactivity_content_of_107mPd", "surface_radioactivity_content_of_107Pd", "surface_radioactivity_content_of_107Rh", "surface_radioactivity_content_of_109mAg", "surface_radioactivity_content_of_109Pd", "surface_radioactivity_content_of_110mAg", "surface_radioactivity_content_of_111Ag", "surface_radioactivity_content_of_111mAg", "surface_radioactivity_content_of_111mCd", "surface_radioactivity_content_of_111mPd", "surface_radioactivity_content_of_111Pd", "surface_radioactivity_content_of_112Ag", "surface_radioactivity_content_of_112Pd", "surface_radioactivity_content_of_113Ag", "surface_radioactivity_content_of_113Cd", "surface_radioactivity_content_of_113mAg", "surface_radioactivity_content_of_113mCd", "surface_radioactivity_content_of_113mIn", "surface_radioactivity_content_of_115Ag", "surface_radioactivity_content_of_115Cd", "surface_radioactivity_content_of_115In", "surface_radioactivity_content_of_115mAg", "surface_radioactivity_content_of_115mCd", "surface_radioactivity_content_of_115mIn", "surface_radioactivity_content_of_116In", "surface_radioactivity_content_of_116mIn", "surface_radioactivity_content_of_117Cd", "surface_radioactivity_content_of_117In", "surface_radioactivity_content_of_117mCd", "surface_radioactivity_content_of_117mIn", "surface_radioactivity_content_of_117mSn", "surface_radioactivity_content_of_118Cd", "surface_radioactivity_content_of_118In", "surface_radioactivity_content_of_118mIn", "surface_radioactivity_content_of_119In", "surface_radioactivity_content_of_119mIn", "surface_radioactivity_content_of_119mSn", "surface_radioactivity_content_of_11C", "surface_radioactivity_content_of_121mSn", "surface_radioactivity_content_of_121Sn", "surface_radioactivity_content_of_123mSn", "surface_radioactivity_content_of_123Sn", "surface_radioactivity_content_of_124mSb", "surface_radioactivity_content_of_124Sb", "surface_radioactivity_content_of_125mTe", "surface_radioactivity_content_of_125Sb", "surface_radioactivity_content_of_125Sn", "surface_radioactivity_content_of_126mSb", "surface_radioactivity_content_of_126Sb", "surface_radioactivity_content_of_126Sn", "surface_radioactivity_content_of_127mTe", "surface_radioactivity_content_of_127Sb", "surface_radioactivity_content_of_127Sn", "surface_radioactivity_content_of_127Te", "surface_radioactivity_content_of_128mSb", "surface_radioactivity_content_of_128Sb", "surface_radioactivity_content_of_128Sn", "surface_radioactivity_content_of_129I", "surface_radioactivity_content_of_129mTe", "surface_radioactivity_content_of_129mXe", "surface_radioactivity_content_of_129Sb", "surface_radioactivity_content_of_129Te", "surface_radioactivity_content_of_130I", "surface_radioactivity_content_of_130mI", "surface_radioactivity_content_of_130mSb", "surface_radioactivity_content_of_130Sb", "surface_radioactivity_content_of_130Sn", "surface_radioactivity_content_of_131I", "surface_radioactivity_content_of_131mTe", "surface_radioactivity_content_of_131mXe", "surface_radioactivity_content_of_131Sb", "surface_radioactivity_content_of_131Te", "surface_radioactivity_content_of_132I", "surface_radioactivity_content_of_132Te", "surface_radioactivity_content_of_133I", "surface_radioactivity_content_of_133mI", "surface_radioactivity_content_of_133mTe", "surface_radioactivity_content_of_133mXe", "surface_radioactivity_content_of_133Te", "surface_radioactivity_content_of_133Xe", "surface_radioactivity_content_of_134Cs", "surface_radioactivity_content_of_134I", "surface_radioactivity_content_of_134mCs", "surface_radioactivity_content_of_134mI", "surface_radioactivity_content_of_134mXe", "surface_radioactivity_content_of_134Te", "surface_radioactivity_content_of_135Cs", "surface_radioactivity_content_of_135I", "surface_radioactivity_content_of_135mBa", "surface_radioactivity_content_of_135mCs", "surface_radioactivity_content_of_135mXe", "surface_radioactivity_content_of_135Xe", "surface_radioactivity_content_of_136Cs", "surface_radioactivity_content_of_137Cs", "surface_radioactivity_content_of_137mBa", "surface_radioactivity_content_of_137Xe", "surface_radioactivity_content_of_138Cs", "surface_radioactivity_content_of_138Xe", "surface_radioactivity_content_of_139Ba", "surface_radioactivity_content_of_13N", "surface_radioactivity_content_of_140Ba", "surface_radioactivity_content_of_140La", "surface_radioactivity_content_of_141Ce", "surface_radioactivity_content_of_141La", "surface_radioactivity_content_of_142Ce", "surface_radioactivity_content_of_142La", "surface_radioactivity_content_of_142mPr", "surface_radioactivity_content_of_142Pr", "surface_radioactivity_content_of_143Ce", "surface_radioactivity_content_of_143La", "surface_radioactivity_content_of_143Pr", "surface_radioactivity_content_of_144Ce", "surface_radioactivity_content_of_144mPr", "surface_radioactivity_content_of_144Nd", "surface_radioactivity_content_of_144Pr", "surface_radioactivity_content_of_145Pr", "surface_radioactivity_content_of_146Ce", "surface_radioactivity_content_of_146Pr", "surface_radioactivity_content_of_147Nd", "surface_radioactivity_content_of_147Pm", "surface_radioactivity_content_of_147Pr", "surface_radioactivity_content_of_147Sm", "surface_radioactivity_content_of_148mPm", "surface_radioactivity_content_of_148Pm", "surface_radioactivity_content_of_148Sm", "surface_radioactivity_content_of_149Nd", "surface_radioactivity_content_of_149Pm", "surface_radioactivity_content_of_149Sm", "surface_radioactivity_content_of_150Pm", "surface_radioactivity_content_of_151Nd", "surface_radioactivity_content_of_151Pm", "surface_radioactivity_content_of_151Sm", "surface_radioactivity_content_of_152mPm", "surface_radioactivity_content_of_152Nd", "surface_radioactivity_content_of_152Pm", "surface_radioactivity_content_of_153Sm", "surface_radioactivity_content_of_154Eu", "surface_radioactivity_content_of_155Eu", "surface_radioactivity_content_of_155Sm", "surface_radioactivity_content_of_156Eu", "surface_radioactivity_content_of_156Sm", "surface_radioactivity_content_of_157Eu", "surface_radioactivity_content_of_158Eu", "surface_radioactivity_content_of_159Eu", "surface_radioactivity_content_of_159Gd", "surface_radioactivity_content_of_15O", "surface_radioactivity_content_of_160Tb", "surface_radioactivity_content_of_161Tb", "surface_radioactivity_content_of_162Gd", "surface_radioactivity_content_of_162mTb", "surface_radioactivity_content_of_162Tb", "surface_radioactivity_content_of_163Tb", "surface_radioactivity_content_of_165Dy", "surface_radioactivity_content_of_18F", "surface_radioactivity_content_of_206Hg", "surface_radioactivity_content_of_206Tl", "surface_radioactivity_content_of_207mPb", "surface_radioactivity_content_of_207Tl", "surface_radioactivity_content_of_208Tl", "surface_radioactivity_content_of_209Bi", "surface_radioactivity_content_of_209Pb", "surface_radioactivity_content_of_209Tl", "surface_radioactivity_content_of_210Bi", "surface_radioactivity_content_of_210Pb", "surface_radioactivity_content_of_210Po", "surface_radioactivity_content_of_210Tl", "surface_radioactivity_content_of_211Bi", "surface_radioactivity_content_of_211Pb", "surface_radioactivity_content_of_211Po", "surface_radioactivity_content_of_212Bi", "surface_radioactivity_content_of_212Pb", "surface_radioactivity_content_of_212Po", "surface_radioactivity_content_of_213Bi", "surface_radioactivity_content_of_213Pb", "surface_radioactivity_content_of_213Po", "surface_radioactivity_content_of_214Bi", "surface_radioactivity_content_of_214Pb", "surface_radioactivity_content_of_214Po", "surface_radioactivity_content_of_215At", "surface_radioactivity_content_of_215Bi", "surface_radioactivity_content_of_215Po", "surface_radioactivity_content_of_216At", "surface_radioactivity_content_of_216Po", "surface_radioactivity_content_of_217At", "surface_radioactivity_content_of_217Po", "surface_radioactivity_content_of_218At", "surface_radioactivity_content_of_218Po", "surface_radioactivity_content_of_218Rn", "surface_radioactivity_content_of_219At", "surface_radioactivity_content_of_219Rn", "surface_radioactivity_content_of_220Rn", "surface_radioactivity_content_of_221Fr", "surface_radioactivity_content_of_221Rn", "surface_radioactivity_content_of_222Fr", "surface_radioactivity_content_of_222Ra", "surface_radioactivity_content_of_222Rn", "surface_radioactivity_content_of_223Fr", "surface_radioactivity_content_of_223Ra", "surface_radioactivity_content_of_223Rn", "surface_radioactivity_content_of_224Ra", "surface_radioactivity_content_of_225Ac", "surface_radioactivity_content_of_225Ra", "surface_radioactivity_content_of_226Ac", "surface_radioactivity_content_of_226Ra", "surface_radioactivity_content_of_226Th", "surface_radioactivity_content_of_227Ac", "surface_radioactivity_content_of_227Ra", "surface_radioactivity_content_of_227Th", "surface_radioactivity_content_of_228Ac", "surface_radioactivity_content_of_228Ra", "surface_radioactivity_content_of_228Th", "surface_radioactivity_content_of_229Ac", "surface_radioactivity_content_of_229Ra", "surface_radioactivity_content_of_229Th", "surface_radioactivity_content_of_230Pa", "surface_radioactivity_content_of_230Th", "surface_radioactivity_content_of_230U", "surface_radioactivity_content_of_231Pa", "surface_radioactivity_content_of_231Th", "surface_radioactivity_content_of_231U", "surface_radioactivity_content_of_232Pa", "surface_radioactivity_content_of_232Th", "surface_radioactivity_content_of_232U", "surface_radioactivity_content_of_233Pa", "surface_radioactivity_content_of_233Th", "surface_radioactivity_content_of_233U", "surface_radioactivity_content_of_234mPa", "surface_radioactivity_content_of_234Pa", "surface_radioactivity_content_of_234Th", "surface_radioactivity_content_of_234U", "surface_radioactivity_content_of_235Np", "surface_radioactivity_content_of_235Pu", "surface_radioactivity_content_of_235U", "surface_radioactivity_content_of_236mNp", "surface_radioactivity_content_of_236Np", "surface_radioactivity_content_of_236Pu", "surface_radioactivity_content_of_236U", "surface_radioactivity_content_of_237Np", "surface_radioactivity_content_of_237Pu", "surface_radioactivity_content_of_237U", "surface_radioactivity_content_of_238Np", "surface_radioactivity_content_of_238Pu", "surface_radioactivity_content_of_238U", "surface_radioactivity_content_of_239Np", "surface_radioactivity_content_of_239Pu", "surface_radioactivity_content_of_239U", "surface_radioactivity_content_of_240Am", "surface_radioactivity_content_of_240mNp", "surface_radioactivity_content_of_240Np", "surface_radioactivity_content_of_240Pu", "surface_radioactivity_content_of_240U", "surface_radioactivity_content_of_241Am", "surface_radioactivity_content_of_241Cm", "surface_radioactivity_content_of_241Pu", "surface_radioactivity_content_of_242Am", "surface_radioactivity_content_of_242Cm", "surface_radioactivity_content_of_242m1Am", "surface_radioactivity_content_of_242m2Am", "surface_radioactivity_content_of_242Pu", "surface_radioactivity_content_of_243Am", "surface_radioactivity_content_of_243Cm", "surface_radioactivity_content_of_243Pu", "surface_radioactivity_content_of_244Am", "surface_radioactivity_content_of_244Cm", "surface_radioactivity_content_of_244mAm", "surface_radioactivity_content_of_244Pu", "surface_radioactivity_content_of_245Am", "surface_radioactivity_content_of_245Cm", "surface_radioactivity_content_of_245Pu", "surface_radioactivity_content_of_246Cm", "surface_radioactivity_content_of_247Cm", "surface_radioactivity_content_of_248Cm", "surface_radioactivity_content_of_249Bk", "surface_radioactivity_content_of_249Cf", "surface_radioactivity_content_of_249Cm", "surface_radioactivity_content_of_24Na", "surface_radioactivity_content_of_250Bk", "surface_radioactivity_content_of_250Cf", "surface_radioactivity_content_of_250Cm", "surface_radioactivity_content_of_251Cf", "surface_radioactivity_content_of_252Cf", "surface_radioactivity_content_of_253Cf", "surface_radioactivity_content_of_253Es", "surface_radioactivity_content_of_254Cf", "surface_radioactivity_content_of_254Es", "surface_radioactivity_content_of_254mEs", "surface_radioactivity_content_of_255Es", "surface_radioactivity_content_of_3H", "surface_radioactivity_content_of_41Ar", "surface_radioactivity_content_of_54Mn", "surface_radioactivity_content_of_58Co", "surface_radioactivity_content_of_60Co", "surface_radioactivity_content_of_72Ga", "surface_radioactivity_content_of_72Zn", "surface_radioactivity_content_of_73Ga", "surface_radioactivity_content_of_75Ge", "surface_radioactivity_content_of_77As", "surface_radioactivity_content_of_77Ge", "surface_radioactivity_content_of_77mGe", "surface_radioactivity_content_of_78As", "surface_radioactivity_content_of_78Ge", "surface_radioactivity_content_of_79Se", "surface_radioactivity_content_of_81mSe", "surface_radioactivity_content_of_81Se", "surface_radioactivity_content_of_82Br", "surface_radioactivity_content_of_82mBr", "surface_radioactivity_content_of_83Br", "surface_radioactivity_content_of_83mKr", "surface_radioactivity_content_of_83mSe", "surface_radioactivity_content_of_83Se", "surface_radioactivity_content_of_84Br", "surface_radioactivity_content_of_84mBr", "surface_radioactivity_content_of_85Kr", "surface_radioactivity_content_of_85mKr", "surface_radioactivity_content_of_86mRb", "surface_radioactivity_content_of_86Rb", "surface_radioactivity_content_of_87Kr", "surface_radioactivity_content_of_87Rb", "surface_radioactivity_content_of_88Kr", "surface_radioactivity_content_of_88Rb", "surface_radioactivity_content_of_89Kr", "surface_radioactivity_content_of_89Rb", "surface_radioactivity_content_of_89Sr", "surface_radioactivity_content_of_90mY", "surface_radioactivity_content_of_90Sr", "surface_radioactivity_content_of_90Y", "surface_radioactivity_content_of_91mY", "surface_radioactivity_content_of_91Sr", "surface_radioactivity_content_of_91Y", "surface_radioactivity_content_of_92Sr", "surface_radioactivity_content_of_92Y", "surface_radioactivity_content_of_93Y", "surface_radioactivity_content_of_93Zr", "surface_radioactivity_content_of_94mNb", "surface_radioactivity_content_of_94Nb", "surface_radioactivity_content_of_94Y", "surface_radioactivity_content_of_95mNb", "surface_radioactivity_content_of_95Nb", "surface_radioactivity_content_of_95Y", "surface_radioactivity_content_of_95Zr", "surface_radioactivity_content_of_96Nb", "surface_radioactivity_content_of_97mNb", "surface_radioactivity_content_of_97Nb", "surface_radioactivity_content_of_97Zr", "surface_radioactivity_content_of_98Nb", "surface_radioactivity_content_of_99Mo", "surface_radioactivity_content_of_99mTc", "surface_radioactivity_content_of_99Tc", "surface_ratio_of_upwelling_radiance_emerging_from_sea_water_to_downwelling_radiative_flux_in_air", "surface_roughness_length", "surface_roughness_length_for_heat_in_air", "surface_roughness_length_for_humidity_in_air", "surface_roughness_length_for_momentum_in_air", "surface_runoff_amount", "surface_runoff_flux", "surface_snow_amount", "surface_snow_and_ice_melt_flux", "surface_snow_and_ice_melt_heat_flux", "surface_snow_and_ice_refreezing_flux", "surface_snow_area_fraction", "surface_snow_binary_mask", "surface_snow_density", "surface_snow_melt_amount", "surface_snow_melt_and_sublimation_heat_flux", "surface_snow_melt_flux", "surface_snow_melt_heat_flux", "surface_snow_sublimation_amount", "surface_snow_sublimation_heat_flux", "surface_snow_thickness", "surface_specific_humidity", "surface_temperature", "surface_temperature_anomaly", "surface_upward_eastward_stress_due_to_sea_surface_waves", "surface_upward_heat_flux_due_to_anthropogenic_energy_consumption", "surface_upward_heat_flux_in_air", "surface_upward_latent_heat_flux", "surface_upward_latent_heat_flux_due_to_sublimation", "surface_upward_mass_flux_of_ammonia", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change_excluding_forestry_and_agricultural_products", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_grazing", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_litter_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_vegetation_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_growth", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_maintenance", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_leaves", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_miscellaneous_living_matter", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_roots", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_respiration_in_soil", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_litter", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_soil", "surface_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_production", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_all_land_processes_excluding_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_emission_from_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mole_flux_of_carbon_dioxide", "surface_upward_mole_flux_of_dimethyl_sulfide", "surface_upward_northward_stress_due_to_sea_surface_waves", "surface_upward_sensible_heat_flux", "surface_upward_water_flux", "surface_upward_water_vapor_flux_in_air", "surface_upwelling_longwave_flux_in_air", "surface_upwelling_longwave_flux_in_air_assuming_clear_sky", "surface_upwelling_photosynthetic_photon_flux_in_air", "surface_upwelling_radiance_in_air", "surface_upwelling_radiance_in_air_emerging_from_sea_water", "surface_upwelling_radiance_in_air_reflected_by_sea_water", "surface_upwelling_radiance_in_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air", "surface_upwelling_radiance_per_unit_wavelength_in_air_emerging_from_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air_reflected_by_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_sea_water", "surface_upwelling_radiative_flux_per_unit_wavelength_in_air", "surface_upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_upwelling_shortwave_flux_in_air", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_water_amount", "surface_water_evaporation_flux", "syntax_test_quality_flag", "temperature_at_base_of_ice_sheet_model", "temperature_at_top_of_ice_sheet_model", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically_from_the_surface", "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "tendency_of_air_density", "tendency_of_air_pressure", "tendency_of_air_temperature", "tendency_of_air_temperature_due_to_advection", "tendency_of_air_temperature_due_to_boundary_layer_mixing", "tendency_of_air_temperature_due_to_convection", "tendency_of_air_temperature_due_to_diabatic_processes", "tendency_of_air_temperature_due_to_diffusion", "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", "tendency_of_air_temperature_due_to_dry_convection", "tendency_of_air_temperature_due_to_longwave_heating", "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_model_physics", "tendency_of_air_temperature_due_to_moist_convection", "tendency_of_air_temperature_due_to_radiative_heating", "tendency_of_air_temperature_due_to_shortwave_heating", "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_air_temperature_due_to_stratiform_precipitation", "tendency_of_air_temperature_due_to_turbulence", "tendency_of_atmosphere_dry_energy_content", "tendency_of_atmosphere_enthalpy_content_due_to_advection", "tendency_of_atmosphere_kinetic_energy_content_due_to_advection", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetone_due_to_emission", "tendency_of_atmosphere_mass_content_of_aceto_nitrile_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alkanes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alkenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alpha_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_aromatic_compounds_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_beta_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_forestry_and_agricultural_products", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_tetrachloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113a_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc114_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc115_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc11_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc12_due_to_emission", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_halon1202_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1211_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1301_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon2402_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcc140a_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc141b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc142b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc22_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_emission", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_limonene_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_methanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_bromide_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_chloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_monoterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_land_use_or_land_cover_change", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_soil", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition_into_stomata", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_peroxyacetyl_nitrate_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_peroxynitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_radon_due_to_emission", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sesquiterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_aqueous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_gaseous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_trimethylbenzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_water_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_deep_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_shallow_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_turbulence", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_per_unit_area", "tendency_of_atmosphere_mass_per_unit_area_due_to_advection", "tendency_of_atmosphere_mole_concentration_of_carbon_monoxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_nitrous_oxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_production", "tendency_of_atmosphere_moles_of_acetic_acid", "tendency_of_atmosphere_moles_of_aceto_nitrile", "tendency_of_atmosphere_moles_of_alpha_hexachlorocyclohexane", "tendency_of_atmosphere_moles_of_alpha_pinene", "tendency_of_atmosphere_moles_of_ammonia", "tendency_of_atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_atomic_bromine", "tendency_of_atmosphere_moles_of_atomic_chlorine", "tendency_of_atmosphere_moles_of_atomic_nitrogen", "tendency_of_atmosphere_moles_of_benzene", "tendency_of_atmosphere_moles_of_beta_pinene", "tendency_of_atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_bromine_chloride", "tendency_of_atmosphere_moles_of_bromine_monoxide", "tendency_of_atmosphere_moles_of_bromine_nitrate", "tendency_of_atmosphere_moles_of_brox_expressed_as_bromine", "tendency_of_atmosphere_moles_of_butane", "tendency_of_atmosphere_moles_of_carbon_dioxide", "tendency_of_atmosphere_moles_of_carbon_monoxide", "tendency_of_atmosphere_moles_of_carbon_tetrachloride", "tendency_of_atmosphere_moles_of_cfc11", "tendency_of_atmosphere_moles_of_cfc113", "tendency_of_atmosphere_moles_of_cfc113a", "tendency_of_atmosphere_moles_of_cfc114", "tendency_of_atmosphere_moles_of_cfc115", "tendency_of_atmosphere_moles_of_cfc12", "tendency_of_atmosphere_moles_of_chlorine_dioxide", "tendency_of_atmosphere_moles_of_chlorine_monoxide", "tendency_of_atmosphere_moles_of_chlorine_nitrate", "tendency_of_atmosphere_moles_of_clox_expressed_as_chlorine", "tendency_of_atmosphere_moles_of_dichlorine_peroxide", "tendency_of_atmosphere_moles_of_dimethyl_sulfide", "tendency_of_atmosphere_moles_of_dinitrogen_pentoxide", "tendency_of_atmosphere_moles_of_ethane", "tendency_of_atmosphere_moles_of_ethanol", "tendency_of_atmosphere_moles_of_ethene", "tendency_of_atmosphere_moles_of_ethyne", "tendency_of_atmosphere_moles_of_formaldehyde", "tendency_of_atmosphere_moles_of_formic_acid", "tendency_of_atmosphere_moles_of_gaseous_divalent_mercury", "tendency_of_atmosphere_moles_of_gaseous_elemental_mercury", "tendency_of_atmosphere_moles_of_halon1202", "tendency_of_atmosphere_moles_of_halon1211", "tendency_of_atmosphere_moles_of_halon1301", "tendency_of_atmosphere_moles_of_halon2402", "tendency_of_atmosphere_moles_of_hcc140a", "tendency_of_atmosphere_moles_of_hcfc141b", "tendency_of_atmosphere_moles_of_hcfc142b", "tendency_of_atmosphere_moles_of_hcfc22", "tendency_of_atmosphere_moles_of_hexachlorobiphenyl", "tendency_of_atmosphere_moles_of_hox_expressed_as_hydrogen", "tendency_of_atmosphere_moles_of_hydrogen_bromide", "tendency_of_atmosphere_moles_of_hydrogen_chloride", "tendency_of_atmosphere_moles_of_hydrogen_cyanide", "tendency_of_atmosphere_moles_of_hydrogen_peroxide", "tendency_of_atmosphere_moles_of_hydroperoxyl_radical", "tendency_of_atmosphere_moles_of_hydroxyl_radical", "tendency_of_atmosphere_moles_of_hypobromous_acid", "tendency_of_atmosphere_moles_of_hypochlorous_acid", "tendency_of_atmosphere_moles_of_inorganic_bromine", "tendency_of_atmosphere_moles_of_inorganic_chlorine", "tendency_of_atmosphere_moles_of_isoprene", "tendency_of_atmosphere_moles_of_limonene", "tendency_of_atmosphere_moles_of_methane", "tendency_of_atmosphere_moles_of_methanol", "tendency_of_atmosphere_moles_of_methyl_bromide", "tendency_of_atmosphere_moles_of_methyl_chloride", "tendency_of_atmosphere_moles_of_methyl_hydroperoxide", "tendency_of_atmosphere_moles_of_methyl_peroxy_radical", "tendency_of_atmosphere_moles_of_molecular_hydrogen", "tendency_of_atmosphere_moles_of_nitrate_radical", "tendency_of_atmosphere_moles_of_nitric_acid", "tendency_of_atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "tendency_of_atmosphere_moles_of_nitrogen_dioxide", "tendency_of_atmosphere_moles_of_nitrogen_monoxide", "tendency_of_atmosphere_moles_of_nitrous_acid", "tendency_of_atmosphere_moles_of_nitrous_oxide", "tendency_of_atmosphere_moles_of_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_nox_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_noy_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_ozone", "tendency_of_atmosphere_moles_of_peroxyacetyl_nitrate", "tendency_of_atmosphere_moles_of_peroxynitric_acid", "tendency_of_atmosphere_moles_of_propane", "tendency_of_atmosphere_moles_of_propene", "tendency_of_atmosphere_moles_of_radon", "tendency_of_atmosphere_moles_of_sulfate_dry_aerosol_particles", "tendency_of_atmosphere_moles_of_sulfur_dioxide", "tendency_of_atmosphere_moles_of_toluene", "tendency_of_atmosphere_moles_of_water_vapor", "tendency_of_atmosphere_moles_of_xylene", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_potential_energy_content_due_to_advection", "tendency_of_bedrock_altitude", "tendency_of_canopy_water_amount_due_to_evaporation_of_intercepted_precipitation", "tendency_of_change_in_land_ice_amount", "tendency_of_dry_energy_content_of_atmosphere_layer", "tendency_of_dry_static_energy_content_of_atmosphere_layer", "tendency_of_eastward_wind", "tendency_of_eastward_wind_due_to_advection", "tendency_of_eastward_wind_due_to_advection_by_northward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_advection_by_upward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_convection", "tendency_of_eastward_wind_due_to_diffusion", "tendency_of_eastward_wind_due_to_eliassen_palm_flux_divergence", "tendency_of_eastward_wind_due_to_gravity_wave_drag", "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_eastward_wind_due_to_numerical_artefacts", "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_enthalpy_content_of_atmosphere_layer_due_to_advection", "tendency_of_global_average_sea_level_change", "tendency_of_kinetic_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_land_ice_mass", "tendency_of_land_ice_mass_due_to_basal_mass_balance", "tendency_of_land_ice_mass_due_to_calving", "tendency_of_land_ice_mass_due_to_surface_mass_balance", "tendency_of_land_ice_thickness", "tendency_of_mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_dioxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nox_expressed_as_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_deep_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_shallow_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_turbulence", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_convective_cloud_ice_in_air", "tendency_of_mass_fraction_of_convective_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_aggregation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_bergeron_findeisen_process_from_cloud_liquid", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_deposition_and_sublimation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_evaporation_of_melting_ice", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_water_vapor", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_autoconversion", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_bergeron_findeisen_process_to_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_convection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_longwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_pressure_change", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_shortwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_turbulence", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_heterogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_melting_from_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_riming", "tendency_of_middle_atmosphere_moles_of_carbon_monoxide", "tendency_of_middle_atmosphere_moles_of_hcc140a", "tendency_of_middle_atmosphere_moles_of_methane", "tendency_of_middle_atmosphere_moles_of_methyl_bromide", "tendency_of_middle_atmosphere_moles_of_methyl_chloride", "tendency_of_middle_atmosphere_moles_of_molecular_hydrogen", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_dissolved_inorganic_carbon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_iron_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_silicon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_dissolution_from_inorganic_particles", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_scavenging_by_inorganic_particles", "tendency_of_mole_concentration_of_iron_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_and_photolytic_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_destruction", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_calcareous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diatoms", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diazotrophic_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_miscellaneous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_picophytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_nitrate_utilization", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_remineralization", "tendency_of_mole_concentration_of_silicon_in_sea_water_due_to_biological_production", "tendency_of_northward_wind", "tendency_of_northward_wind_due_to_advection", "tendency_of_northward_wind_due_to_convection", "tendency_of_northward_wind_due_to_diffusion", "tendency_of_northward_wind_due_to_gravity_wave_drag", "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_northward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_ocean_barotropic_streamfunction", "tendency_of_ocean_eddy_kinetic_energy_content_due_to_parameterized_eddy_advection", "tendency_of_ocean_mole_content_of_aragonite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_calcite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_deposition_and_fixation_and_runoff", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_fixation", "tendency_of_ocean_mole_content_of_inorganic_carbon", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_iron_due_to_biological_production", "tendency_of_ocean_mole_content_of_iron_due_to_deposition_and_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "tendency_of_ocean_mole_content_of_nitrogen_due_to_biological_production", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_phosphorus_due_to_biological_production", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_silicon_due_to_biological_production", "tendency_of_ocean_potential_energy_content", "tendency_of_ocean_potential_energy_content_due_to_background", "tendency_of_ocean_potential_energy_content_due_to_tides", "tendency_of_potential_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_convection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_diffusion", "tendency_of_sea_ice_amount_due_to_basal_melting", "tendency_of_sea_ice_amount_due_to_congelation_ice_accumulation", "tendency_of_sea_ice_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_sea_ice_amount_due_to_frazil_ice_accumulation_in_leads", "tendency_of_sea_ice_amount_due_to_lateral_growth_of_ice_floes", "tendency_of_sea_ice_amount_due_to_lateral_melting", "tendency_of_sea_ice_amount_due_to_sea_ice_dynamics", "tendency_of_sea_ice_amount_due_to_sea_ice_thermodynamics", "tendency_of_sea_ice_amount_due_to_surface_melting", "tendency_of_sea_ice_area_fraction_due_to_dynamics", "tendency_of_sea_ice_area_fraction_due_to_ridging", "tendency_of_sea_ice_area_fraction_due_to_thermodynamics", "tendency_of_sea_ice_thickness_due_to_dynamics", "tendency_of_sea_ice_thickness_due_to_thermodynamics", "tendency_of_sea_surface_height_above_mean_sea_level", "tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_salinity", "tendency_of_sea_water_salinity_due_to_advection", "tendency_of_sea_water_salinity_due_to_horizontal_mixing", "tendency_of_sea_water_salinity_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_due_to_sea_ice_thermodynamics", "tendency_of_sea_water_salinity_due_to_vertical_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_residual_mean_advection", "tendency_of_sea_water_temperature", "tendency_of_sea_water_temperature_due_to_advection", "tendency_of_sea_water_temperature_due_to_horizontal_mixing", "tendency_of_sea_water_temperature_due_to_parameterized_eddy_advection", "tendency_of_sea_water_temperature_due_to_vertical_mixing", "tendency_of_soil_and_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_soil_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fertilization", "tendency_of_specific_humidity", "tendency_of_specific_humidity_due_to_advection", "tendency_of_specific_humidity_due_to_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_convection", "tendency_of_specific_humidity_due_to_diffusion", "tendency_of_specific_humidity_due_to_model_physics", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_stratiform_precipitation", "tendency_of_surface_air_pressure", "tendency_of_surface_snow_amount", "tendency_of_surface_snow_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_surface_snow_amount_due_to_drifting_into_sea", "tendency_of_surface_snow_amount_due_to_sea_ice_dynamics", "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", "tendency_of_troposphere_moles_of_carbon_monoxide", "tendency_of_troposphere_moles_of_hcc140a", "tendency_of_troposphere_moles_of_hcfc22", "tendency_of_troposphere_moles_of_methane", "tendency_of_troposphere_moles_of_methyl_bromide", "tendency_of_troposphere_moles_of_methyl_chloride", "tendency_of_troposphere_moles_of_molecular_hydrogen", "tendency_of_upward_air_velocity", "tendency_of_upward_air_velocity_due_to_advection", "tendency_of_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_wind_speed_due_to_convection", "tendency_of_wind_speed_due_to_gravity_wave_drag", "thermal_conductivity_of_frozen_ground", "thermal_energy_content_of_surface_snow", "thermodynamic_phase_of_cloud_water_particles_at_cloud_top", "thermosteric_change_in_mean_sea_level", "thermosteric_change_in_sea_surface_height", "thickness_of_convective_rainfall_amount", "thickness_of_convective_snowfall_amount", "thickness_of_ice_on_sea_ice_melt_pond", "thickness_of_liquid_water_cloud", "thickness_of_rainfall_amount", "thickness_of_snowfall_amount", "thickness_of_stratiform_rainfall_amount", "thickness_of_stratiform_snowfall_amount", "thunderstorm_probability", "tidal_sea_surface_height_above_lowest_astronomical_tide", "tidal_sea_surface_height_above_mean_higher_high_water", "tidal_sea_surface_height_above_mean_lower_low_water", "tidal_sea_surface_height_above_mean_low_water_springs", "tidal_sea_surface_height_above_mean_sea_level", "time", "time_of_maximum_flood_depth", "time_sample_difference_due_to_collocation", "time_when_flood_water_falls_below_threshold", "time_when_flood_water_rises_above_threshold", "toa_adjusted_longwave_forcing", "toa_adjusted_radiative_forcing", "toa_adjusted_shortwave_forcing", "toa_bidirectional_reflectance", "toa_brightness_temperature", "toa_brightness_temperature_assuming_clear_sky", "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", "toa_brightness_temperature_of_standard_scene", "toa_cloud_radiative_effect", "toa_incoming_shortwave_flux", "toa_instantaneous_longwave_forcing", "toa_instantaneous_radiative_forcing", "toa_instantaneous_shortwave_forcing", "toa_longwave_cloud_radiative_effect", "toa_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "toa_net_downward_longwave_flux", "toa_net_downward_longwave_flux_assuming_clear_sky", "toa_net_downward_radiative_flux", "toa_net_downward_shortwave_flux", "toa_net_downward_shortwave_flux_assuming_clear_sky", "toa_net_upward_longwave_flux", "toa_net_upward_longwave_flux_assuming_clear_sky", "toa_net_upward_shortwave_flux", "toa_outgoing_longwave_flux", "toa_outgoing_longwave_flux_assuming_clear_sky", "toa_outgoing_longwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_outgoing_radiance_per_unit_wavelength", "toa_outgoing_radiance_per_unit_wavelength_due_to_solar_induced_fluorescence", "toa_outgoing_radiance_per_unit_wavenumber", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_target", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_target", "toa_outgoing_shortwave_flux", "toa_outgoing_shortwave_flux_assuming_clear_sky", "toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol", "toa_outgoing_shortwave_flux_assuming_no_aerosol", "toa_outgoing_shortwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_shortwave_cloud_radiative_effect", "to_direction_of_air_velocity_relative_to_sea_water", "to_direction_of_surface_downward_stress", "tracer_lifetime", "transpiration_amount", "transpiration_flux", "tropical_cyclone_eye_brightness_temperature", "tropical_cyclone_maximum_sustained_wind_speed", "tropopause_adjusted_longwave_forcing", "tropopause_adjusted_radiative_forcing", "tropopause_adjusted_shortwave_forcing", "tropopause_air_pressure", "tropopause_air_temperature", "tropopause_altitude", "tropopause_downwelling_longwave_flux", "tropopause_instantaneous_longwave_forcing", "tropopause_instantaneous_radiative_forcing", "tropopause_instantaneous_shortwave_forcing", "tropopause_net_downward_longwave_flux", "tropopause_net_downward_shortwave_flux", "tropopause_upwelling_shortwave_flux", "troposphere_mole_content_of_bromine_monoxide", "troposphere_mole_content_of_formaldehyde", "troposphere_mole_content_of_glyoxal", "troposphere_mole_content_of_iodine_monoxide", "troposphere_mole_content_of_nitrogen_dioxide", "troposphere_mole_content_of_ozone", "troposphere_mole_content_of_sulfur_dioxide", "turbulent_mixing_length_of_sea_water", "ultraviolet_index", "ultraviolet_index_assuming_clear_sky", "ultraviolet_index_assuming_overcast_sky", "upward_air_velocity", "upward_derivative_of_eastward_wind", "upward_derivative_of_northward_wind", "upward_derivative_of_wind_from_direction", "upward_dry_static_energy_flux_due_to_diffusion", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_eastward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_westward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_orographic_gravity_waves", "upward_eastward_stress_at_sea_ice_base", "upward_eliassen_palm_flux_in_air", "upward_geothermal_heat_flux_at_ground_level_in_land_ice", "upward_geothermal_heat_flux_at_sea_floor", "upward_heat_flux_at_ground_level_in_snow", "upward_heat_flux_at_ground_level_in_soil", "upward_heat_flux_in_air", "upward_heat_flux_in_sea_water_due_to_convection", "upward_latent_heat_flux_in_air", "upward_mass_flux_of_air", "upward_northward_stress_at_sea_ice_base", "upward_ocean_mass_transport", "upward_sea_ice_basal_heat_flux", "upward_sea_water_velocity", "upward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "upward_sensible_heat_flux_in_air", "upward_transformed_eulerian_mean_air_velocity", "upward_upward_derivative_of_geopotential", "upward_water_vapor_flux_in_air", "upward_water_vapor_flux_in_air_due_to_diffusion", "upward_x_stress_at_sea_ice_base", "upward_y_stress_at_sea_ice_base", "upwelling_longwave_flux_in_air", "upwelling_longwave_flux_in_air_assuming_clear_sky", "upwelling_longwave_radiance_in_air", "upwelling_radiance_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "upwelling_shortwave_flux_in_air", "upwelling_shortwave_flux_in_air_assuming_clear_sky", "upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "upwelling_shortwave_radiance_in_air", "vegetation_area_fraction", "vegetation_carbon_content", "vegetation_mass_content_of_13C", "vegetation_mass_content_of_14C", "vegetation_mass_content_of_nitrogen", "vertical_component_of_ocean_xy_tracer_diffusivity", "vertical_navigation_clearance_above_waterway_surface", "virtual_salt_flux_correction", "virtual_salt_flux_into_sea_water", "virtual_salt_flux_into_sea_water_due_to_evaporation", "virtual_salt_flux_into_sea_water_due_to_newtonian_relaxation", "virtual_salt_flux_into_sea_water_due_to_rainfall", "virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "virtual_salt_flux_into_sea_water_from_rivers", "virtual_temperature", "visibility_in_air", "volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles", "volume_absorption_coefficient_of_radiative_flux_in_sea_water", "volume_absorption_coefficient_of_radiative_flux_in_sea_water_due_to_dissolved_organic_matter", "volume_attenuated_backwards_scattering_function_in_air", "volume_attenuated_backwards_scattering_function_in_air_assuming_no_aerosol_or_cloud", "volume_attenuation_coefficient_of_downwelling_radiative_flux_in_sea_water", "volume_backwards_scattering_coefficient_in_air_due_to_dried_aerosol_particles", "volume_backwards_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water_corrected_for_pure_water_attenuance", "volume_extinction_coefficient_in_air_due_to_ambient_aerosol_particles", "volume_extinction_coefficient_in_air_due_to_cloud_particles", "volume_fraction_of_clay_in_soil", "volume_fraction_of_condensed_water_in_soil", "volume_fraction_of_condensed_water_in_soil_at_critical_point", "volume_fraction_of_condensed_water_in_soil_at_field_capacity", "volume_fraction_of_condensed_water_in_soil_at_wilting_point", "volume_fraction_of_condensed_water_in_soil_pores", "volume_fraction_of_frozen_water_in_soil", "volume_fraction_of_oxygen_in_sea_water", "volume_fraction_of_sand_in_soil", "volume_fraction_of_silt_in_soil", "volume_mixing_ratio_of_oxygen_at_stp_in_sea_water", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_dried_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_scattering_function_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_function_of_radiative_flux_in_sea_water", "water_evaporation_amount", "water_evaporation_amount_from_canopy", "water_evaporation_flux_from_canopy", "water_evaporation_flux_from_soil", "water_evapotranspiration_flux", "water_flux_correction", "water_flux_into_sea_water", "water_flux_into_sea_water_due_to_sea_ice_thermodynamics", "water_flux_into_sea_water_due_to_surface_drainage", "water_flux_into_sea_water_from_icebergs", "water_flux_into_sea_water_from_land_ice", "water_flux_into_sea_water_from_rivers", "water_flux_into_sea_water_from_rivers_and_surface_downward_water_flux", "water_flux_into_sea_water_without_flux_correction", "water_flux_out_of_sea_ice_and_sea_water", "water_flux_out_of_sea_water", "water_flux_out_of_sea_water_due_to_newtonian_relaxation", "water_flux_out_of_sea_water_due_to_sea_ice_thermodynamics", "water_potential_evaporation_amount", "water_potential_evaporation_flux", "water_sublimation_flux", "water_surface_height_above_reference_datum", "water_surface_reference_datum_altitude", "water_table_depth", "water_vapor_partial_pressure_in_air", "water_vapor_saturation_deficit_in_air", "water_volume_transport_in_river_channel", "water_volume_transport_into_sea_water_from_rivers", "wave_frequency", "westward_upward_derivative_of_geopotential", "westward_westward_derivative_of_geopotential", "wet_bulb_potential_temperature", "wet_bulb_temperature", "wind_chill_of_air_temperature", "wind_from_direction", "wind_gust_from_direction", "wind_mixing_energy_flux_into_sea_water", "wind_speed", "wind_speed_of_gust", "wind_speed_shear", "wind_to_direction", "wood_debris_mass_content_of_carbon", "wood_debris_mass_content_of_nitrogen", "x_derivative_of_ocean_rigid_lid_pressure", "x_heat_flux_in_sea_water_due_to_advection", "x_wind", "x_wind_gust", "y_derivative_of_ocean_rigid_lid_pressure", "y_heat_flux_in_sea_water_due_to_advection", "y_wind", "y_wind_gust", "zenith_angle"], "description": "Options", "index": [0], "layout": "IPY_MODEL_1dc833a4319c46b1978bb2138da29f41", "rows": 10, "style": "IPY_MODEL_4c09d675f61041bcbce501c3c25f3e32"}}, "bf14e632c80b4162a4ccb173b413690b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextStyleModel", "state": {"description_width": "", "font_size": null, "text_color": null}}, "c5e0e2ec8f234b409c5888bc6f89c74e": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", "air_pseudo_equivalent_potential_temperature", "air_pseudo_equivalent_temperature", "air_temperature", "air_temperature_anomaly", "air_temperature_at_cloud_top", "air_temperature_at_effective_cloud_top_defined_by_infrared_radiation", "air_temperature_lapse_rate", "air_temperature_threshold", "apparent_air_temperature", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "canopy_temperature", "change_over_time_in_sea_water_conservative_temperature", "change_over_time_in_sea_water_potential_temperature", "change_over_time_in_sea_water_temperature", "covariance_over_longitude_of_northward_wind_and_air_temperature", "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", "depth_at_shallowest_isotherm_defined_by_soil_temperature", "depth_of_isosurface_of_sea_water_potential_temperature", "dew_point_temperature", "difference_between_sea_surface_temperature_and_air_temperature", "dynamic_tropopause_potential_temperature", "fire_temperature", "freezing_temperature_of_sea_water", "heat_index_of_air_temperature", "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", "integral_wrt_depth_of_sea_water_temperature", "integral_wrt_time_of_air_temperature_deficit", "integral_wrt_time_of_air_temperature_excess", "land_ice_basal_temperature", "land_ice_temperature", "number_of_days_with_air_temperature_above_threshold", "number_of_days_with_air_temperature_below_threshold", "number_of_days_with_surface_temperature_below_threshold", "ocean_mixed_layer_thickness_defined_by_temperature", "product_of_air_temperature_and_specific_humidity", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_eastward_wind_and_air_temperature", "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", "product_of_northward_sea_water_velocity_and_temperature", "product_of_northward_wind_and_air_temperature", "product_of_upward_air_velocity_and_air_temperature", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "sea_ice_basal_temperature", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_surface_foundation_temperature", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_temperature", "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", "sea_water_conservative_temperature", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_redistributed_conservative_temperature", "sea_water_redistributed_potential_temperature", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "soil_temperature", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", "square_of_air_temperature", "square_of_sea_surface_temperature", "surface_brightness_temperature", "surface_temperature", "surface_temperature_anomaly", "temperature_at_base_of_ice_sheet_model", "temperature_at_top_of_ice_sheet_model", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically_from_the_surface", "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "tendency_of_air_temperature", "tendency_of_air_temperature_due_to_advection", "tendency_of_air_temperature_due_to_boundary_layer_mixing", "tendency_of_air_temperature_due_to_convection", "tendency_of_air_temperature_due_to_diabatic_processes", "tendency_of_air_temperature_due_to_diffusion", "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", "tendency_of_air_temperature_due_to_dry_convection", "tendency_of_air_temperature_due_to_longwave_heating", "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_model_physics", "tendency_of_air_temperature_due_to_moist_convection", "tendency_of_air_temperature_due_to_radiative_heating", "tendency_of_air_temperature_due_to_shortwave_heating", "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_air_temperature_due_to_stratiform_precipitation", "tendency_of_air_temperature_due_to_turbulence", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_temperature", "tendency_of_sea_water_temperature_due_to_advection", "tendency_of_sea_water_temperature_due_to_horizontal_mixing", "tendency_of_sea_water_temperature_due_to_parameterized_eddy_advection", "tendency_of_sea_water_temperature_due_to_vertical_mixing", "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", "toa_brightness_temperature", "toa_brightness_temperature_assuming_clear_sky", "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", "toa_brightness_temperature_of_standard_scene", "tropical_cyclone_eye_brightness_temperature", "tropopause_air_temperature", "virtual_temperature", "wet_bulb_potential_temperature", "wet_bulb_temperature", "wind_chill_of_air_temperature"], "description": "Options", "index": [0], "layout": "IPY_MODEL_32aa7a5751dd4626903545a453f95767", "rows": 10, "style": "IPY_MODEL_88102ffcd5944311b5ccc7448d867782"}}, "caf488c47ac04dd08574aecb2c589090": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["acoustic_signal_roundtrip_travel_time_in_sea_water", "aerodynamic_particle_diameter", "aggregate_quality_flag", "air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", "air_pseudo_equivalent_potential_temperature", "air_pseudo_equivalent_temperature", "air_temperature", "air_temperature_anomaly", "air_temperature_at_cloud_top", "air_temperature_at_effective_cloud_top_defined_by_infrared_radiation", "air_temperature_lapse_rate", "air_temperature_threshold", "altimeter_range", "altimeter_range_correction_due_to_dry_troposphere", "altimeter_range_correction_due_to_ionosphere", "altimeter_range_correction_due_to_wet_troposphere", "apparent_air_temperature", "atmosphere_absorption_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_convective_available_potential_energy", "atmosphere_convective_available_potential_energy_wrt_surface", "atmosphere_dry_energy_content", "atmosphere_dry_static_energy_content", "atmosphere_energy_content", "atmosphere_enthalpy_content", "atmosphere_horizontal_velocity_potential", "atmosphere_hybrid_height_coordinate", "atmosphere_hybrid_sigma_pressure_coordinate", "atmosphere_kinetic_energy_content", "atmosphere_layer_thickness_expressed_as_geopotential_height_difference", "atmosphere_ln_pressure_coordinate", "atmosphere_mass_content_of_acetic_acid", "atmosphere_mass_content_of_aceto_nitrile", "atmosphere_mass_content_of_alkanes", "atmosphere_mass_content_of_alkenes", "atmosphere_mass_content_of_alpha_hexachlorocyclohexane", "atmosphere_mass_content_of_alpha_pinene", "atmosphere_mass_content_of_ammonia", "atmosphere_mass_content_of_ammonium_dry_aerosol_particles", "atmosphere_mass_content_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_aromatic_compounds", "atmosphere_mass_content_of_atomic_bromine", "atmosphere_mass_content_of_atomic_chlorine", "atmosphere_mass_content_of_atomic_nitrogen", "atmosphere_mass_content_of_benzene", "atmosphere_mass_content_of_beta_pinene", "atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_bromine_chloride", "atmosphere_mass_content_of_bromine_monoxide", "atmosphere_mass_content_of_bromine_nitrate", "atmosphere_mass_content_of_brox_expressed_as_bromine", "atmosphere_mass_content_of_butane", "atmosphere_mass_content_of_carbon_dioxide", "atmosphere_mass_content_of_carbon_monoxide", "atmosphere_mass_content_of_carbon_tetrachloride", "atmosphere_mass_content_of_cfc11", "atmosphere_mass_content_of_cfc113", "atmosphere_mass_content_of_cfc113a", "atmosphere_mass_content_of_cfc114", "atmosphere_mass_content_of_cfc115", "atmosphere_mass_content_of_cfc12", "atmosphere_mass_content_of_chlorine_dioxide", "atmosphere_mass_content_of_chlorine_monoxide", "atmosphere_mass_content_of_chlorine_nitrate", "atmosphere_mass_content_of_cloud_condensed_water", "atmosphere_mass_content_of_cloud_ice", "atmosphere_mass_content_of_cloud_liquid_water", "atmosphere_mass_content_of_clox_expressed_as_chlorine", "atmosphere_mass_content_of_convective_cloud_condensed_water", "atmosphere_mass_content_of_convective_cloud_ice", "atmosphere_mass_content_of_convective_cloud_liquid_water", "atmosphere_mass_content_of_dichlorine_peroxide", "atmosphere_mass_content_of_dimethyl_sulfide", "atmosphere_mass_content_of_dinitrogen_pentoxide", "atmosphere_mass_content_of_dust_dry_aerosol_particles", "atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles", "atmosphere_mass_content_of_ethane", "atmosphere_mass_content_of_ethanol", "atmosphere_mass_content_of_ethene", "atmosphere_mass_content_of_ethyne", "atmosphere_mass_content_of_formaldehyde", "atmosphere_mass_content_of_formic_acid", "atmosphere_mass_content_of_gaseous_divalent_mercury", "atmosphere_mass_content_of_gaseous_elemental_mercury", "atmosphere_mass_content_of_graupel", "atmosphere_mass_content_of_graupel_and_hail", "atmosphere_mass_content_of_hail", "atmosphere_mass_content_of_halon1202", "atmosphere_mass_content_of_halon1211", "atmosphere_mass_content_of_halon1301", "atmosphere_mass_content_of_halon2402", "atmosphere_mass_content_of_hcc140a", "atmosphere_mass_content_of_hcfc141b", "atmosphere_mass_content_of_hcfc142b", "atmosphere_mass_content_of_hcfc22", "atmosphere_mass_content_of_hexachlorobiphenyl", "atmosphere_mass_content_of_hox_expressed_as_hydrogen", "atmosphere_mass_content_of_hydrogen_bromide", "atmosphere_mass_content_of_hydrogen_chloride", "atmosphere_mass_content_of_hydrogen_cyanide", "atmosphere_mass_content_of_hydrogen_peroxide", "atmosphere_mass_content_of_hydroperoxyl_radical", "atmosphere_mass_content_of_hydroxyl_radical", "atmosphere_mass_content_of_hypobromous_acid", "atmosphere_mass_content_of_hypochlorous_acid", "atmosphere_mass_content_of_inorganic_bromine", "atmosphere_mass_content_of_inorganic_chlorine", "atmosphere_mass_content_of_isoprene", "atmosphere_mass_content_of_limonene", "atmosphere_mass_content_of_liquid_precipitation", "atmosphere_mass_content_of_mercury_dry_aerosol_particles", "atmosphere_mass_content_of_methane", "atmosphere_mass_content_of_methanol", "atmosphere_mass_content_of_methyl_bromide", "atmosphere_mass_content_of_methyl_chloride", "atmosphere_mass_content_of_methyl_hydroperoxide", "atmosphere_mass_content_of_methyl_peroxy_radical", "atmosphere_mass_content_of_molecular_hydrogen", "atmosphere_mass_content_of_nitrate_dry_aerosol_particles", "atmosphere_mass_content_of_nitrate_radical", "atmosphere_mass_content_of_nitric_acid", "atmosphere_mass_content_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_mass_content_of_nitrogen_monoxide", "atmosphere_mass_content_of_nitrous_acid", "atmosphere_mass_content_of_nitrous_oxide", "atmosphere_mass_content_of_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_nox_expressed_as_nitrogen", "atmosphere_mass_content_of_noy_expressed_as_nitrogen", "atmosphere_mass_content_of_oxygenated_hydrocarbons", "atmosphere_mass_content_of_ozone", "atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_peroxyacetyl_nitrate", "atmosphere_mass_content_of_peroxynitric_acid", "atmosphere_mass_content_of_peroxy_radicals", "atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_propane", "atmosphere_mass_content_of_propene", "atmosphere_mass_content_of_radon", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_expressed_as_cations", "atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_snow", "atmosphere_mass_content_of_sulfate", "atmosphere_mass_content_of_sulfate_ambient_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur", "atmosphere_mass_content_of_sulfur_dioxide", "atmosphere_mass_content_of_terpenes", "atmosphere_mass_content_of_toluene", "atmosphere_mass_content_of_volcanic_ash", "atmosphere_mass_content_of_water", "atmosphere_mass_content_of_water_in_ambient_aerosol_particles", "atmosphere_mass_content_of_water_vapor", "atmosphere_mass_content_of_xylene", "atmosphere_mole_content_of_carbon_monoxide", "atmosphere_mole_content_of_methane", "atmosphere_mole_content_of_nitrogen_dioxide", "atmosphere_mole_content_of_ozone", "atmosphere_mole_content_of_water_vapor", "atmosphere_moles_of_bromine_nitrate", "atmosphere_moles_of_carbon_tetrachloride", "atmosphere_moles_of_chlorine_nitrate", "atmosphere_moles_of_nitrate_radical", "atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_moles_of_peroxyacetyl_nitrate", "atmosphere_moles_of_water_vapor", "atmosphere_net_rate_of_absorption_of_longwave_energy", "atmosphere_net_rate_of_absorption_of_shortwave_energy", "atmosphere_number_content_of_aerosol_particles", "atmosphere_number_content_of_cloud_droplets", "atmosphere_number_content_of_ice_crystals", "atmosphere_optical_thickness_due_to_nitrate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_water_in_ambient_aerosol_particles", "atmosphere_potential_energy_content", "atmosphere_sigma_coordinate", "atmosphere_sleve_coordinate", "atmosphere_stability_showalter_index", "atmosphere_upward_absolute_vorticity", "attenuated_signal_test_quality_flag", "automated_tropical_cyclone_forecasting_system_storm_identifier", "backscattering_ratio_in_air", "baroclinic_eastward_sea_water_velocity", "baroclinic_northward_sea_water_velocity", "barotropic_eastward_sea_water_velocity", "barotropic_northward_sea_water_velocity", "barotropic_sea_water_x_velocity", "barotropic_sea_water_y_velocity", "beam_consistency_indicator_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "bioluminescent_photon_rate_in_sea_water", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "canopy_and_surface_water_amount", "canopy_temperature", "canopy_water_amount", "carbon_mass_content_of_forestry_and_agricultural_products", "carbon_mass_flux_into_litter_and_soil_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_soil_from_litter", "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", "change_in_atmosphere_energy_content_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_energy_content_of_atmosphere_layer_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_over_time_in_atmosphere_mass_content_of_water_due_to_advection", "change_over_time_in_canopy_water_amount", "change_over_time_in_groundwater_amount", "change_over_time_in_land_surface_liquid_water_amount", "change_over_time_in_land_water_amount", "change_over_time_in_mass_content_of_water_in_soil", "change_over_time_in_river_water_amount", "change_over_time_in_sea_water_absolute_salinity", "change_over_time_in_sea_water_conservative_temperature", "change_over_time_in_sea_water_density", "change_over_time_in_sea_water_neutral_density", "change_over_time_in_sea_water_potential_density", "change_over_time_in_sea_water_potential_temperature", "change_over_time_in_sea_water_practical_salinity", "change_over_time_in_sea_water_preformed_salinity", "change_over_time_in_sea_water_salinity", "change_over_time_in_sea_water_specific_potential_enthalpy", "change_over_time_in_sea_water_temperature", "change_over_time_in_thermal_energy_content_of_ice_and_snow_on_land", "change_over_time_in_thermal_energy_content_of_vegetation_and_litter_and_soil", "climatology_test_quality_flag", "cloud_liquid_water_mixing_ratio", "colony_forming_unit_number_concentration_of_biological_taxon_in_sea_water", "concentration_of_colored_dissolved_organic_matter_in_sea_water_expressed_as_equivalent_mass_fraction_of_quinine_sulfate_dihydrate", "convective_precipitation_rate", "convective_rainfall_rate", "coriolis_parameter", "covariance_over_longitude_of_northward_wind_and_air_temperature", "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", "depth_at_shallowest_isotherm_defined_by_soil_temperature", "depth_at_shallowest_local_minimum_in_vertical_profile_of_mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "depth_of_isosurface_of_sea_water_potential_temperature", "dew_point_temperature", "diameter_of_ambient_aerosol_particles", "difference_between_sea_surface_temperature_and_air_temperature", "distance_from_geocenter", "distance_from_tropical_cyclone_center_to_leading_edge_of_displaced_convection", "downward_liquid_water_mass_flux_into_groundwater", "downward_water_vapor_flux_in_air_due_to_diffusion", "downward_x_stress_at_sea_water_surface", "downward_x_stress_correction_at_sea_water_surface", "downward_y_stress_at_sea_water_surface", "downward_y_stress_correction_at_sea_water_surface", "downwelling_photon_flux_in_sea_water", "downwelling_photon_flux_per_unit_wavelength_in_sea_water", "downwelling_photon_radiance_in_sea_water", "downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "downwelling_photon_spherical_irradiance_in_sea_water", "downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "downwelling_photosynthetic_photon_flux_in_sea_water", "downwelling_photosynthetic_photon_radiance_in_sea_water", "downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "downwelling_photosynthetic_radiance_in_sea_water", "downwelling_photosynthetic_radiative_flux_in_sea_water", "downwelling_photosynthetic_spherical_irradiance_in_sea_water", "downwelling_radiance_in_sea_water", "downwelling_radiance_per_unit_wavelength_in_sea_water", "downwelling_radiative_flux_in_sea_water", "downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "downwelling_shortwave_flux_in_sea_water", "downwelling_shortwave_flux_in_sea_water_at_sea_ice_base", "downwelling_spherical_irradiance_in_sea_water", "downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "dry_energy_content_of_atmosphere_layer", "dry_static_energy_content_of_atmosphere_layer", "dvorak_tropical_cyclone_current_intensity_number", "dynamic_tropopause_potential_temperature", "eastward_air_velocity_relative_to_sea_water", "eastward_atmosphere_water_transport_across_unit_distance", "eastward_atmosphere_water_vapor_transport_across_unit_distance", "eastward_flood_water_velocity", "eastward_sea_water_velocity", "eastward_sea_water_velocity_assuming_no_tide", "eastward_sea_water_velocity_at_sea_floor", "eastward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "eastward_sea_water_velocity_due_to_tides", "eastward_water_vapor_flux_in_air", "eastward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "effective_radius_of_cloud_condensed_water_particles_at_cloud_top", "effective_radius_of_cloud_liquid_water_particles", "effective_radius_of_cloud_liquid_water_particles_at_liquid_water_cloud_top", "effective_radius_of_convective_cloud_liquid_water_particles", "effective_radius_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "effective_radius_of_stratiform_cloud_liquid_water_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "electrical_mobility_diameter_of_ambient_aerosol_particles", "enthalpy_content_of_atmosphere_layer", "equivalent_pressure_of_atmosphere_ozone_content", "equivalent_thickness_at_stp_of_atmosphere_ozone_content", "ertel_potential_vorticity", "fast_soil_pool_mass_content_of_carbon", "final_air_pressure_of_lifted_parcel", "fire_temperature", "flat_line_test_quality_flag", "flood_water_duration_above_threshold", "flood_water_speed", "flood_water_thickness", "fractional_saturation_of_oxygen_in_sea_water", "freezing_temperature_of_sea_water", "frozen_water_content_of_soil_layer", "fugacity_of_carbon_dioxide_in_sea_water", "gap_test_quality_flag", "geopotential", "geopotential_height", "geopotential_height_anomaly", "geopotential_height_at_cloud_top", "geopotential_height_at_volcanic_ash_cloud_top", "geostrophic_eastward_sea_water_velocity", "geostrophic_northward_sea_water_velocity", "global_average_steric_sea_level_change", "global_average_thermosteric_sea_level_change", "gross_range_test_quality_flag", "gross_rate_of_decrease_in_area_fraction", "gross_rate_of_increase_in_area_fraction", "halosteric_change_in_mean_sea_level", "halosteric_change_in_sea_surface_height", "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", "heat_flux_into_sea_water_due_to_newtonian_relaxation", "heat_flux_into_sea_water_due_to_sea_ice_thermodynamics", "heat_flux_into_sea_water_due_to_snow_thermodynamics", "heat_index_of_air_temperature", "height_above_geopotential_datum", "height_above_geopotential_datum_at_top_of_atmosphere_model", "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid", "incoming_water_volume_transport_along_river_channel", "indicative_error_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_salinity_and_sea_water_density", "integral_wrt_depth_of_sea_water_practical_salinity", "integral_wrt_depth_of_sea_water_temperature", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "integral_wrt_height_of_product_of_eastward_wind_and_specific_humidity", "integral_wrt_height_of_product_of_northward_wind_and_specific_humidity", "integral_wrt_time_of_air_temperature_deficit", "integral_wrt_time_of_air_temperature_excess", "integral_wrt_time_of_mole_stomatal_uptake_of_ozone", "integral_wrt_time_of_radioactivity_concentration_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_104Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_110mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_11C_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_136Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_139Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_13N_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_145Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_150Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_153Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_154Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_157Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_158Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_15O_in_air", "integral_wrt_time_of_radioactivity_concentration_of_160Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_161Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162mTb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_163Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_165Dy_in_air", "integral_wrt_time_of_radioactivity_concentration_of_18F_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Hg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207mPb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_208Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_220Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_224Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234mPa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m1Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m2Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244mAm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_246Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_247Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_248Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_24Na_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_251Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_252Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254mEs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_255Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_3H_in_air", "integral_wrt_time_of_radioactivity_concentration_of_41Ar_in_air", "integral_wrt_time_of_radioactivity_concentration_of_54Mn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_58Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_60Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Zn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_73Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_75Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77mGe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_79Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86mRb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_96Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_98Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Tc_in_air", "integral_wrt_time_of_surface_downward_eastward_stress", "integral_wrt_time_of_surface_downward_latent_heat_flux", "integral_wrt_time_of_surface_downward_northward_stress", "integral_wrt_time_of_surface_downward_sensible_heat_flux", "integral_wrt_time_of_surface_downwelling_longwave_flux_in_air", "integral_wrt_time_of_surface_downwelling_shortwave_flux_in_air", "integral_wrt_time_of_surface_net_downward_longwave_flux", "integral_wrt_time_of_surface_net_downward_shortwave_flux", "integral_wrt_time_of_toa_net_downward_shortwave_flux", "integral_wrt_time_of_toa_outgoing_longwave_flux", "isotope_ratio_of_17O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotope_ratio_of_18O_to_16O_in_sea_water_excluding_solutes_and_solids", "kinetic_energy_content_of_atmosphere_layer", "lagrangian_tendency_of_air_pressure", "lagrangian_tendency_of_atmosphere_sigma_coordinate", "land_ice_basal_melt_rate", "land_ice_basal_temperature", "land_ice_calving_rate", "land_ice_lwe_basal_melt_rate", "land_ice_lwe_calving_rate", "land_ice_lwe_surface_specific_mass_balance_rate", "land_ice_mass_not_displacing_sea_water", "land_ice_sigma_coordinate", "land_ice_surface_specific_mass_balance_rate", "land_ice_temperature", "land_surface_liquid_water_amount", "land_water_amount", "leaf_mass_content_of_carbon", "leaf_mass_content_of_nitrogen", "lightning_potential_index", "liquid_water_cloud_area_fraction", "liquid_water_cloud_area_fraction_in_atmosphere_layer", "liquid_water_content_of_permafrost_layer", "liquid_water_content_of_soil_layer", "liquid_water_content_of_surface_snow", "liquid_water_mass_flux_into_soil_due_to_surface_snow_melt", "litter_mass_content_of_13C", "litter_mass_content_of_14C", "litter_mass_content_of_carbon", "litter_mass_content_of_nitrogen", "location_test_quality_flag", "log10_size_interval_based_number_size_distribution_of_cloud_condensation_nuclei_at_stp_in_air", "lwe_convective_precipitation_rate", "lwe_convective_snowfall_rate", "lwe_precipitation_rate", "lwe_snowfall_rate", "lwe_stratiform_precipitation_rate", "lwe_stratiform_snowfall_rate", "lwe_thickness_of_atmosphere_mass_content_of_water_vapor", "lwe_thickness_of_canopy_water_amount", "lwe_thickness_of_frozen_water_content_of_soil_layer", "lwe_thickness_of_moisture_content_of_soil_layer", "lwe_thickness_of_soil_moisture_content", "lwe_thickness_of_water_evaporation_amount", "lwe_water_evaporation_rate", "magnitude_of_air_velocity_relative_to_sea_water", "magnitude_of_derivative_of_position_wrt_x_coordinate_index", "magnitude_of_derivative_of_position_wrt_y_coordinate_index", "magnitude_of_heat_flux_in_sea_water_due_to_advection", "mass_concentration_of_19_butanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_19_hexanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_adenosine_triphosphate_in_sea_water", "mass_concentration_of_alpha_carotene_in_sea_water", "mass_concentration_of_beta_carotene_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_bromine_nitrate_in_air", "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_carbon_tetrachloride_in_air", "mass_concentration_of_carotene_in_sea_water", "mass_concentration_of_chlorine_nitrate_in_air", "mass_concentration_of_chlorophyll_a_in_sea_water", "mass_concentration_of_chlorophyll_b_in_sea_water", "mass_concentration_of_chlorophyll_c1_and_chlorophyll_c2_in_sea_water", "mass_concentration_of_chlorophyll_c3_in_sea_water", "mass_concentration_of_chlorophyll_c_in_sea_water", "mass_concentration_of_chlorophyllide_a_in_sea_water", "mass_concentration_of_chlorophyll_in_sea_water", "mass_concentration_of_cloud_liquid_water_in_air", "mass_concentration_of_condensed_water_in_soil", "mass_concentration_of_diadinoxanthin_in_sea_water", "mass_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_divinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_flagellates_expressed_as_carbon_in_sea_water", "mass_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_fucoxanthin_in_sea_water", "mass_concentration_of_inorganic_nitrogen_in_sea_water", "mass_concentration_of_liquid_water_in_air", "mass_concentration_of_lutein_in_sea_water", "mass_concentration_of_microphytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_monovinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_nanophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_nitrate_dry_aerosol_particles_in_air", "mass_concentration_of_nitrate_radical_in_air", "mass_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mass_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_oxygenated_hydrocarbons_in_air", "mass_concentration_of_oxygen_in_sea_water", "mass_concentration_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_peridinin_in_sea_water", "mass_concentration_of_peroxyacetyl_nitrate_in_air", "mass_concentration_of_petroleum_hydrocarbons_in_sea_water", "mass_concentration_of_phaeopigments_in_sea_water", "mass_concentration_of_phosphate_in_sea_water", "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_prasinoxanthin_in_sea_water", "mass_concentration_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_silicate_in_sea_water", "mass_concentration_of_sulfate_ambient_aerosol_particles_in_air", "mass_concentration_of_sulfate_dry_aerosol_particles_in_air", "mass_concentration_of_suspended_matter_in_sea_water", "mass_concentration_of_terpenes_in_air", "mass_concentration_of_violaxanthin_in_sea_water", "mass_concentration_of_water_in_ambient_aerosol_particles_in_air", "mass_concentration_of_water_vapor_in_air", "mass_concentration_of_zeaxanthin_in_sea_water", "mass_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mass_content_of_13C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_14C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_cloud_condensed_water_in_atmosphere_layer", "mass_content_of_cloud_ice_in_atmosphere_layer", "mass_content_of_cloud_liquid_water_in_atmosphere_layer", "mass_content_of_nitrogen_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_water_in_atmosphere_layer", "mass_content_of_water_in_soil", "mass_content_of_water_in_soil_layer", "mass_content_of_water_in_soil_layer_defined_by_root_depth", "mass_content_of_water_vapor_containing_17O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_18O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_single_2H_in_atmosphere_layer", "mass_content_of_water_vapor_in_atmosphere_layer", "mass_flux_of_carbon_into_litter_from_vegetation", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence", "mass_flux_of_carbon_into_sea_water_from_rivers", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_litter_and_soil_due_to_immobilisation_and_remineralization", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil_due_to_leaching_and_runoff", "mass_fraction_of_bromine_nitrate_in_air", "mass_fraction_of_carbon_tetrachloride_in_air", "mass_fraction_of_chlorine_nitrate_in_air", "mass_fraction_of_chlorophyll_a_in_sea_water", "mass_fraction_of_cloud_condensed_water_in_air", "mass_fraction_of_cloud_liquid_water_in_air", "mass_fraction_of_convective_cloud_condensed_water_in_air", "mass_fraction_of_convective_cloud_liquid_water_in_air", "mass_fraction_of_frozen_water_in_soil_moisture", "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_nitrate_radical_in_air", "mass_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_fraction_of_organic_matter_in_soil", "mass_fraction_of_oxygenated_hydrocarbons_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_peroxyacetyl_nitrate_in_air", "mass_fraction_of_pm10_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_shallow_convective_cloud_liquid_water_in_air", "mass_fraction_of_stratiform_cloud_liquid_water_in_air", "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_terpenes_in_air", "mass_fraction_of_unfrozen_water_in_soil_moisture", "mass_fraction_of_water_in_air", "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm2p5_ambient_aerosol_particles_in_air", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_strain_rate", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_stress", "medium_soil_pool_mass_content_of_carbon", "minimum_depth_of_aragonite_undersaturation_in_sea_water", "minimum_depth_of_calcite_undersaturation_in_sea_water", "minus_one_times_water_flux_into_sea_water_from_rivers", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "minus_tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "minus_tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "miscellaneous_living_matter_mass_content_of_carbon", "miscellaneous_living_matter_mass_content_of_nitrogen", "moisture_content_of_soil_layer_at_field_capacity", "mole_concentration_of_adenosine_triphosphate_in_sea_water", "mole_concentration_of_ammonium_in_sea_water", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", "mole_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mole_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_bromine_nitrate_in_air", "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_carbonate_abiotic_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_calcite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_natural_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbon_tetrachloride_in_air", "mole_concentration_of_cfc11_in_sea_water", "mole_concentration_of_cfc12_in_sea_water", "mole_concentration_of_chlorine_nitrate_in_air", "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_dimethyl_sulfide_in_sea_water", "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_abiotic_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_natural_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", "mole_concentration_of_dissolved_iron_in_sea_water", "mole_concentration_of_dissolved_molecular_nitrogen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile", "mole_concentration_of_dissolved_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_carbon_in_sea_water", "mole_concentration_of_dissolved_organic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_phosphorus_in_sea_water", "mole_concentration_of_hydrogen_sulfide_in_sea_water", "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_nitrate_and_nitrite_in_sea_water", "mole_concentration_of_nitrate_in_sea_water", "mole_concentration_of_nitrate_radical_in_air", "mole_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_concentration_of_nitrite_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_matter_expressed_as_carbon_in_sea_water", "mole_concentration_of_particulate_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_nitrogen_in_sea_water", "mole_concentration_of_peroxyacetyl_nitrate_in_air", "mole_concentration_of_phosphate_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water", "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_silicate_in_sea_water", "mole_concentration_of_sulfur_hexafluoride_in_sea_water", "mole_concentration_of_water_vapor_in_air", "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water", "mole_content_of_carbon_monoxide_in_atmosphere_layer", "mole_content_of_methane_in_atmosphere_layer", "mole_content_of_nitrogen_dioxide_in_atmosphere_layer", "mole_content_of_ozone_in_atmosphere_layer", "mole_fraction_of_bromine_nitrate_in_air", "mole_fraction_of_carbon_tetrachloride_in_air", "mole_fraction_of_carbon_tetrafluoride_in_air", "mole_fraction_of_chlorine_nitrate_in_air", "mole_fraction_of_nitrate_radical_in_air", "mole_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_fraction_of_organic_nitrates_in_air", "mole_fraction_of_peroxyacetyl_nitrate_in_air", "mole_fraction_of_water_vapor_in_air", "mole_ratio_of_nitrate_to_phosphate_in_sea_water", "moles_of_cfc11_per_unit_mass_in_sea_water", "moles_of_dissolved_inorganic_carbon_per_unit_mass_in_sea_water", "moles_of_nitrate_and_nitrite_per_unit_mass_in_sea_water", "moles_of_nitrate_per_unit_mass_in_sea_water", "moles_of_nitrite_per_unit_mass_in_sea_water", "moles_of_oxygen_per_unit_mass_in_sea_water", "moles_of_phosphate_per_unit_mass_in_sea_water", "moles_of_silicate_per_unit_mass_in_sea_water", "multi_variate_test_quality_flag", "neighbor_test_quality_flag", "net_downward_shortwave_flux_at_sea_water_surface", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_due_to_nitrate_utilization", "net_primary_production_of_biomass_expressed_as_carbon_per_unit_volume_in_sea_water", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_leaves", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_miscellaneous_living_matter", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_roots", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_wood", "net_rate_of_absorption_of_longwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_ocean_layer", "nitrogen_mass_content_of_forestry_and_agricultural_products", "nitrogen_mass_flux_into_litter_from_vegetation", "nitrogen_mass_flux_into_soil_from_litter", "nitrogen_mass_flux_into_soil_from_vegetation_excluding_litter", "northward_air_velocity_relative_to_sea_water", "northward_atmosphere_water_transport_across_unit_distance", "northward_atmosphere_water_vapor_transport_across_unit_distance", "northward_flood_water_velocity", "northward_northward_derivative_of_geopotential", "northward_ocean_freshwater_transport", "northward_ocean_freshwater_transport_due_to_diffusion", "northward_ocean_freshwater_transport_due_to_gyre", "northward_ocean_freshwater_transport_due_to_overturning", "northward_ocean_freshwater_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_diffusion", "northward_ocean_heat_transport_due_to_parameterized_submesoscale_eddy_advection", "northward_ocean_salt_transport_due_to_parameterized_eddy_advection", "northward_sea_water_velocity", "northward_sea_water_velocity_assuming_no_tide", "northward_sea_water_velocity_at_sea_floor", "northward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "northward_sea_water_velocity_due_to_tides", "northward_upward_derivative_of_geopotential", "northward_water_vapor_flux_in_air", "northward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "northward_westward_derivative_of_geopotential", "nudging_increment_in_mass_content_of_water_in_soil", "number_concentration_of_biological_taxon_in_sea_water", "number_concentration_of_cloud_liquid_water_particles_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air_at_liquid_water_cloud_top", "number_concentration_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "number_concentration_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "number_of_days_with_air_temperature_above_threshold", "number_of_days_with_air_temperature_below_threshold", "number_of_days_with_surface_temperature_below_threshold", "ocean_double_sigma_coordinate", "ocean_heat_x_transport_due_to_parameterized_eddy_advection", "ocean_heat_y_transport_due_to_parameterized_eddy_advection", "ocean_mass_content_of_dissolved_inorganic_carbon", "ocean_mass_content_of_dissolved_organic_carbon", "ocean_mass_content_of_particulate_organic_matter_expressed_as_carbon", "ocean_mass_x_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_mass_y_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "ocean_mixed_layer_thickness_defined_by_temperature", "ocean_montgomery_potential", "ocean_s_coordinate", "ocean_s_coordinate_g1", "ocean_s_coordinate_g2", "ocean_sigma_coordinate", "ocean_sigma_z_coordinate", "ocean_tracer_biharmonic_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "omnidirectional_photosynthetic_spherical_irradiance_in_sea_water", "omnidirectional_spherical_irradiance_per_unit_wavelength_in_sea_water", "original_air_pressure_of_lifted_parcel", "outgoing_water_volume_transport_along_river_channel", "partial_pressure_of_carbon_dioxide_in_sea_water", "partial_pressure_of_methane_in_sea_water", "photolysis_rate_of_molecular_oxygen", "photolysis_rate_of_nitrogen_dioxide", "photolysis_rate_of_ozone", "photolysis_rate_of_ozone_to_1D_oxygen_atom", "platform_heave_rate", "platform_heave_rate_down", "platform_heave_rate_up", "platform_pitch_rate", "platform_pitch_rate_fore_down", "platform_pitch_rate_fore_up", "platform_roll_rate", "platform_roll_rate_starboard_down", "platform_roll_rate_starboard_up", "platform_speed_wrt_sea_water", "platform_surge_rate", "platform_surge_rate_aft", "platform_surge_rate_fore", "platform_sway_rate", "platform_sway_rate_port", "platform_sway_rate_starboard", "platform_yaw_rate", "platform_yaw_rate_fore_port", "platform_yaw_rate_fore_starboard", "potential_energy_content_of_atmosphere_layer", "potential_vorticity_of_atmosphere_layer", "potential_vorticity_of_ocean_layer", "product_of_air_temperature_and_specific_humidity", "product_of_eastward_sea_water_velocity_and_salinity", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_eastward_wind_and_air_temperature", "product_of_eastward_wind_and_geopotential_height", "product_of_eastward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", "product_of_lagrangian_tendency_of_air_pressure_and_geopotential_height", "product_of_lagrangian_tendency_of_air_pressure_and_specific_humidity", "product_of_northward_sea_water_velocity_and_salinity", "product_of_northward_sea_water_velocity_and_temperature", "product_of_northward_wind_and_air_temperature", "product_of_northward_wind_and_geopotential_height", "product_of_northward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_upward_air_velocity_and_air_temperature", "projection_x_angular_coordinate", "projection_x_coordinate", "projection_y_angular_coordinate", "projection_y_coordinate", "proportion_of_acceptable_signal_returns_from_acoustic_instrument_in_sea_water", "radial_sea_water_velocity_away_from_instrument", "radial_sea_water_velocity_toward_instrument", "radial_velocity_of_scatterers_away_from_instrument", "radial_velocity_of_scatterers_toward_instrument", "radioactivity_concentration_of_125mTe_in_air", "radioactivity_concentration_of_127mTe_in_air", "radioactivity_concentration_of_127Te_in_air", "radioactivity_concentration_of_129mTe_in_air", "radioactivity_concentration_of_129Te_in_air", "radioactivity_concentration_of_131mTe_in_air", "radioactivity_concentration_of_131Te_in_air", "radioactivity_concentration_of_132Te_in_air", "radioactivity_concentration_of_133mTe_in_air", "radioactivity_concentration_of_133Te_in_air", "radioactivity_concentration_of_134Te_in_air", "rainfall_rate", "rate_of_change_test_quality_flag", "rate_of_hydroxyl_radical_destruction_due_to_reaction_with_nmvoc", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "ratio_of_sea_water_practical_salinity_anomaly_to_relaxation_timescale", "reference_air_pressure_for_atmosphere_vertical_coordinate", "reference_sea_water_density_for_boussinesq_approximation", "richardson_number_in_sea_water", "root_mass_content_of_carbon", "root_mass_content_of_nitrogen", "salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "salt_flux_into_sea_water_from_rivers", "scattering_angle", "sea_floor_depth_below_geopotential_datum", "sea_ice_basal_drag_coefficient_for_momentum_in_sea_water", "sea_ice_basal_temperature", "sea_ice_extent", "sea_ice_floe_diameter", "sea_ice_mass_content_of_salt", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_ice_x_internal_stress", "sea_ice_y_internal_stress", "sea_surface_foundation_temperature", "sea_surface_height_above_geopotential_datum", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_temperature", "sea_surface_tertiary_swell_wave_directional_spread", "sea_surface_tertiary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_from_direction", "sea_surface_tertiary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_mean_period", "sea_surface_tertiary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_significant_height", "sea_surface_wave_maximum_steepness", "sea_surface_wave_mean_height_of_highest_tenth", "sea_surface_wave_mean_period_of_highest_tenth", "sea_water_absolute_salinity", "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", "sea_water_age_since_surface_contact", "sea_water_alkalinity_expressed_as_mole_equivalent", "sea_water_alkalinity_natural_analogue_expressed_as_mole_equivalent", "sea_water_conservative_temperature", "sea_water_cox_salinity", "sea_water_density", "sea_water_electrical_conductivity", "sea_water_knudsen_salinity", "sea_water_mass", "sea_water_mass_per_unit_area", "sea_water_mass_per_unit_area_expressed_as_thickness", "sea_water_neutral_density", "sea_water_ph_abiotic_analogue_reported_on_total_scale", "sea_water_ph_natural_analogue_reported_on_total_scale", "sea_water_ph_reported_on_total_scale", "sea_water_potential_density", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_practical_salinity", "sea_water_practical_salinity_at_sea_floor", "sea_water_preformed_salinity", "sea_water_pressure", "sea_water_pressure_at_sea_floor", "sea_water_pressure_at_sea_water_surface", "sea_water_pressure_due_to_sea_water", "sea_water_redistributed_conservative_temperature", "sea_water_redistributed_potential_temperature", "sea_water_reference_salinity", "sea_water_salinity", "sea_water_salinity_at_sea_floor", "sea_water_sigma_t", "sea_water_sigma_t_difference", "sea_water_sigma_theta", "sea_water_sigma_theta_difference", "sea_water_specific_potential_enthalpy", "sea_water_speed", "sea_water_speed_at_sea_floor", "sea_water_speed_due_to_tides", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "sea_water_transport_across_line", "sea_water_turbidity", "sea_water_velocity_from_direction", "sea_water_velocity_to_direction", "sea_water_velocity_to_direction_at_sea_floor", "sea_water_velocity_to_direction_due_to_tides", "sea_water_volume", "sea_water_x_velocity", "sea_water_x_velocity_due_to_parameterized_mesoscale_eddies", "sea_water_y_velocity", "sea_water_y_velocity_due_to_parameterized_mesoscale_eddies", "secchi_depth_of_sea_water", "signal_intensity_from_multibeam_acoustic_doppler_velocity_sensor_in_sea_water", "single_scattering_albedo_in_air_due_to_ambient_aerosol_particles", "sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_iron_in_sea_water", "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_organic_nitrogen_in_sea_water", "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", "sinking_mole_flux_of_particulate_silicon_in_sea_water", "slow_soil_pool_mass_content_of_carbon", "soil_frozen_water_content", "soil_mass_content_of_13C", "soil_mass_content_of_14C", "soil_mass_content_of_carbon", "soil_mass_content_of_inorganic_ammonium_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrate_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", "soil_mass_content_of_nitrogen", "soil_moisture_content_at_field_capacity", "soil_pool_carbon_decay_rate", "soil_temperature", "soil_water_ph", "soot_content_of_surface_snow", "sound_intensity_in_air", "sound_intensity_in_water", "sound_intensity_level_in_air", "sound_intensity_level_in_water", "sound_pressure_in_water", "sound_pressure_level_in_water", "specific_gravitational_potential_energy", "specific_heat_capacity_of_sea_water", "specific_kinetic_energy_of_sea_water", "specific_turbulent_kinetic_energy_dissipation_in_sea_water", "specific_turbulent_kinetic_energy_of_sea_water", "speed_of_sound_in_sea_water", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", "spike_test_quality_flag", "square_of_air_temperature", "square_of_brunt_vaisala_frequency_in_sea_water", "square_of_geopotential_height", "square_of_lagrangian_tendency_of_air_pressure", "square_of_sea_surface_temperature", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "steric_change_in_mean_sea_level", "steric_change_in_sea_surface_height", "stratiform_rainfall_rate", "stratosphere_mole_content_of_nitrogen_dioxide", "stratosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "subsurface_litter_mass_content_of_carbon", "subsurface_litter_mass_content_of_nitrogen", "surface_backwards_scattering_coefficient_of_radar_wave", "surface_brightness_temperature", "surface_carbon_dioxide_abiotic_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_natural_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_partial_pressure_difference_between_air_and_sea_water", "surface_carbon_dioxide_partial_pressure_difference_between_sea_water_and_air", "surface_downward_heat_flux_in_sea_water", "surface_downward_latent_heat_flux", "surface_downward_mass_flux_of_water_due_to_irrigation", "surface_downward_water_flux", "surface_downwelling_photon_flux_in_sea_water", "surface_downwelling_photon_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_radiance_in_sea_water", "surface_downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photosynthetic_photon_flux_in_sea_water", "surface_downwelling_photosynthetic_photon_radiance_in_sea_water", "surface_downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photosynthetic_radiance_in_sea_water", "surface_downwelling_photosynthetic_radiative_flux_in_sea_water", "surface_downwelling_photosynthetic_spherical_irradiance_in_sea_water", "surface_downwelling_radiance_in_sea_water", "surface_downwelling_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_radiative_flux_in_sea_water", "surface_downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_spherical_irradiance_in_sea_water", "surface_downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_eastward_sea_water_velocity", "surface_geopotential", "surface_geostrophic_eastward_sea_water_velocity", "surface_geostrophic_eastward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_northward_sea_water_velocity", "surface_geostrophic_northward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_x_velocity", "surface_geostrophic_sea_water_x_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_y_velocity", "surface_geostrophic_sea_water_y_velocity_assuming_mean_sea_level_for_geoid", "surface_height_above_geopotential_datum", "surface_litter_mass_content_of_carbon", "surface_litter_mass_content_of_nitrogen", "surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air", "surface_northward_sea_water_velocity", "surface_partial_pressure_of_carbon_dioxide_abiotic_analogue_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_natural_analogue_in_sea_water", "surface_radioactivity_content", "surface_radioactivity_content_of_101Mo", "surface_radioactivity_content_of_101Tc", "surface_radioactivity_content_of_102Mo", "surface_radioactivity_content_of_102mTc", "surface_radioactivity_content_of_102Tc", "surface_radioactivity_content_of_103mRh", "surface_radioactivity_content_of_103Ru", "surface_radioactivity_content_of_104Tc", "surface_radioactivity_content_of_105mRh", "surface_radioactivity_content_of_105Rh", "surface_radioactivity_content_of_105Ru", "surface_radioactivity_content_of_106mRh", "surface_radioactivity_content_of_106Rh", "surface_radioactivity_content_of_106Ru", "surface_radioactivity_content_of_107mPd", "surface_radioactivity_content_of_107Pd", "surface_radioactivity_content_of_107Rh", "surface_radioactivity_content_of_109mAg", "surface_radioactivity_content_of_109Pd", "surface_radioactivity_content_of_110mAg", "surface_radioactivity_content_of_111Ag", "surface_radioactivity_content_of_111mAg", "surface_radioactivity_content_of_111mCd", "surface_radioactivity_content_of_111mPd", "surface_radioactivity_content_of_111Pd", "surface_radioactivity_content_of_112Ag", "surface_radioactivity_content_of_112Pd", "surface_radioactivity_content_of_113Ag", "surface_radioactivity_content_of_113Cd", "surface_radioactivity_content_of_113mAg", "surface_radioactivity_content_of_113mCd", "surface_radioactivity_content_of_113mIn", "surface_radioactivity_content_of_115Ag", "surface_radioactivity_content_of_115Cd", "surface_radioactivity_content_of_115In", "surface_radioactivity_content_of_115mAg", "surface_radioactivity_content_of_115mCd", "surface_radioactivity_content_of_115mIn", "surface_radioactivity_content_of_116In", "surface_radioactivity_content_of_116mIn", "surface_radioactivity_content_of_117Cd", "surface_radioactivity_content_of_117In", "surface_radioactivity_content_of_117mCd", "surface_radioactivity_content_of_117mIn", "surface_radioactivity_content_of_117mSn", "surface_radioactivity_content_of_118Cd", "surface_radioactivity_content_of_118In", "surface_radioactivity_content_of_118mIn", "surface_radioactivity_content_of_119In", "surface_radioactivity_content_of_119mIn", "surface_radioactivity_content_of_119mSn", "surface_radioactivity_content_of_11C", "surface_radioactivity_content_of_121mSn", "surface_radioactivity_content_of_121Sn", "surface_radioactivity_content_of_123mSn", "surface_radioactivity_content_of_123Sn", "surface_radioactivity_content_of_124mSb", "surface_radioactivity_content_of_124Sb", "surface_radioactivity_content_of_125mTe", "surface_radioactivity_content_of_125Sb", "surface_radioactivity_content_of_125Sn", "surface_radioactivity_content_of_126mSb", "surface_radioactivity_content_of_126Sb", "surface_radioactivity_content_of_126Sn", "surface_radioactivity_content_of_127mTe", "surface_radioactivity_content_of_127Sb", "surface_radioactivity_content_of_127Sn", "surface_radioactivity_content_of_127Te", "surface_radioactivity_content_of_128mSb", "surface_radioactivity_content_of_128Sb", "surface_radioactivity_content_of_128Sn", "surface_radioactivity_content_of_129I", "surface_radioactivity_content_of_129mTe", "surface_radioactivity_content_of_129mXe", "surface_radioactivity_content_of_129Sb", "surface_radioactivity_content_of_129Te", "surface_radioactivity_content_of_130I", "surface_radioactivity_content_of_130mI", "surface_radioactivity_content_of_130mSb", "surface_radioactivity_content_of_130Sb", "surface_radioactivity_content_of_130Sn", "surface_radioactivity_content_of_131I", "surface_radioactivity_content_of_131mTe", "surface_radioactivity_content_of_131mXe", "surface_radioactivity_content_of_131Sb", "surface_radioactivity_content_of_131Te", "surface_radioactivity_content_of_132I", "surface_radioactivity_content_of_132Te", "surface_radioactivity_content_of_133I", "surface_radioactivity_content_of_133mI", "surface_radioactivity_content_of_133mTe", "surface_radioactivity_content_of_133mXe", "surface_radioactivity_content_of_133Te", "surface_radioactivity_content_of_133Xe", "surface_radioactivity_content_of_134Cs", "surface_radioactivity_content_of_134I", "surface_radioactivity_content_of_134mCs", "surface_radioactivity_content_of_134mI", "surface_radioactivity_content_of_134mXe", "surface_radioactivity_content_of_134Te", "surface_radioactivity_content_of_135Cs", "surface_radioactivity_content_of_135I", "surface_radioactivity_content_of_135mBa", "surface_radioactivity_content_of_135mCs", "surface_radioactivity_content_of_135mXe", "surface_radioactivity_content_of_135Xe", "surface_radioactivity_content_of_136Cs", "surface_radioactivity_content_of_137Cs", "surface_radioactivity_content_of_137mBa", "surface_radioactivity_content_of_137Xe", "surface_radioactivity_content_of_138Cs", "surface_radioactivity_content_of_138Xe", "surface_radioactivity_content_of_139Ba", "surface_radioactivity_content_of_13N", "surface_radioactivity_content_of_140Ba", "surface_radioactivity_content_of_140La", "surface_radioactivity_content_of_141Ce", "surface_radioactivity_content_of_141La", "surface_radioactivity_content_of_142Ce", "surface_radioactivity_content_of_142La", "surface_radioactivity_content_of_142mPr", "surface_radioactivity_content_of_142Pr", "surface_radioactivity_content_of_143Ce", "surface_radioactivity_content_of_143La", "surface_radioactivity_content_of_143Pr", "surface_radioactivity_content_of_144Ce", "surface_radioactivity_content_of_144mPr", "surface_radioactivity_content_of_144Nd", "surface_radioactivity_content_of_144Pr", "surface_radioactivity_content_of_145Pr", "surface_radioactivity_content_of_146Ce", "surface_radioactivity_content_of_146Pr", "surface_radioactivity_content_of_147Nd", "surface_radioactivity_content_of_147Pm", "surface_radioactivity_content_of_147Pr", "surface_radioactivity_content_of_147Sm", "surface_radioactivity_content_of_148mPm", "surface_radioactivity_content_of_148Pm", "surface_radioactivity_content_of_148Sm", "surface_radioactivity_content_of_149Nd", "surface_radioactivity_content_of_149Pm", "surface_radioactivity_content_of_149Sm", "surface_radioactivity_content_of_150Pm", "surface_radioactivity_content_of_151Nd", "surface_radioactivity_content_of_151Pm", "surface_radioactivity_content_of_151Sm", "surface_radioactivity_content_of_152mPm", "surface_radioactivity_content_of_152Nd", "surface_radioactivity_content_of_152Pm", "surface_radioactivity_content_of_153Sm", "surface_radioactivity_content_of_154Eu", "surface_radioactivity_content_of_155Eu", "surface_radioactivity_content_of_155Sm", "surface_radioactivity_content_of_156Eu", "surface_radioactivity_content_of_156Sm", "surface_radioactivity_content_of_157Eu", "surface_radioactivity_content_of_158Eu", "surface_radioactivity_content_of_159Eu", "surface_radioactivity_content_of_159Gd", "surface_radioactivity_content_of_15O", "surface_radioactivity_content_of_160Tb", "surface_radioactivity_content_of_161Tb", "surface_radioactivity_content_of_162Gd", "surface_radioactivity_content_of_162mTb", "surface_radioactivity_content_of_162Tb", "surface_radioactivity_content_of_163Tb", "surface_radioactivity_content_of_165Dy", "surface_radioactivity_content_of_18F", "surface_radioactivity_content_of_206Hg", "surface_radioactivity_content_of_206Tl", "surface_radioactivity_content_of_207mPb", "surface_radioactivity_content_of_207Tl", "surface_radioactivity_content_of_208Tl", "surface_radioactivity_content_of_209Bi", "surface_radioactivity_content_of_209Pb", "surface_radioactivity_content_of_209Tl", "surface_radioactivity_content_of_210Bi", "surface_radioactivity_content_of_210Pb", "surface_radioactivity_content_of_210Po", "surface_radioactivity_content_of_210Tl", "surface_radioactivity_content_of_211Bi", "surface_radioactivity_content_of_211Pb", "surface_radioactivity_content_of_211Po", "surface_radioactivity_content_of_212Bi", "surface_radioactivity_content_of_212Pb", "surface_radioactivity_content_of_212Po", "surface_radioactivity_content_of_213Bi", "surface_radioactivity_content_of_213Pb", "surface_radioactivity_content_of_213Po", "surface_radioactivity_content_of_214Bi", "surface_radioactivity_content_of_214Pb", "surface_radioactivity_content_of_214Po", "surface_radioactivity_content_of_215At", "surface_radioactivity_content_of_215Bi", "surface_radioactivity_content_of_215Po", "surface_radioactivity_content_of_216At", "surface_radioactivity_content_of_216Po", "surface_radioactivity_content_of_217At", "surface_radioactivity_content_of_217Po", "surface_radioactivity_content_of_218At", "surface_radioactivity_content_of_218Po", "surface_radioactivity_content_of_218Rn", "surface_radioactivity_content_of_219At", "surface_radioactivity_content_of_219Rn", "surface_radioactivity_content_of_220Rn", "surface_radioactivity_content_of_221Fr", "surface_radioactivity_content_of_221Rn", "surface_radioactivity_content_of_222Fr", "surface_radioactivity_content_of_222Ra", "surface_radioactivity_content_of_222Rn", "surface_radioactivity_content_of_223Fr", "surface_radioactivity_content_of_223Ra", "surface_radioactivity_content_of_223Rn", "surface_radioactivity_content_of_224Ra", "surface_radioactivity_content_of_225Ac", "surface_radioactivity_content_of_225Ra", "surface_radioactivity_content_of_226Ac", "surface_radioactivity_content_of_226Ra", "surface_radioactivity_content_of_226Th", "surface_radioactivity_content_of_227Ac", "surface_radioactivity_content_of_227Ra", "surface_radioactivity_content_of_227Th", "surface_radioactivity_content_of_228Ac", "surface_radioactivity_content_of_228Ra", "surface_radioactivity_content_of_228Th", "surface_radioactivity_content_of_229Ac", "surface_radioactivity_content_of_229Ra", "surface_radioactivity_content_of_229Th", "surface_radioactivity_content_of_230Pa", "surface_radioactivity_content_of_230Th", "surface_radioactivity_content_of_230U", "surface_radioactivity_content_of_231Pa", "surface_radioactivity_content_of_231Th", "surface_radioactivity_content_of_231U", "surface_radioactivity_content_of_232Pa", "surface_radioactivity_content_of_232Th", "surface_radioactivity_content_of_232U", "surface_radioactivity_content_of_233Pa", "surface_radioactivity_content_of_233Th", "surface_radioactivity_content_of_233U", "surface_radioactivity_content_of_234mPa", "surface_radioactivity_content_of_234Pa", "surface_radioactivity_content_of_234Th", "surface_radioactivity_content_of_234U", "surface_radioactivity_content_of_235Np", "surface_radioactivity_content_of_235Pu", "surface_radioactivity_content_of_235U", "surface_radioactivity_content_of_236mNp", "surface_radioactivity_content_of_236Np", "surface_radioactivity_content_of_236Pu", "surface_radioactivity_content_of_236U", "surface_radioactivity_content_of_237Np", "surface_radioactivity_content_of_237Pu", "surface_radioactivity_content_of_237U", "surface_radioactivity_content_of_238Np", "surface_radioactivity_content_of_238Pu", "surface_radioactivity_content_of_238U", "surface_radioactivity_content_of_239Np", "surface_radioactivity_content_of_239Pu", "surface_radioactivity_content_of_239U", "surface_radioactivity_content_of_240Am", "surface_radioactivity_content_of_240mNp", "surface_radioactivity_content_of_240Np", "surface_radioactivity_content_of_240Pu", "surface_radioactivity_content_of_240U", "surface_radioactivity_content_of_241Am", "surface_radioactivity_content_of_241Cm", "surface_radioactivity_content_of_241Pu", "surface_radioactivity_content_of_242Am", "surface_radioactivity_content_of_242Cm", "surface_radioactivity_content_of_242m1Am", "surface_radioactivity_content_of_242m2Am", "surface_radioactivity_content_of_242Pu", "surface_radioactivity_content_of_243Am", "surface_radioactivity_content_of_243Cm", "surface_radioactivity_content_of_243Pu", "surface_radioactivity_content_of_244Am", "surface_radioactivity_content_of_244Cm", "surface_radioactivity_content_of_244mAm", "surface_radioactivity_content_of_244Pu", "surface_radioactivity_content_of_245Am", "surface_radioactivity_content_of_245Cm", "surface_radioactivity_content_of_245Pu", "surface_radioactivity_content_of_246Cm", "surface_radioactivity_content_of_247Cm", "surface_radioactivity_content_of_248Cm", "surface_radioactivity_content_of_249Bk", "surface_radioactivity_content_of_249Cf", "surface_radioactivity_content_of_249Cm", "surface_radioactivity_content_of_24Na", "surface_radioactivity_content_of_250Bk", "surface_radioactivity_content_of_250Cf", "surface_radioactivity_content_of_250Cm", "surface_radioactivity_content_of_251Cf", "surface_radioactivity_content_of_252Cf", "surface_radioactivity_content_of_253Cf", "surface_radioactivity_content_of_253Es", "surface_radioactivity_content_of_254Cf", "surface_radioactivity_content_of_254Es", "surface_radioactivity_content_of_254mEs", "surface_radioactivity_content_of_255Es", "surface_radioactivity_content_of_3H", "surface_radioactivity_content_of_41Ar", "surface_radioactivity_content_of_54Mn", "surface_radioactivity_content_of_58Co", "surface_radioactivity_content_of_60Co", "surface_radioactivity_content_of_72Ga", "surface_radioactivity_content_of_72Zn", "surface_radioactivity_content_of_73Ga", "surface_radioactivity_content_of_75Ge", "surface_radioactivity_content_of_77As", "surface_radioactivity_content_of_77Ge", "surface_radioactivity_content_of_77mGe", "surface_radioactivity_content_of_78As", "surface_radioactivity_content_of_78Ge", "surface_radioactivity_content_of_79Se", "surface_radioactivity_content_of_81mSe", "surface_radioactivity_content_of_81Se", "surface_radioactivity_content_of_82Br", "surface_radioactivity_content_of_82mBr", "surface_radioactivity_content_of_83Br", "surface_radioactivity_content_of_83mKr", "surface_radioactivity_content_of_83mSe", "surface_radioactivity_content_of_83Se", "surface_radioactivity_content_of_84Br", "surface_radioactivity_content_of_84mBr", "surface_radioactivity_content_of_85Kr", "surface_radioactivity_content_of_85mKr", "surface_radioactivity_content_of_86mRb", "surface_radioactivity_content_of_86Rb", "surface_radioactivity_content_of_87Kr", "surface_radioactivity_content_of_87Rb", "surface_radioactivity_content_of_88Kr", "surface_radioactivity_content_of_88Rb", "surface_radioactivity_content_of_89Kr", "surface_radioactivity_content_of_89Rb", "surface_radioactivity_content_of_89Sr", "surface_radioactivity_content_of_90mY", "surface_radioactivity_content_of_90Sr", "surface_radioactivity_content_of_90Y", "surface_radioactivity_content_of_91mY", "surface_radioactivity_content_of_91Sr", "surface_radioactivity_content_of_91Y", "surface_radioactivity_content_of_92Sr", "surface_radioactivity_content_of_92Y", "surface_radioactivity_content_of_93Y", "surface_radioactivity_content_of_93Zr", "surface_radioactivity_content_of_94mNb", "surface_radioactivity_content_of_94Nb", "surface_radioactivity_content_of_94Y", "surface_radioactivity_content_of_95mNb", "surface_radioactivity_content_of_95Nb", "surface_radioactivity_content_of_95Y", "surface_radioactivity_content_of_95Zr", "surface_radioactivity_content_of_96Nb", "surface_radioactivity_content_of_97mNb", "surface_radioactivity_content_of_97Nb", "surface_radioactivity_content_of_97Zr", "surface_radioactivity_content_of_98Nb", "surface_radioactivity_content_of_99Mo", "surface_radioactivity_content_of_99mTc", "surface_radioactivity_content_of_99Tc", "surface_ratio_of_upwelling_radiance_emerging_from_sea_water_to_downwelling_radiative_flux_in_air", "surface_temperature", "surface_temperature_anomaly", "surface_upward_latent_heat_flux", "surface_upward_latent_heat_flux_due_to_sublimation", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_litter_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_maintenance", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_miscellaneous_living_matter", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_litter", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_soil", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_water_flux", "surface_upward_water_vapor_flux_in_air", "surface_upwelling_radiance_in_air_emerging_from_sea_water", "surface_upwelling_radiance_in_air_reflected_by_sea_water", "surface_upwelling_radiance_in_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air_emerging_from_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air_reflected_by_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_sea_water", "surface_upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_water_amount", "surface_water_evaporation_flux", "syntax_test_quality_flag", "temperature_at_base_of_ice_sheet_model", "temperature_at_top_of_ice_sheet_model", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically_from_the_surface", "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "tendency_of_air_density", "tendency_of_air_pressure", "tendency_of_air_temperature", "tendency_of_air_temperature_due_to_advection", "tendency_of_air_temperature_due_to_boundary_layer_mixing", "tendency_of_air_temperature_due_to_convection", "tendency_of_air_temperature_due_to_diabatic_processes", "tendency_of_air_temperature_due_to_diffusion", "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", "tendency_of_air_temperature_due_to_dry_convection", "tendency_of_air_temperature_due_to_longwave_heating", "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_model_physics", "tendency_of_air_temperature_due_to_moist_convection", "tendency_of_air_temperature_due_to_radiative_heating", "tendency_of_air_temperature_due_to_shortwave_heating", "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_air_temperature_due_to_stratiform_precipitation", "tendency_of_air_temperature_due_to_turbulence", "tendency_of_atmosphere_dry_energy_content", "tendency_of_atmosphere_enthalpy_content_due_to_advection", "tendency_of_atmosphere_kinetic_energy_content_due_to_advection", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetone_due_to_emission", "tendency_of_atmosphere_mass_content_of_aceto_nitrile_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alkanes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alkenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alpha_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_aromatic_compounds_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_beta_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_forestry_and_agricultural_products", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_tetrachloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113a_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc114_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc115_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc11_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc12_due_to_emission", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_halon1202_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1211_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1301_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon2402_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcc140a_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc141b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc142b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc22_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_emission", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_limonene_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_methanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_bromide_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_chloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_monoterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_land_use_or_land_cover_change", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_soil", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition_into_stomata", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_peroxyacetyl_nitrate_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_peroxynitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_radon_due_to_emission", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sesquiterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_aqueous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_gaseous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_trimethylbenzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_water_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_deep_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_shallow_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_turbulence", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_per_unit_area", "tendency_of_atmosphere_mass_per_unit_area_due_to_advection", "tendency_of_atmosphere_mole_concentration_of_carbon_monoxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_nitrous_oxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_production", "tendency_of_atmosphere_moles_of_acetic_acid", "tendency_of_atmosphere_moles_of_aceto_nitrile", "tendency_of_atmosphere_moles_of_alpha_hexachlorocyclohexane", "tendency_of_atmosphere_moles_of_alpha_pinene", "tendency_of_atmosphere_moles_of_ammonia", "tendency_of_atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_atomic_bromine", "tendency_of_atmosphere_moles_of_atomic_chlorine", "tendency_of_atmosphere_moles_of_atomic_nitrogen", "tendency_of_atmosphere_moles_of_benzene", "tendency_of_atmosphere_moles_of_beta_pinene", "tendency_of_atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_bromine_chloride", "tendency_of_atmosphere_moles_of_bromine_monoxide", "tendency_of_atmosphere_moles_of_bromine_nitrate", "tendency_of_atmosphere_moles_of_brox_expressed_as_bromine", "tendency_of_atmosphere_moles_of_butane", "tendency_of_atmosphere_moles_of_carbon_dioxide", "tendency_of_atmosphere_moles_of_carbon_monoxide", "tendency_of_atmosphere_moles_of_carbon_tetrachloride", "tendency_of_atmosphere_moles_of_cfc11", "tendency_of_atmosphere_moles_of_cfc113", "tendency_of_atmosphere_moles_of_cfc113a", "tendency_of_atmosphere_moles_of_cfc114", "tendency_of_atmosphere_moles_of_cfc115", "tendency_of_atmosphere_moles_of_cfc12", "tendency_of_atmosphere_moles_of_chlorine_dioxide", "tendency_of_atmosphere_moles_of_chlorine_monoxide", "tendency_of_atmosphere_moles_of_chlorine_nitrate", "tendency_of_atmosphere_moles_of_clox_expressed_as_chlorine", "tendency_of_atmosphere_moles_of_dichlorine_peroxide", "tendency_of_atmosphere_moles_of_dimethyl_sulfide", "tendency_of_atmosphere_moles_of_dinitrogen_pentoxide", "tendency_of_atmosphere_moles_of_ethane", "tendency_of_atmosphere_moles_of_ethanol", "tendency_of_atmosphere_moles_of_ethene", "tendency_of_atmosphere_moles_of_ethyne", "tendency_of_atmosphere_moles_of_formaldehyde", "tendency_of_atmosphere_moles_of_formic_acid", "tendency_of_atmosphere_moles_of_gaseous_divalent_mercury", "tendency_of_atmosphere_moles_of_gaseous_elemental_mercury", "tendency_of_atmosphere_moles_of_halon1202", "tendency_of_atmosphere_moles_of_halon1211", "tendency_of_atmosphere_moles_of_halon1301", "tendency_of_atmosphere_moles_of_halon2402", "tendency_of_atmosphere_moles_of_hcc140a", "tendency_of_atmosphere_moles_of_hcfc141b", "tendency_of_atmosphere_moles_of_hcfc142b", "tendency_of_atmosphere_moles_of_hcfc22", "tendency_of_atmosphere_moles_of_hexachlorobiphenyl", "tendency_of_atmosphere_moles_of_hox_expressed_as_hydrogen", "tendency_of_atmosphere_moles_of_hydrogen_bromide", "tendency_of_atmosphere_moles_of_hydrogen_chloride", "tendency_of_atmosphere_moles_of_hydrogen_cyanide", "tendency_of_atmosphere_moles_of_hydrogen_peroxide", "tendency_of_atmosphere_moles_of_hydroperoxyl_radical", "tendency_of_atmosphere_moles_of_hydroxyl_radical", "tendency_of_atmosphere_moles_of_hypobromous_acid", "tendency_of_atmosphere_moles_of_hypochlorous_acid", "tendency_of_atmosphere_moles_of_inorganic_bromine", "tendency_of_atmosphere_moles_of_inorganic_chlorine", "tendency_of_atmosphere_moles_of_isoprene", "tendency_of_atmosphere_moles_of_limonene", "tendency_of_atmosphere_moles_of_methane", "tendency_of_atmosphere_moles_of_methanol", "tendency_of_atmosphere_moles_of_methyl_bromide", "tendency_of_atmosphere_moles_of_methyl_chloride", "tendency_of_atmosphere_moles_of_methyl_hydroperoxide", "tendency_of_atmosphere_moles_of_methyl_peroxy_radical", "tendency_of_atmosphere_moles_of_molecular_hydrogen", "tendency_of_atmosphere_moles_of_nitrate_radical", "tendency_of_atmosphere_moles_of_nitric_acid", "tendency_of_atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "tendency_of_atmosphere_moles_of_nitrogen_dioxide", "tendency_of_atmosphere_moles_of_nitrogen_monoxide", "tendency_of_atmosphere_moles_of_nitrous_acid", "tendency_of_atmosphere_moles_of_nitrous_oxide", "tendency_of_atmosphere_moles_of_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_nox_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_noy_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_ozone", "tendency_of_atmosphere_moles_of_peroxyacetyl_nitrate", "tendency_of_atmosphere_moles_of_peroxynitric_acid", "tendency_of_atmosphere_moles_of_propane", "tendency_of_atmosphere_moles_of_propene", "tendency_of_atmosphere_moles_of_radon", "tendency_of_atmosphere_moles_of_sulfate_dry_aerosol_particles", "tendency_of_atmosphere_moles_of_sulfur_dioxide", "tendency_of_atmosphere_moles_of_toluene", "tendency_of_atmosphere_moles_of_water_vapor", "tendency_of_atmosphere_moles_of_xylene", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_potential_energy_content_due_to_advection", "tendency_of_bedrock_altitude", "tendency_of_canopy_water_amount_due_to_evaporation_of_intercepted_precipitation", "tendency_of_change_in_land_ice_amount", "tendency_of_dry_energy_content_of_atmosphere_layer", "tendency_of_dry_static_energy_content_of_atmosphere_layer", "tendency_of_eastward_wind", "tendency_of_eastward_wind_due_to_advection", "tendency_of_eastward_wind_due_to_advection_by_northward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_advection_by_upward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_convection", "tendency_of_eastward_wind_due_to_diffusion", "tendency_of_eastward_wind_due_to_eliassen_palm_flux_divergence", "tendency_of_eastward_wind_due_to_gravity_wave_drag", "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_eastward_wind_due_to_numerical_artefacts", "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_enthalpy_content_of_atmosphere_layer_due_to_advection", "tendency_of_global_average_sea_level_change", "tendency_of_kinetic_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_land_ice_mass", "tendency_of_land_ice_mass_due_to_basal_mass_balance", "tendency_of_land_ice_mass_due_to_calving", "tendency_of_land_ice_mass_due_to_surface_mass_balance", "tendency_of_land_ice_thickness", "tendency_of_mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_dioxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nox_expressed_as_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_deep_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_shallow_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_turbulence", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_convective_cloud_ice_in_air", "tendency_of_mass_fraction_of_convective_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_aggregation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_bergeron_findeisen_process_from_cloud_liquid", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_deposition_and_sublimation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_evaporation_of_melting_ice", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_water_vapor", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_autoconversion", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_bergeron_findeisen_process_to_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_convection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_longwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_pressure_change", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_shortwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_turbulence", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_heterogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_melting_from_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_riming", "tendency_of_middle_atmosphere_moles_of_carbon_monoxide", "tendency_of_middle_atmosphere_moles_of_hcc140a", "tendency_of_middle_atmosphere_moles_of_methane", "tendency_of_middle_atmosphere_moles_of_methyl_bromide", "tendency_of_middle_atmosphere_moles_of_methyl_chloride", "tendency_of_middle_atmosphere_moles_of_molecular_hydrogen", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_dissolved_inorganic_carbon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_iron_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_silicon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_dissolution_from_inorganic_particles", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_scavenging_by_inorganic_particles", "tendency_of_mole_concentration_of_iron_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_and_photolytic_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_destruction", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_calcareous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diatoms", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diazotrophic_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_miscellaneous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_picophytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_nitrate_utilization", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_remineralization", "tendency_of_mole_concentration_of_silicon_in_sea_water_due_to_biological_production", "tendency_of_northward_wind", "tendency_of_northward_wind_due_to_advection", "tendency_of_northward_wind_due_to_convection", "tendency_of_northward_wind_due_to_diffusion", "tendency_of_northward_wind_due_to_gravity_wave_drag", "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_northward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_ocean_barotropic_streamfunction", "tendency_of_ocean_eddy_kinetic_energy_content_due_to_parameterized_eddy_advection", "tendency_of_ocean_mole_content_of_aragonite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_calcite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_deposition_and_fixation_and_runoff", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_fixation", "tendency_of_ocean_mole_content_of_inorganic_carbon", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_iron_due_to_biological_production", "tendency_of_ocean_mole_content_of_iron_due_to_deposition_and_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "tendency_of_ocean_mole_content_of_nitrogen_due_to_biological_production", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_phosphorus_due_to_biological_production", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_silicon_due_to_biological_production", "tendency_of_ocean_potential_energy_content", "tendency_of_ocean_potential_energy_content_due_to_background", "tendency_of_ocean_potential_energy_content_due_to_tides", "tendency_of_potential_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_convection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_diffusion", "tendency_of_sea_ice_amount_due_to_basal_melting", "tendency_of_sea_ice_amount_due_to_congelation_ice_accumulation", "tendency_of_sea_ice_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_sea_ice_amount_due_to_frazil_ice_accumulation_in_leads", "tendency_of_sea_ice_amount_due_to_lateral_growth_of_ice_floes", "tendency_of_sea_ice_amount_due_to_lateral_melting", "tendency_of_sea_ice_amount_due_to_sea_ice_dynamics", "tendency_of_sea_ice_amount_due_to_sea_ice_thermodynamics", "tendency_of_sea_ice_amount_due_to_surface_melting", "tendency_of_sea_ice_area_fraction_due_to_dynamics", "tendency_of_sea_ice_area_fraction_due_to_ridging", "tendency_of_sea_ice_area_fraction_due_to_thermodynamics", "tendency_of_sea_ice_thickness_due_to_dynamics", "tendency_of_sea_ice_thickness_due_to_thermodynamics", "tendency_of_sea_surface_height_above_mean_sea_level", "tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_salinity", "tendency_of_sea_water_salinity_due_to_advection", "tendency_of_sea_water_salinity_due_to_horizontal_mixing", "tendency_of_sea_water_salinity_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_due_to_sea_ice_thermodynamics", "tendency_of_sea_water_salinity_due_to_vertical_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_residual_mean_advection", "tendency_of_sea_water_temperature", "tendency_of_sea_water_temperature_due_to_advection", "tendency_of_sea_water_temperature_due_to_horizontal_mixing", "tendency_of_sea_water_temperature_due_to_parameterized_eddy_advection", "tendency_of_sea_water_temperature_due_to_vertical_mixing", "tendency_of_soil_and_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_soil_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fertilization", "tendency_of_specific_humidity", "tendency_of_specific_humidity_due_to_advection", "tendency_of_specific_humidity_due_to_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_convection", "tendency_of_specific_humidity_due_to_diffusion", "tendency_of_specific_humidity_due_to_model_physics", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_stratiform_precipitation", "tendency_of_surface_air_pressure", "tendency_of_surface_snow_amount", "tendency_of_surface_snow_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_surface_snow_amount_due_to_drifting_into_sea", "tendency_of_surface_snow_amount_due_to_sea_ice_dynamics", "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", "tendency_of_troposphere_moles_of_carbon_monoxide", "tendency_of_troposphere_moles_of_hcc140a", "tendency_of_troposphere_moles_of_hcfc22", "tendency_of_troposphere_moles_of_methane", "tendency_of_troposphere_moles_of_methyl_bromide", "tendency_of_troposphere_moles_of_methyl_chloride", "tendency_of_troposphere_moles_of_molecular_hydrogen", "tendency_of_upward_air_velocity", "tendency_of_upward_air_velocity_due_to_advection", "tendency_of_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_wind_speed_due_to_convection", "tendency_of_wind_speed_due_to_gravity_wave_drag", "thermal_energy_content_of_surface_snow", "thermodynamic_phase_of_cloud_water_particles_at_cloud_top", "thermosteric_change_in_mean_sea_level", "thermosteric_change_in_sea_surface_height", "thickness_of_liquid_water_cloud", "tidal_sea_surface_height_above_mean_higher_high_water", "tidal_sea_surface_height_above_mean_lower_low_water", "tidal_sea_surface_height_above_mean_low_water_springs", "time_when_flood_water_falls_below_threshold", "time_when_flood_water_rises_above_threshold", "toa_adjusted_longwave_forcing", "toa_adjusted_radiative_forcing", "toa_adjusted_shortwave_forcing", "toa_brightness_temperature", "toa_brightness_temperature_assuming_clear_sky", "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", "toa_brightness_temperature_of_standard_scene", "to_direction_of_air_velocity_relative_to_sea_water", "tropical_cyclone_eye_brightness_temperature", "tropopause_adjusted_longwave_forcing", "tropopause_adjusted_radiative_forcing", "tropopause_adjusted_shortwave_forcing", "tropopause_air_temperature", "troposphere_mole_content_of_bromine_monoxide", "troposphere_mole_content_of_formaldehyde", "troposphere_mole_content_of_glyoxal", "troposphere_mole_content_of_iodine_monoxide", "troposphere_mole_content_of_nitrogen_dioxide", "troposphere_mole_content_of_ozone", "troposphere_mole_content_of_sulfur_dioxide", "turbulent_mixing_length_of_sea_water", "upward_heat_flux_in_sea_water_due_to_convection", "upward_latent_heat_flux_in_air", "upward_sea_water_velocity", "upward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "upward_upward_derivative_of_geopotential", "upward_water_vapor_flux_in_air", "upward_water_vapor_flux_in_air_due_to_diffusion", "upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "vegetation_carbon_content", "vegetation_mass_content_of_13C", "vegetation_mass_content_of_14C", "vegetation_mass_content_of_nitrogen", "vertical_navigation_clearance_above_waterway_surface", "virtual_salt_flux_into_sea_water", "virtual_salt_flux_into_sea_water_due_to_evaporation", "virtual_salt_flux_into_sea_water_due_to_newtonian_relaxation", "virtual_salt_flux_into_sea_water_due_to_rainfall", "virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "virtual_salt_flux_into_sea_water_from_rivers", "virtual_temperature", "volume_absorption_coefficient_of_radiative_flux_in_sea_water", "volume_absorption_coefficient_of_radiative_flux_in_sea_water_due_to_dissolved_organic_matter", "volume_attenuated_backwards_scattering_function_in_air", "volume_attenuated_backwards_scattering_function_in_air_assuming_no_aerosol_or_cloud", "volume_attenuation_coefficient_of_downwelling_radiative_flux_in_sea_water", "volume_backwards_scattering_coefficient_in_air_due_to_dried_aerosol_particles", "volume_backwards_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water_corrected_for_pure_water_attenuance", "volume_fraction_of_condensed_water_in_soil", "volume_fraction_of_condensed_water_in_soil_at_critical_point", "volume_fraction_of_condensed_water_in_soil_at_field_capacity", "volume_fraction_of_condensed_water_in_soil_at_wilting_point", "volume_fraction_of_condensed_water_in_soil_pores", "volume_fraction_of_frozen_water_in_soil", "volume_fraction_of_oxygen_in_sea_water", "volume_mixing_ratio_of_oxygen_at_stp_in_sea_water", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_dried_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_scattering_function_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_function_of_radiative_flux_in_sea_water", "water_evaporation_amount", "water_evaporation_amount_from_canopy", "water_evaporation_flux_from_canopy", "water_evaporation_flux_from_soil", "water_evapotranspiration_flux", "water_flux_correction", "water_flux_into_sea_water", "water_flux_into_sea_water_due_to_sea_ice_thermodynamics", "water_flux_into_sea_water_due_to_surface_drainage", "water_flux_into_sea_water_from_icebergs", "water_flux_into_sea_water_from_land_ice", "water_flux_into_sea_water_from_rivers", "water_flux_into_sea_water_from_rivers_and_surface_downward_water_flux", "water_flux_into_sea_water_without_flux_correction", "water_flux_out_of_sea_ice_and_sea_water", "water_flux_out_of_sea_water", "water_flux_out_of_sea_water_due_to_newtonian_relaxation", "water_flux_out_of_sea_water_due_to_sea_ice_thermodynamics", "water_potential_evaporation_amount", "water_potential_evaporation_flux", "water_sublimation_flux", "water_surface_height_above_reference_datum", "water_surface_reference_datum_altitude", "water_table_depth", "water_vapor_partial_pressure_in_air", "water_vapor_saturation_deficit_in_air", "water_volume_transport_in_river_channel", "water_volume_transport_into_sea_water_from_rivers", "westward_upward_derivative_of_geopotential", "westward_westward_derivative_of_geopotential", "wet_bulb_potential_temperature", "wet_bulb_temperature", "wind_chill_of_air_temperature", "wind_mixing_energy_flux_into_sea_water", "wood_debris_mass_content_of_carbon", "wood_debris_mass_content_of_nitrogen", "x_heat_flux_in_sea_water_due_to_advection", "y_heat_flux_in_sea_water_due_to_advection"], "description": "Options", "index": [0], "layout": "IPY_MODEL_49ee20188ebd491d9aa0fcacab393317", "rows": 10, "style": "IPY_MODEL_0cfffda958cd4fc2836f5f8c760ea631"}}, "d487cde5a3ee4bca96148467136b9f8a": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ButtonStyleModel", "state": {"font_family": null, "font_size": null, "font_style": null, "font_variant": null, "font_weight": null, "text_color": null, "text_decoration": null}}, "d760e21fad834e33a2092010d5534d5b": {"model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": {"layout": "IPY_MODEL_939b182a9bf84d3c87819e34ad964512", "outputs": [{"name": "stdout", "output_type": "stream", "text": "Vocabulary: {'temp': {'standard_name': 'sea_surface_temperature$|sea_water_potential_temperature$|sea_water_temperature$'}}\n"}]}}, "ddac04334db34bd8a4526e1a1f5d7698": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": {"_options_labels": ["acoustic_signal_roundtrip_travel_time_in_sea_water", "aerodynamic_particle_diameter", "aerodynamic_resistance", "age_of_sea_ice", "age_of_stratospheric_air", "age_of_surface_snow", "aggregate_quality_flag", "air_density", "air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", "air_pressure", "air_pressure_anomaly", "air_pressure_at_cloud_base", "air_pressure_at_cloud_top", "air_pressure_at_convective_cloud_base", "air_pressure_at_convective_cloud_top", "air_pressure_at_freezing_level", "air_pressure_at_mean_sea_level", "air_pressure_at_top_of_atmosphere_model", "air_pseudo_equivalent_potential_temperature", "air_pseudo_equivalent_temperature", "air_temperature", "air_temperature_anomaly", "air_temperature_at_cloud_top", "air_temperature_at_effective_cloud_top_defined_by_infrared_radiation", "air_temperature_lapse_rate", "air_temperature_threshold", "altimeter_range", "altimeter_range_correction_due_to_dry_troposphere", "altimeter_range_correction_due_to_ionosphere", "altimeter_range_correction_due_to_wet_troposphere", "altitude", "altitude_at_top_of_atmosphere_model", "altitude_at_top_of_dry_convection", "amplitude_of_global_average_sea_level_change", "angle_of_emergence", "angle_of_incidence", "angle_of_rotation_from_east_to_x", "angle_of_rotation_from_east_to_y", "angle_of_rotation_from_solar_azimuth_to_platform_azimuth", "angstrom_exponent_of_ambient_aerosol_in_air", "apparent_air_temperature", "apparent_oxygen_utilization", "area_fraction", "area_fraction_below_surface", "area_fraction_of_day_defined_by_solar_zenith_angle", "area_fraction_of_night_defined_by_solar_zenith_angle", "area_fraction_of_twilight_defined_by_solar_zenith_angle", "area_type", "asymmetry_factor_of_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_absorption_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_boundary_layer_thickness", "atmosphere_convective_available_potential_energy", "atmosphere_convective_available_potential_energy_wrt_surface", "atmosphere_convective_inhibition", "atmosphere_convective_inhibition_wrt_surface", "atmosphere_downdraft_convective_mass_flux", "atmosphere_dry_energy_content", "atmosphere_dry_static_energy_content", "atmosphere_eastward_stress_due_to_gravity_wave_drag", "atmosphere_energy_content", "atmosphere_enthalpy_content", "atmosphere_heat_diffusivity", "atmosphere_helicity", "atmosphere_horizontal_streamfunction", "atmosphere_horizontal_velocity_potential", "atmosphere_hybrid_height_coordinate", "atmosphere_hybrid_sigma_pressure_coordinate", "atmosphere_kinetic_energy_content", "atmosphere_layer_thickness_expressed_as_geopotential_height_difference", "atmosphere_level_of_free_convection", "atmosphere_level_of_free_convection_wrt_surface", "atmosphere_lifting_condensation_level", "atmosphere_lifting_condensation_level_wrt_surface", "atmosphere_ln_pressure_coordinate", "atmosphere_mass_content_of_acetic_acid", "atmosphere_mass_content_of_aceto_nitrile", "atmosphere_mass_content_of_alkanes", "atmosphere_mass_content_of_alkenes", "atmosphere_mass_content_of_alpha_hexachlorocyclohexane", "atmosphere_mass_content_of_alpha_pinene", "atmosphere_mass_content_of_ammonia", "atmosphere_mass_content_of_ammonium_dry_aerosol_particles", "atmosphere_mass_content_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_aromatic_compounds", "atmosphere_mass_content_of_atomic_bromine", "atmosphere_mass_content_of_atomic_chlorine", "atmosphere_mass_content_of_atomic_nitrogen", "atmosphere_mass_content_of_benzene", "atmosphere_mass_content_of_beta_pinene", "atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_bromine_chloride", "atmosphere_mass_content_of_bromine_monoxide", "atmosphere_mass_content_of_bromine_nitrate", "atmosphere_mass_content_of_brox_expressed_as_bromine", "atmosphere_mass_content_of_butane", "atmosphere_mass_content_of_carbon_dioxide", "atmosphere_mass_content_of_carbon_monoxide", "atmosphere_mass_content_of_carbon_tetrachloride", "atmosphere_mass_content_of_cfc11", "atmosphere_mass_content_of_cfc113", "atmosphere_mass_content_of_cfc113a", "atmosphere_mass_content_of_cfc114", "atmosphere_mass_content_of_cfc115", "atmosphere_mass_content_of_cfc12", "atmosphere_mass_content_of_chlorine_dioxide", "atmosphere_mass_content_of_chlorine_monoxide", "atmosphere_mass_content_of_chlorine_nitrate", "atmosphere_mass_content_of_cloud_condensed_water", "atmosphere_mass_content_of_cloud_ice", "atmosphere_mass_content_of_cloud_liquid_water", "atmosphere_mass_content_of_clox_expressed_as_chlorine", "atmosphere_mass_content_of_convective_cloud_condensed_water", "atmosphere_mass_content_of_convective_cloud_ice", "atmosphere_mass_content_of_convective_cloud_liquid_water", "atmosphere_mass_content_of_dichlorine_peroxide", "atmosphere_mass_content_of_dimethyl_sulfide", "atmosphere_mass_content_of_dinitrogen_pentoxide", "atmosphere_mass_content_of_dust_dry_aerosol_particles", "atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles", "atmosphere_mass_content_of_ethane", "atmosphere_mass_content_of_ethanol", "atmosphere_mass_content_of_ethene", "atmosphere_mass_content_of_ethyne", "atmosphere_mass_content_of_formaldehyde", "atmosphere_mass_content_of_formic_acid", "atmosphere_mass_content_of_gaseous_divalent_mercury", "atmosphere_mass_content_of_gaseous_elemental_mercury", "atmosphere_mass_content_of_graupel", "atmosphere_mass_content_of_graupel_and_hail", "atmosphere_mass_content_of_hail", "atmosphere_mass_content_of_halon1202", "atmosphere_mass_content_of_halon1211", "atmosphere_mass_content_of_halon1301", "atmosphere_mass_content_of_halon2402", "atmosphere_mass_content_of_hcc140a", "atmosphere_mass_content_of_hcfc141b", "atmosphere_mass_content_of_hcfc142b", "atmosphere_mass_content_of_hcfc22", "atmosphere_mass_content_of_hexachlorobiphenyl", "atmosphere_mass_content_of_hox_expressed_as_hydrogen", "atmosphere_mass_content_of_hydrogen_bromide", "atmosphere_mass_content_of_hydrogen_chloride", "atmosphere_mass_content_of_hydrogen_cyanide", "atmosphere_mass_content_of_hydrogen_peroxide", "atmosphere_mass_content_of_hydroperoxyl_radical", "atmosphere_mass_content_of_hydroxyl_radical", "atmosphere_mass_content_of_hypobromous_acid", "atmosphere_mass_content_of_hypochlorous_acid", "atmosphere_mass_content_of_inorganic_bromine", "atmosphere_mass_content_of_inorganic_chlorine", "atmosphere_mass_content_of_isoprene", "atmosphere_mass_content_of_limonene", "atmosphere_mass_content_of_liquid_precipitation", "atmosphere_mass_content_of_mercury_dry_aerosol_particles", "atmosphere_mass_content_of_methane", "atmosphere_mass_content_of_methanol", "atmosphere_mass_content_of_methyl_bromide", "atmosphere_mass_content_of_methyl_chloride", "atmosphere_mass_content_of_methyl_hydroperoxide", "atmosphere_mass_content_of_methyl_peroxy_radical", "atmosphere_mass_content_of_molecular_hydrogen", "atmosphere_mass_content_of_nitrate_dry_aerosol_particles", "atmosphere_mass_content_of_nitrate_radical", "atmosphere_mass_content_of_nitric_acid", "atmosphere_mass_content_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_mass_content_of_nitrogen_monoxide", "atmosphere_mass_content_of_nitrous_acid", "atmosphere_mass_content_of_nitrous_oxide", "atmosphere_mass_content_of_nmvoc_expressed_as_carbon", "atmosphere_mass_content_of_nox_expressed_as_nitrogen", "atmosphere_mass_content_of_noy_expressed_as_nitrogen", "atmosphere_mass_content_of_oxygenated_hydrocarbons", "atmosphere_mass_content_of_ozone", "atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_peroxyacetyl_nitrate", "atmosphere_mass_content_of_peroxynitric_acid", "atmosphere_mass_content_of_peroxy_radicals", "atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_propane", "atmosphere_mass_content_of_propene", "atmosphere_mass_content_of_radon", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles", "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_expressed_as_cations", "atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles", "atmosphere_mass_content_of_snow", "atmosphere_mass_content_of_sulfate", "atmosphere_mass_content_of_sulfate_ambient_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles", "atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur", "atmosphere_mass_content_of_sulfur_dioxide", "atmosphere_mass_content_of_terpenes", "atmosphere_mass_content_of_toluene", "atmosphere_mass_content_of_volcanic_ash", "atmosphere_mass_content_of_water", "atmosphere_mass_content_of_water_in_ambient_aerosol_particles", "atmosphere_mass_content_of_water_vapor", "atmosphere_mass_content_of_xylene", "atmosphere_mass_of_air_per_unit_area", "atmosphere_mass_of_carbon_dioxide", "atmosphere_mass_per_unit_area", "atmosphere_mole_content_of_carbon_monoxide", "atmosphere_mole_content_of_methane", "atmosphere_mole_content_of_nitrogen_dioxide", "atmosphere_mole_content_of_ozone", "atmosphere_mole_content_of_water_vapor", "atmosphere_moles_of_acetic_acid", "atmosphere_moles_of_aceto_nitrile", "atmosphere_moles_of_alpha_hexachlorocyclohexane", "atmosphere_moles_of_alpha_pinene", "atmosphere_moles_of_ammonia", "atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_atomic_bromine", "atmosphere_moles_of_atomic_chlorine", "atmosphere_moles_of_atomic_nitrogen", "atmosphere_moles_of_benzene", "atmosphere_moles_of_beta_pinene", "atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "atmosphere_moles_of_bromine_chloride", "atmosphere_moles_of_bromine_monoxide", "atmosphere_moles_of_bromine_nitrate", "atmosphere_moles_of_brox_expressed_as_bromine", "atmosphere_moles_of_butane", "atmosphere_moles_of_carbon_dioxide", "atmosphere_moles_of_carbon_monoxide", "atmosphere_moles_of_carbon_tetrachloride", "atmosphere_moles_of_cfc11", "atmosphere_moles_of_cfc113", "atmosphere_moles_of_cfc113a", "atmosphere_moles_of_cfc114", "atmosphere_moles_of_cfc115", "atmosphere_moles_of_cfc12", "atmosphere_moles_of_chlorine_dioxide", "atmosphere_moles_of_chlorine_monoxide", "atmosphere_moles_of_chlorine_nitrate", "atmosphere_moles_of_clox_expressed_as_chlorine", "atmosphere_moles_of_dichlorine_peroxide", "atmosphere_moles_of_dimethyl_sulfide", "atmosphere_moles_of_dinitrogen_pentoxide", "atmosphere_moles_of_ethane", "atmosphere_moles_of_ethanol", "atmosphere_moles_of_ethene", "atmosphere_moles_of_ethyne", "atmosphere_moles_of_formaldehyde", "atmosphere_moles_of_formic_acid", "atmosphere_moles_of_gaseous_divalent_mercury", "atmosphere_moles_of_gaseous_elemental_mercury", "atmosphere_moles_of_halon1202", "atmosphere_moles_of_halon1211", "atmosphere_moles_of_halon1301", "atmosphere_moles_of_halon2402", "atmosphere_moles_of_hcc140a", "atmosphere_moles_of_hcfc141b", "atmosphere_moles_of_hcfc142b", "atmosphere_moles_of_hcfc22", "atmosphere_moles_of_hexachlorobiphenyl", "atmosphere_moles_of_hox_expressed_as_hydrogen", "atmosphere_moles_of_hydrogen_bromide", "atmosphere_moles_of_hydrogen_chloride", "atmosphere_moles_of_hydrogen_cyanide", "atmosphere_moles_of_hydrogen_peroxide", "atmosphere_moles_of_hydroperoxyl_radical", "atmosphere_moles_of_hydroxyl_radical", "atmosphere_moles_of_hypobromous_acid", "atmosphere_moles_of_hypochlorous_acid", "atmosphere_moles_of_inorganic_bromine", "atmosphere_moles_of_inorganic_chlorine", "atmosphere_moles_of_isoprene", "atmosphere_moles_of_limonene", "atmosphere_moles_of_methane", "atmosphere_moles_of_methanol", "atmosphere_moles_of_methyl_bromide", "atmosphere_moles_of_methyl_chloride", "atmosphere_moles_of_methyl_hydroperoxide", "atmosphere_moles_of_methyl_peroxy_radical", "atmosphere_moles_of_molecular_hydrogen", "atmosphere_moles_of_nitrate_radical", "atmosphere_moles_of_nitric_acid", "atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "atmosphere_moles_of_nitrogen_dioxide", "atmosphere_moles_of_nitrogen_monoxide", "atmosphere_moles_of_nitrous_acid", "atmosphere_moles_of_nitrous_oxide", "atmosphere_moles_of_nmvoc_expressed_as_carbon", "atmosphere_moles_of_nox_expressed_as_nitrogen", "atmosphere_moles_of_noy_expressed_as_nitrogen", "atmosphere_moles_of_ozone", "atmosphere_moles_of_peroxyacetyl_nitrate", "atmosphere_moles_of_peroxynitric_acid", "atmosphere_moles_of_propane", "atmosphere_moles_of_propene", "atmosphere_moles_of_radon", "atmosphere_moles_of_sulfur_dioxide", "atmosphere_moles_of_toluene", "atmosphere_moles_of_water_vapor", "atmosphere_moles_of_xylene", "atmosphere_momentum_diffusivity", "atmosphere_net_rate_of_absorption_of_longwave_energy", "atmosphere_net_rate_of_absorption_of_shortwave_energy", "atmosphere_net_upward_convective_mass_flux", "atmosphere_net_upward_deep_convective_mass_flux", "atmosphere_net_upward_shallow_convective_mass_flux", "atmosphere_northward_stress_due_to_gravity_wave_drag", "atmosphere_number_content_of_aerosol_particles", "atmosphere_number_content_of_cloud_droplets", "atmosphere_number_content_of_ice_crystals", "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_ammonium_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_black_carbon_ambient_aerosol", "atmosphere_optical_thickness_due_to_cloud", "atmosphere_optical_thickness_due_to_convective_cloud", "atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_dust_dry_aerosol_particles", "atmosphere_optical_thickness_due_to_nitrate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm10_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm1_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_pm2p5_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_stratiform_cloud", "atmosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_water_in_ambient_aerosol_particles", "atmosphere_potential_energy_content", "atmosphere_sigma_coordinate", "atmosphere_sleve_coordinate", "atmosphere_stability_k_index", "atmosphere_stability_showalter_index", "atmosphere_stability_total_totals_index", "atmosphere_transformed_eulerian_mean_meridional_overturning_mass_streamfunction", "atmosphere_updraft_convective_mass_flux", "atmosphere_upward_absolute_vorticity", "atmosphere_upward_relative_vorticity", "atmosphere_x_relative_vorticity", "atmosphere_y_relative_vorticity", "attenuated_signal_test_quality_flag", "automated_tropical_cyclone_forecasting_system_storm_identifier", "backscattering_ratio_in_air", "baroclinic_eastward_sea_water_velocity", "baroclinic_northward_sea_water_velocity", "barometric_altitude", "barotropic_eastward_sea_water_velocity", "barotropic_northward_sea_water_velocity", "barotropic_sea_water_x_velocity", "barotropic_sea_water_y_velocity", "basal_downward_heat_flux_in_sea_ice", "baseflow_amount", "beam_consistency_indicator_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "beaufort_wind_force", "bedrock_altitude", "bedrock_altitude_change_due_to_isostatic_adjustment", "biological_taxon_lsid", "biological_taxon_name", "bioluminescent_photon_rate_in_sea_water", "biomass_burning_carbon_flux", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "brunt_vaisala_frequency_in_air", "burned_area", "burned_area_fraction", "canopy_albedo", "canopy_and_surface_water_amount", "canopy_height", "canopy_resistance_to_ozone_dry_deposition", "canopy_snow_amount", "canopy_temperature", "canopy_throughfall_flux", "canopy_water_amount", "carbon_mass_content_of_forestry_and_agricultural_products", "carbon_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_litter_and_soil_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_soil_from_litter", "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", "cell_area", "cell_thickness", "change_in_atmosphere_energy_content_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_energy_content_of_atmosphere_layer_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_land_ice_amount", "change_in_land_ice_mass", "change_over_time_in_amount_of_ice_and_snow_on_land", "change_over_time_in_atmosphere_mass_content_of_water_due_to_advection", "change_over_time_in_canopy_water_amount", "change_over_time_in_groundwater_amount", "change_over_time_in_land_surface_liquid_water_amount", "change_over_time_in_land_water_amount", "change_over_time_in_mass_content_of_water_in_soil", "change_over_time_in_river_water_amount", "change_over_time_in_sea_water_absolute_salinity", "change_over_time_in_sea_water_conservative_temperature", "change_over_time_in_sea_water_density", "change_over_time_in_sea_water_neutral_density", "change_over_time_in_sea_water_potential_density", "change_over_time_in_sea_water_potential_temperature", "change_over_time_in_sea_water_practical_salinity", "change_over_time_in_sea_water_preformed_salinity", "change_over_time_in_sea_water_salinity", "change_over_time_in_sea_water_specific_potential_enthalpy", "change_over_time_in_sea_water_temperature", "change_over_time_in_surface_snow_amount", "change_over_time_in_thermal_energy_content_of_ice_and_snow_on_land", "change_over_time_in_thermal_energy_content_of_vegetation_and_litter_and_soil", "charnock_coefficient_for_surface_roughness_length_for_momentum_in_air", "clear_sky_area_fraction", "climatology_test_quality_flag", "cloud_albedo", "cloud_area_fraction", "cloud_area_fraction_in_atmosphere_layer", "cloud_base_altitude", "cloud_binary_mask", "cloud_ice_mixing_ratio", "cloud_liquid_water_mixing_ratio", "cloud_top_altitude", "colony_forming_unit_number_concentration_of_biological_taxon_in_sea_water", "compressive_strength_of_sea_ice", "concentration_of_colored_dissolved_organic_matter_in_sea_water_expressed_as_equivalent_mass_fraction_of_quinine_sulfate_dihydrate", "convection_time_fraction", "convective_cloud_area_fraction", "convective_cloud_area_fraction_in_atmosphere_layer", "convective_cloud_base_altitude", "convective_cloud_base_height", "convective_cloud_longwave_emissivity", "convective_cloud_top_altitude", "convective_cloud_top_height", "convective_precipitation_amount", "convective_precipitation_flux", "convective_precipitation_rate", "convective_rainfall_amount", "convective_rainfall_flux", "convective_rainfall_rate", "convective_snowfall_amount", "convective_snowfall_flux", "coriolis_parameter", "correction_for_model_negative_specific_humidity", "covariance_over_longitude_of_northward_wind_and_air_temperature", "depth", "depth_at_base_of_unfrozen_ground", "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", "depth_at_shallowest_isotherm_defined_by_soil_temperature", "depth_at_shallowest_local_minimum_in_vertical_profile_of_mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "depth_below_geoid", "depth_below_sea_floor", "depth_of_isosurface_of_sea_water_potential_temperature", "dew_point_depression", "dew_point_temperature", "diameter_of_ambient_aerosol_particles", "difference_between_sea_surface_temperature_and_air_temperature", "difference_of_air_pressure_from_model_reference", "diffuse_downwelling_shortwave_flux_in_air", "diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "dimensionless_exner_function", "direct_downwelling_shortwave_flux_in_air", "direction_of_radial_vector_away_from_instrument", "direction_of_radial_vector_toward_instrument", "direction_of_sea_ice_displacement", "direction_of_sea_ice_velocity", "distance_from_geocenter", "distance_from_sun", "distance_from_tropical_cyclone_center_to_leading_edge_of_displaced_convection", "divergence_of_sea_ice_velocity", "divergence_of_wind", "downward_air_velocity", "downward_dry_static_energy_flux_due_to_diffusion", "downward_eastward_momentum_flux_in_air", "downward_eastward_momentum_flux_in_air_due_to_diffusion", "downward_eastward_stress_at_sea_ice_base", "downward_heat_flux_at_ground_level_in_snow", "downward_heat_flux_at_ground_level_in_soil", "downward_heat_flux_in_air", "downward_heat_flux_in_floating_ice", "downward_heat_flux_in_sea_ice", "downward_heat_flux_in_soil", "downward_liquid_water_mass_flux_into_groundwater", "downward_northward_momentum_flux_in_air", "downward_northward_momentum_flux_in_air_due_to_diffusion", "downward_northward_stress_at_sea_ice_base", "downward_sea_ice_basal_salt_flux", "downward_water_vapor_flux_in_air_due_to_diffusion", "downward_x_stress_at_sea_ice_base", "downward_x_stress_at_sea_water_surface", "downward_x_stress_correction_at_sea_water_surface", "downward_y_stress_at_sea_ice_base", "downward_y_stress_at_sea_water_surface", "downward_y_stress_correction_at_sea_water_surface", "downwelling_longwave_flux_in_air", "downwelling_longwave_flux_in_air_assuming_clear_sky", "downwelling_longwave_radiance_in_air", "downwelling_photon_flux_in_sea_water", "downwelling_photon_flux_per_unit_wavelength_in_sea_water", "downwelling_photon_radiance_in_sea_water", "downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "downwelling_photon_spherical_irradiance_in_sea_water", "downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "downwelling_photosynthetic_photon_flux_in_sea_water", "downwelling_photosynthetic_photon_radiance_in_sea_water", "downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "downwelling_photosynthetic_radiance_in_sea_water", "downwelling_photosynthetic_radiative_flux_in_sea_water", "downwelling_photosynthetic_spherical_irradiance_in_sea_water", "downwelling_radiance_in_sea_water", "downwelling_radiance_per_unit_wavelength_in_air", "downwelling_radiance_per_unit_wavelength_in_sea_water", "downwelling_radiative_flux_in_sea_water", "downwelling_radiative_flux_per_unit_wavelength_in_air", "downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "downwelling_shortwave_flux_in_air", "downwelling_shortwave_flux_in_air_assuming_clear_sky", "downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "downwelling_shortwave_flux_in_sea_water", "downwelling_shortwave_flux_in_sea_water_at_sea_ice_base", "downwelling_shortwave_radiance_in_air", "downwelling_spherical_irradiance_in_sea_water", "downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "dry_atmosphere_mole_fraction_of_carbon_dioxide", "dry_atmosphere_mole_fraction_of_methane", "dry_energy_content_of_atmosphere_layer", "dry_static_energy_content_of_atmosphere_layer", "duration_of_sunshine", "dvorak_tropical_cyclone_current_intensity_number", "dvorak_tropical_number", "dynamic_tropopause_potential_temperature", "eastward_air_velocity_relative_to_sea_water", "eastward_atmosphere_dry_static_energy_transport_across_unit_distance", "eastward_atmosphere_water_transport_across_unit_distance", "eastward_atmosphere_water_vapor_transport_across_unit_distance", "eastward_derivative_of_eastward_wind", "eastward_derivative_of_northward_sea_ice_velocity", "eastward_derivative_of_northward_wind", "eastward_derivative_of_wind_from_direction", "eastward_flood_water_velocity", "eastward_friction_velocity_in_air", "eastward_land_ice_velocity", "eastward_mass_flux_of_air", "eastward_momentum_flux_correction", "eastward_sea_ice_displacement", "eastward_sea_ice_velocity", "eastward_sea_water_velocity", "eastward_sea_water_velocity_assuming_no_tide", "eastward_sea_water_velocity_at_sea_floor", "eastward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "eastward_sea_water_velocity_due_to_tides", "eastward_transformed_eulerian_mean_air_velocity", "eastward_water_vapor_flux_in_air", "eastward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "eastward_wind", "eastward_wind_shear", "effective_radius_of_cloud_condensed_water_particles_at_cloud_top", "effective_radius_of_cloud_liquid_water_particles", "effective_radius_of_cloud_liquid_water_particles_at_liquid_water_cloud_top", "effective_radius_of_convective_cloud_ice_particles", "effective_radius_of_convective_cloud_liquid_water_particles", "effective_radius_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "effective_radius_of_convective_cloud_rain_particles", "effective_radius_of_convective_cloud_snow_particles", "effective_radius_of_stratiform_cloud_graupel_particles", "effective_radius_of_stratiform_cloud_ice_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "effective_radius_of_stratiform_cloud_rain_particles", "effective_radius_of_stratiform_cloud_snow_particles", "electrical_mobility_diameter_of_ambient_aerosol_particles", "enrichment_of_14C_in_carbon_dioxide_in_air_expressed_as_uppercase_delta_14C", "enthalpy_content_of_atmosphere_layer", "equilibrium_line_altitude", "equivalent_pressure_of_atmosphere_ozone_content", "equivalent_reflectivity_factor", "equivalent_thickness_at_stp_of_atmosphere_ozone_content", "ertel_potential_vorticity", "fast_soil_pool_mass_content_of_carbon", "final_air_pressure_of_lifted_parcel", "fire_area", "fire_radiative_power", "fire_temperature", "flat_line_test_quality_flag", "floating_ice_shelf_area", "floating_ice_shelf_area_fraction", "floating_ice_thickness", "flood_water_duration_above_threshold", "flood_water_speed", "flood_water_thickness", "fog_area_fraction", "forecast_period", "forecast_reference_time", "fractional_saturation_of_oxygen_in_sea_water", "fraction_of_surface_downwelling_photosynthetic_radiative_flux_absorbed_by_vegetation", "fraction_of_time_with_sea_ice_area_fraction_above_threshold", "freezing_level_altitude", "freezing_temperature_of_sea_water", "frequency_of_lightning_flashes_per_unit_area", "frozen_water_content_of_soil_layer", "fugacity_of_carbon_dioxide_in_sea_water", "gap_test_quality_flag", "geoid_height_above_reference_ellipsoid", "geopotential", "geopotential_height", "geopotential_height_anomaly", "geopotential_height_at_cloud_top", "geopotential_height_at_volcanic_ash_cloud_top", "geostrophic_eastward_sea_water_velocity", "geostrophic_eastward_wind", "geostrophic_northward_sea_water_velocity", "geostrophic_northward_wind", "global_average_sea_level_change", "global_average_steric_sea_level_change", "global_average_thermosteric_sea_level_change", "graupel_and_hail_fall_amount", "graupel_and_hail_fall_flux", "graupel_fall_amount", "graupel_fall_flux", "grid_latitude", "grid_longitude", "gross_primary_productivity_of_biomass_expressed_as_13C", "gross_primary_productivity_of_biomass_expressed_as_14C", "gross_primary_productivity_of_biomass_expressed_as_carbon", "gross_range_test_quality_flag", "gross_rate_of_decrease_in_area_fraction", "gross_rate_of_increase_in_area_fraction", "grounded_ice_sheet_area", "grounded_ice_sheet_area_fraction", "ground_level_altitude", "growth_limitation_of_calcareous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_diatoms_due_to_solar_irradiance", "growth_limitation_of_diazotrophic_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_miscellaneous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_picophytoplankton_due_to_solar_irradiance", "hail_fall_amount", "hail_fall_flux", "halosteric_change_in_mean_sea_level", "halosteric_change_in_sea_surface_height", "harmonic_period", "heat_flux_correction", "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", "heat_flux_into_sea_water_due_to_newtonian_relaxation", "heat_flux_into_sea_water_due_to_sea_ice_thermodynamics", "heat_flux_into_sea_water_due_to_snow_thermodynamics", "heat_index_of_air_temperature", "height", "height_above_geopotential_datum", "height_above_geopotential_datum_at_top_of_atmosphere_model", "height_above_mean_sea_level", "height_above_reference_ellipsoid", "height_above_sea_floor", "height_at_cloud_top", "height_at_effective_cloud_top_defined_by_infrared_radiation", "high_type_cloud_area_fraction", "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid", "histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid", "horizontal_atmosphere_dry_energy_transport", "horizontal_dry_energy_transport_in_atmosphere_layer", "humidity_mixing_ratio", "ice_cloud_area_fraction", "ice_cloud_area_fraction_in_atmosphere_layer", "ice_volume_in_frozen_ground_in_excess_of_pore_volume_in_unfrozen_ground_expressed_as_fraction_of_frozen_ground_volume", "incoming_water_volume_transport_along_river_channel", "indicative_error_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", "institution", "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_salinity_and_sea_water_density", "integral_wrt_depth_of_sea_water_practical_salinity", "integral_wrt_depth_of_sea_water_temperature", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent", "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "integral_wrt_height_of_product_of_eastward_wind_and_specific_humidity", "integral_wrt_height_of_product_of_northward_wind_and_specific_humidity", "integral_wrt_time_of_air_temperature_deficit", "integral_wrt_time_of_air_temperature_excess", "integral_wrt_time_of_mole_stomatal_uptake_of_ozone", "integral_wrt_time_of_radioactivity_concentration_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_101Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_102Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_103Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_104Tc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_105Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106mRh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_106Ru_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_107Rh_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_109Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_110mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111mPd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_111Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_112Pd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_113mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Ag_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mAg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_115mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_116mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mCd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_117mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118Cd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_118mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119In_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mIn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_119mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_11C_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_121Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123mSn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_123Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_124Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_125Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_126Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_127Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_128Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_129Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130mSb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_130Sn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Sb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_131Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_132Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mTe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_133Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mI_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_134Te_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135I_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mCs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135mXe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_135Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_136Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137mBa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_137Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Cs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_138Xe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_139Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_13N_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140Ba_in_air", "integral_wrt_time_of_radioactivity_concentration_of_140La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_141La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_142Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143La_in_air", "integral_wrt_time_of_radioactivity_concentration_of_143Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144mPr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_144Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_145Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Ce_in_air", "integral_wrt_time_of_radioactivity_concentration_of_146Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Pr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_147Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_148Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_149Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_150Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_151Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152mPm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Nd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_152Pm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_153Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_154Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_155Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_156Sm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_157Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_158Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Eu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_159Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_15O_in_air", "integral_wrt_time_of_radioactivity_concentration_of_160Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_161Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Gd_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162mTb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_162Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_163Tb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_165Dy_in_air", "integral_wrt_time_of_radioactivity_concentration_of_18F_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Hg_in_air", "integral_wrt_time_of_radioactivity_concentration_of_206Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207mPb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_207Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_208Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_209Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_210Tl_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_211Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_212Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_213Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Pb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_214Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Bi_in_air", "integral_wrt_time_of_radioactivity_concentration_of_215Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_216Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_217Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Po_in_air", "integral_wrt_time_of_radioactivity_concentration_of_218Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219At_in_air", "integral_wrt_time_of_radioactivity_concentration_of_219Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_220Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_221Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_222Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Fr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_223Rn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_224Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_225Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_226Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_227Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_228Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ac_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Ra_in_air", "integral_wrt_time_of_radioactivity_concentration_of_229Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_230U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_231U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_232U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_233U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234mPa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Pa_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234Th_in_air", "integral_wrt_time_of_radioactivity_concentration_of_234U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_235U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_236U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_237U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_238U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_239U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240mNp_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Np_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_240U_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_241Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m1Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242m2Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_242Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_243Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244mAm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_244Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Am_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_245Pu_in_air", "integral_wrt_time_of_radioactivity_concentration_of_246Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_247Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_248Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_249Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_24Na_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Bk_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_250Cm_in_air", "integral_wrt_time_of_radioactivity_concentration_of_251Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_252Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_253Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Cf_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_254mEs_in_air", "integral_wrt_time_of_radioactivity_concentration_of_255Es_in_air", "integral_wrt_time_of_radioactivity_concentration_of_3H_in_air", "integral_wrt_time_of_radioactivity_concentration_of_41Ar_in_air", "integral_wrt_time_of_radioactivity_concentration_of_54Mn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_58Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_60Co_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_72Zn_in_air", "integral_wrt_time_of_radioactivity_concentration_of_73Ga_in_air", "integral_wrt_time_of_radioactivity_concentration_of_75Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_77mGe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78As_in_air", "integral_wrt_time_of_radioactivity_concentration_of_78Ge_in_air", "integral_wrt_time_of_radioactivity_concentration_of_79Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_81Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_82mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83mSe_in_air", "integral_wrt_time_of_radioactivity_concentration_of_83Se_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84Br_in_air", "integral_wrt_time_of_radioactivity_concentration_of_84mBr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_85mKr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86mRb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_86Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_87Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_88Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Kr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Rb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_89Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_90Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91mY_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_91Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Sr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_92Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_93Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_94Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Y_in_air", "integral_wrt_time_of_radioactivity_concentration_of_95Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_96Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97mNb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_97Zr_in_air", "integral_wrt_time_of_radioactivity_concentration_of_98Nb_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Mo_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99mTc_in_air", "integral_wrt_time_of_radioactivity_concentration_of_99Tc_in_air", "integral_wrt_time_of_surface_downward_eastward_stress", "integral_wrt_time_of_surface_downward_latent_heat_flux", "integral_wrt_time_of_surface_downward_northward_stress", "integral_wrt_time_of_surface_downward_sensible_heat_flux", "integral_wrt_time_of_surface_downwelling_longwave_flux_in_air", "integral_wrt_time_of_surface_downwelling_shortwave_flux_in_air", "integral_wrt_time_of_surface_net_downward_longwave_flux", "integral_wrt_time_of_surface_net_downward_shortwave_flux", "integral_wrt_time_of_toa_net_downward_shortwave_flux", "integral_wrt_time_of_toa_outgoing_longwave_flux", "iron_growth_limitation_of_calcareous_phytoplankton", "iron_growth_limitation_of_diatoms", "iron_growth_limitation_of_diazotrophic_phytoplankton", "iron_growth_limitation_of_miscellaneous_phytoplankton", "iron_growth_limitation_of_picophytoplankton", "isccp_cloud_area_fraction", "isotope_ratio_of_17O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotope_ratio_of_18O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotropic_longwave_radiance_in_air", "isotropic_radiance_per_unit_wavelength_in_air", "isotropic_shortwave_radiance_in_air", "kinetic_energy_content_of_atmosphere_layer", "kinetic_energy_dissipation_in_atmosphere_boundary_layer", "lagrangian_tendency_of_air_pressure", "lagrangian_tendency_of_atmosphere_sigma_coordinate", "land_area_fraction", "land_binary_mask", "land_cover_lccs", "land_ice_area_fraction", "land_ice_basal_drag", "land_ice_basal_melt_rate", "land_ice_basal_specific_mass_balance_flux", "land_ice_basal_temperature", "land_ice_basal_upward_velocity", "land_ice_basal_x_velocity", "land_ice_basal_y_velocity", "land_ice_calving_rate", "land_ice_lwe_basal_melt_rate", "land_ice_lwe_calving_rate", "land_ice_lwe_surface_specific_mass_balance_rate", "land_ice_mass", "land_ice_mass_not_displacing_sea_water", "land_ice_runoff_flux", "land_ice_sigma_coordinate", "land_ice_specific_mass_flux_due_to_calving", "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", "land_ice_surface_melt_flux", "land_ice_surface_specific_mass_balance_flux", "land_ice_surface_specific_mass_balance_rate", "land_ice_surface_upward_velocity", "land_ice_surface_x_velocity", "land_ice_surface_y_velocity", "land_ice_temperature", "land_ice_thickness", "land_ice_vertical_mean_x_velocity", "land_ice_vertical_mean_y_velocity", "land_ice_x_velocity", "land_ice_y_velocity", "land_surface_liquid_water_amount", "land_water_amount", "latitude", "leaf_area_index", "leaf_mass_content_of_carbon", "leaf_mass_content_of_nitrogen", "lightning_potential_index", "lightning_radiant_energy", "liquid_water_cloud_area_fraction", "liquid_water_cloud_area_fraction_in_atmosphere_layer", "liquid_water_content_of_permafrost_layer", "liquid_water_content_of_soil_layer", "liquid_water_content_of_surface_snow", "liquid_water_mass_flux_into_soil_due_to_surface_snow_melt", "litter_mass_content_of_13C", "litter_mass_content_of_14C", "litter_mass_content_of_carbon", "litter_mass_content_of_nitrogen", "location_test_quality_flag", "log10_size_interval_based_number_size_distribution_of_cloud_condensation_nuclei_at_stp_in_air", "longitude", "low_type_cloud_area_fraction", "lwe_convective_precipitation_rate", "lwe_convective_snowfall_rate", "lwe_precipitation_rate", "lwe_snowfall_rate", "lwe_stratiform_precipitation_rate", "lwe_stratiform_snowfall_rate", "lwe_thickness_of_atmosphere_mass_content_of_water_vapor", "lwe_thickness_of_canopy_water_amount", "lwe_thickness_of_convective_precipitation_amount", "lwe_thickness_of_convective_snowfall_amount", "lwe_thickness_of_frozen_water_content_of_soil_layer", "lwe_thickness_of_moisture_content_of_soil_layer", "lwe_thickness_of_precipitation_amount", "lwe_thickness_of_snowfall_amount", "lwe_thickness_of_soil_moisture_content", "lwe_thickness_of_stratiform_precipitation_amount", "lwe_thickness_of_stratiform_snowfall_amount", "lwe_thickness_of_surface_snow_amount", "lwe_thickness_of_water_evaporation_amount", "lwe_water_evaporation_rate", "magnitude_of_air_velocity_relative_to_sea_water", "magnitude_of_derivative_of_position_wrt_model_level_number", "magnitude_of_derivative_of_position_wrt_x_coordinate_index", "magnitude_of_derivative_of_position_wrt_y_coordinate_index", "magnitude_of_heat_flux_in_sea_water_due_to_advection", "magnitude_of_sea_ice_displacement", "magnitude_of_surface_downward_stress", "mass_concentration_of_19_butanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_19_hexanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_acetic_acid_in_air", "mass_concentration_of_aceto_nitrile_in_air", "mass_concentration_of_adenosine_triphosphate_in_sea_water", "mass_concentration_of_alkanes_in_air", "mass_concentration_of_alkenes_in_air", "mass_concentration_of_alpha_carotene_in_sea_water", "mass_concentration_of_alpha_hexachlorocyclohexane_in_air", "mass_concentration_of_alpha_pinene_in_air", "mass_concentration_of_ammonia_in_air", "mass_concentration_of_ammonium_dry_aerosol_particles_in_air", "mass_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_aromatic_compounds_in_air", "mass_concentration_of_atomic_bromine_in_air", "mass_concentration_of_atomic_chlorine_in_air", "mass_concentration_of_atomic_nitrogen_in_air", "mass_concentration_of_benzene_in_air", "mass_concentration_of_beta_carotene_in_sea_water", "mass_concentration_of_beta_pinene_in_air", "mass_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_biomass_burning_dry_aerosol_particles_in_air", "mass_concentration_of_bromine_chloride_in_air", "mass_concentration_of_bromine_monoxide_in_air", "mass_concentration_of_bromine_nitrate_in_air", "mass_concentration_of_brox_expressed_as_bromine_in_air", "mass_concentration_of_butane_in_air", "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_carbon_dioxide_in_air", "mass_concentration_of_carbon_monoxide_in_air", "mass_concentration_of_carbon_tetrachloride_in_air", "mass_concentration_of_carotene_in_sea_water", "mass_concentration_of_cfc113a_in_air", "mass_concentration_of_cfc113_in_air", "mass_concentration_of_cfc114_in_air", "mass_concentration_of_cfc115_in_air", "mass_concentration_of_cfc11_in_air", "mass_concentration_of_cfc12_in_air", "mass_concentration_of_chlorine_dioxide_in_air", "mass_concentration_of_chlorine_monoxide_in_air", "mass_concentration_of_chlorine_nitrate_in_air", "mass_concentration_of_chlorophyll_a_in_sea_water", "mass_concentration_of_chlorophyll_b_in_sea_water", "mass_concentration_of_chlorophyll_c1_and_chlorophyll_c2_in_sea_water", "mass_concentration_of_chlorophyll_c3_in_sea_water", "mass_concentration_of_chlorophyll_c_in_sea_water", "mass_concentration_of_chlorophyllide_a_in_sea_water", "mass_concentration_of_chlorophyll_in_sea_water", "mass_concentration_of_cloud_liquid_water_in_air", "mass_concentration_of_clox_expressed_as_chlorine_in_air", "mass_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "mass_concentration_of_condensed_water_in_soil", "mass_concentration_of_diadinoxanthin_in_sea_water", "mass_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_dichlorine_peroxide_in_air", "mass_concentration_of_dimethyl_sulfide_in_air", "mass_concentration_of_dinitrogen_pentoxide_in_air", "mass_concentration_of_divinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_drizzle_in_air", "mass_concentration_of_dust_dry_aerosol_particles_in_air", "mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_concentration_of_ethane_in_air", "mass_concentration_of_ethanol_in_air", "mass_concentration_of_ethene_in_air", "mass_concentration_of_ethyne_in_air", "mass_concentration_of_flagellates_expressed_as_carbon_in_sea_water", "mass_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_formaldehyde_in_air", "mass_concentration_of_formic_acid_in_air", "mass_concentration_of_fucoxanthin_in_sea_water", "mass_concentration_of_gaseous_divalent_mercury_in_air", "mass_concentration_of_gaseous_elemental_mercury_in_air", "mass_concentration_of_halon1202_in_air", "mass_concentration_of_halon1211_in_air", "mass_concentration_of_halon1301_in_air", "mass_concentration_of_halon2402_in_air", "mass_concentration_of_hcc140a_in_air", "mass_concentration_of_hcfc141b_in_air", "mass_concentration_of_hcfc142b_in_air", "mass_concentration_of_hcfc22_in_air", "mass_concentration_of_hexachlorobiphenyl_in_air", "mass_concentration_of_hox_expressed_as_hydrogen_in_air", "mass_concentration_of_hydrogen_bromide_in_air", "mass_concentration_of_hydrogen_chloride_in_air", "mass_concentration_of_hydrogen_cyanide_in_air", "mass_concentration_of_hydrogen_peroxide_in_air", "mass_concentration_of_hydroperoxyl_radical_in_air", "mass_concentration_of_hydroxyl_radical_in_air", "mass_concentration_of_hypobromous_acid_in_air", "mass_concentration_of_hypochlorous_acid_in_air", "mass_concentration_of_inorganic_bromine_in_air", "mass_concentration_of_inorganic_chlorine_in_air", "mass_concentration_of_inorganic_nitrogen_in_sea_water", "mass_concentration_of_isoprene_in_air", "mass_concentration_of_limonene_in_air", "mass_concentration_of_liquid_water_in_air", "mass_concentration_of_lutein_in_sea_water", "mass_concentration_of_mercury_dry_aerosol_particles_in_air", "mass_concentration_of_methane_in_air", "mass_concentration_of_methanol_in_air", "mass_concentration_of_methyl_bromide_in_air", "mass_concentration_of_methyl_chloride_in_air", "mass_concentration_of_methyl_hydroperoxide_in_air", "mass_concentration_of_methyl_peroxy_radical_in_air", "mass_concentration_of_microphytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_molecular_hydrogen_in_air", "mass_concentration_of_monovinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_nanophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_nitrate_dry_aerosol_particles_in_air", "mass_concentration_of_nitrate_radical_in_air", "mass_concentration_of_nitric_acid_in_air", "mass_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_concentration_of_nitrogen_dioxide_in_air", "mass_concentration_of_nitrogen_monoxide_in_air", "mass_concentration_of_nitrous_acid_in_air", "mass_concentration_of_nitrous_oxide_in_air", "mass_concentration_of_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_nox_expressed_as_nitrogen_in_air", "mass_concentration_of_noy_expressed_as_nitrogen_in_air", "mass_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mass_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_oxygenated_hydrocarbons_in_air", "mass_concentration_of_oxygen_in_sea_water", "mass_concentration_of_ozone_in_air", "mass_concentration_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_peridinin_in_sea_water", "mass_concentration_of_peroxyacetyl_nitrate_in_air", "mass_concentration_of_peroxynitric_acid_in_air", "mass_concentration_of_peroxy_radicals_in_air", "mass_concentration_of_petroleum_hydrocarbons_in_sea_water", "mass_concentration_of_phaeopigments_in_sea_water", "mass_concentration_of_phosphate_in_sea_water", "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_pm10_ambient_aerosol_particles_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_pm1_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_prasinoxanthin_in_sea_water", "mass_concentration_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_propane_in_air", "mass_concentration_of_propene_in_air", "mass_concentration_of_radon_in_air", "mass_concentration_of_rain_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_concentration_of_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_silicate_in_sea_water", "mass_concentration_of_sulfate_ambient_aerosol_particles_in_air", "mass_concentration_of_sulfate_dry_aerosol_particles_in_air", "mass_concentration_of_sulfur_dioxide_in_air", "mass_concentration_of_suspended_matter_in_sea_water", "mass_concentration_of_terpenes_in_air", "mass_concentration_of_toluene_in_air", "mass_concentration_of_violaxanthin_in_sea_water", "mass_concentration_of_volcanic_ash_in_air", "mass_concentration_of_water_in_ambient_aerosol_particles_in_air", "mass_concentration_of_water_vapor_in_air", "mass_concentration_of_xylene_in_air", "mass_concentration_of_zeaxanthin_in_sea_water", "mass_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mass_content_of_13C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_14C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_cloud_condensed_water_in_atmosphere_layer", "mass_content_of_cloud_ice_in_atmosphere_layer", "mass_content_of_cloud_liquid_water_in_atmosphere_layer", "mass_content_of_nitrogen_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", "mass_content_of_water_in_atmosphere_layer", "mass_content_of_water_in_soil", "mass_content_of_water_in_soil_layer", "mass_content_of_water_in_soil_layer_defined_by_root_depth", "mass_content_of_water_vapor_containing_17O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_18O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_single_2H_in_atmosphere_layer", "mass_content_of_water_vapor_in_atmosphere_layer", "mass_flux_of_carbon_into_forestry_and_agricultural_products_due_to_crop_harvesting", "mass_flux_of_carbon_into_litter_from_vegetation", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence", "mass_flux_of_carbon_into_sea_water_from_rivers", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_soil_from_vegetation_due_to_senescence", "mass_flux_of_carbon_out_of_soil_due_to_leaching_and_runoff", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_into_sea_from_rivers", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_litter_and_soil_due_to_immobilisation_and_remineralization", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil_due_to_leaching_and_runoff", "mass_fraction_of_acetic_acid_in_air", "mass_fraction_of_aceto_nitrile_in_air", "mass_fraction_of_alkanes_in_air", "mass_fraction_of_alkenes_in_air", "mass_fraction_of_alpha_hexachlorocyclohexane_in_air", "mass_fraction_of_alpha_pinene_in_air", "mass_fraction_of_ammonia_in_air", "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_aromatic_compounds_in_air", "mass_fraction_of_atomic_bromine_in_air", "mass_fraction_of_atomic_chlorine_in_air", "mass_fraction_of_atomic_nitrogen_in_air", "mass_fraction_of_benzene_in_air", "mass_fraction_of_beta_pinene_in_air", "mass_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_bromine_chloride_in_air", "mass_fraction_of_bromine_monoxide_in_air", "mass_fraction_of_bromine_nitrate_in_air", "mass_fraction_of_brox_expressed_as_bromine_in_air", "mass_fraction_of_butane_in_air", "mass_fraction_of_carbon_dioxide_in_air", "mass_fraction_of_carbon_dioxide_tracer_in_air", "mass_fraction_of_carbon_monoxide_in_air", "mass_fraction_of_carbon_tetrachloride_in_air", "mass_fraction_of_cfc113a_in_air", "mass_fraction_of_cfc113_in_air", "mass_fraction_of_cfc114_in_air", "mass_fraction_of_cfc115_in_air", "mass_fraction_of_cfc11_in_air", "mass_fraction_of_cfc12_in_air", "mass_fraction_of_chlorine_dioxide_in_air", "mass_fraction_of_chlorine_monoxide_in_air", "mass_fraction_of_chlorine_nitrate_in_air", "mass_fraction_of_chlorophyll_a_in_sea_water", "mass_fraction_of_clay_in_soil", "mass_fraction_of_cloud_condensed_water_in_air", "mass_fraction_of_cloud_ice_in_air", "mass_fraction_of_cloud_liquid_water_in_air", "mass_fraction_of_clox_expressed_as_chlorine_in_air", "mass_fraction_of_convective_cloud_condensed_water_in_air", "mass_fraction_of_convective_cloud_ice_in_air", "mass_fraction_of_convective_cloud_liquid_water_in_air", "mass_fraction_of_dichlorine_peroxide_in_air", "mass_fraction_of_dimethyl_sulfide_in_air", "mass_fraction_of_dinitrogen_pentoxide_in_air", "mass_fraction_of_dust_dry_aerosol_particles_in_air", "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_ethane_in_air", "mass_fraction_of_ethanol_in_air", "mass_fraction_of_ethene_in_air", "mass_fraction_of_ethyne_in_air", "mass_fraction_of_formaldehyde_in_air", "mass_fraction_of_formic_acid_in_air", "mass_fraction_of_frozen_water_in_soil_moisture", "mass_fraction_of_gaseous_divalent_mercury_in_air", "mass_fraction_of_gaseous_elemental_mercury_in_air", "mass_fraction_of_graupel_and_hail_in_air", "mass_fraction_of_graupel_in_air", "mass_fraction_of_gravel_in_soil", "mass_fraction_of_hail_in_air", "mass_fraction_of_halon1202_in_air", "mass_fraction_of_halon1211_in_air", "mass_fraction_of_halon1301_in_air", "mass_fraction_of_halon2402_in_air", "mass_fraction_of_hcc140a_in_air", "mass_fraction_of_hcfc141b_in_air", "mass_fraction_of_hcfc142b_in_air", "mass_fraction_of_hcfc22_in_air", "mass_fraction_of_hexachlorobiphenyl_in_air", "mass_fraction_of_hox_expressed_as_hydrogen_in_air", "mass_fraction_of_hydrogen_bromide_in_air", "mass_fraction_of_hydrogen_chloride_in_air", "mass_fraction_of_hydrogen_cyanide_in_air", "mass_fraction_of_hydrogen_peroxide_in_air", "mass_fraction_of_hydroperoxyl_radical_in_air", "mass_fraction_of_hydroxyl_radical_in_air", "mass_fraction_of_hypobromous_acid_in_air", "mass_fraction_of_hypochlorous_acid_in_air", "mass_fraction_of_inorganic_bromine_in_air", "mass_fraction_of_inorganic_chlorine_in_air", "mass_fraction_of_isoprene_in_air", "mass_fraction_of_limonene_in_air", "mass_fraction_of_liquid_precipitation_in_air", "mass_fraction_of_mercury_dry_aerosol_particles_in_air", "mass_fraction_of_methane_in_air", "mass_fraction_of_methanesulfonic_acid_dry_aerosol_particles_in_air", "mass_fraction_of_methanol_in_air", "mass_fraction_of_methyl_bromide_in_air", "mass_fraction_of_methyl_chloride_in_air", "mass_fraction_of_methyl_hydroperoxide_in_air", "mass_fraction_of_methyl_peroxy_radical_in_air", "mass_fraction_of_molecular_hydrogen_in_air", "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_nitrate_radical_in_air", "mass_fraction_of_nitric_acid_in_air", "mass_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mass_fraction_of_nitrogen_dioxide_in_air", "mass_fraction_of_nitrogen_monoxide_in_air", "mass_fraction_of_nitrous_acid_in_air", "mass_fraction_of_nitrous_oxide_in_air", "mass_fraction_of_nmvoc_expressed_as_carbon_in_air", "mass_fraction_of_nox_expressed_as_nitrogen_in_air", "mass_fraction_of_noy_expressed_as_nitrogen_in_air", "mass_fraction_of_organic_matter_in_soil", "mass_fraction_of_oxygenated_hydrocarbons_in_air", "mass_fraction_of_ozone_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_peroxyacetyl_nitrate_in_air", "mass_fraction_of_peroxynitric_acid_in_air", "mass_fraction_of_peroxy_radicals_in_air", "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_pm10_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_pm1_ambient_aerosol_particles_in_air", "mass_fraction_of_pm1_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_pm2p5_ammonium_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_dust_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_precipitation_in_air", "mass_fraction_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_propane_in_air", "mass_fraction_of_propene_in_air", "mass_fraction_of_radon_in_air", "mass_fraction_of_rainfall_falling_onto_surface_snow", "mass_fraction_of_sand_in_soil", "mass_fraction_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_shallow_convective_cloud_liquid_water_in_air", "mass_fraction_of_silt_in_soil", "mass_fraction_of_snow_in_air", "mass_fraction_of_solid_precipitation_falling_onto_surface_snow", "mass_fraction_of_stratiform_cloud_ice_in_air", "mass_fraction_of_stratiform_cloud_liquid_water_in_air", "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", "mass_fraction_of_sulfur_dioxide_in_air", "mass_fraction_of_sulfuric_acid_in_air", "mass_fraction_of_terpenes_in_air", "mass_fraction_of_toluene_in_air", "mass_fraction_of_unfrozen_water_in_soil_moisture", "mass_fraction_of_water_in_air", "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm2p5_ambient_aerosol_particles_in_air", "mass_fraction_of_xylene_in_air", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_strain_rate", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_stress", "medium_soil_pool_mass_content_of_carbon", "medium_type_cloud_area_fraction", "minimum_depth_of_aragonite_undersaturation_in_sea_water", "minimum_depth_of_calcite_undersaturation_in_sea_water", "minus_one_times_surface_upwelling_longwave_flux_in_air", "minus_one_times_surface_upwelling_shortwave_flux_in_air", "minus_one_times_toa_outgoing_shortwave_flux", "minus_one_times_water_flux_into_sea_water_from_rivers", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "minus_tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "minus_tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "miscellaneous_living_matter_mass_content_of_carbon", "miscellaneous_living_matter_mass_content_of_nitrogen", "model_level_number", "model_level_number_at_base_of_ocean_mixed_layer_defined_by_sigma_theta", "model_level_number_at_convective_cloud_base", "model_level_number_at_convective_cloud_top", "model_level_number_at_sea_floor", "model_level_number_at_top_of_atmosphere_boundary_layer", "moisture_content_of_soil_layer_at_field_capacity", "mole_concentration_of_acetic_acid_in_air", "mole_concentration_of_aceto_nitrile_in_air", "mole_concentration_of_adenosine_triphosphate_in_sea_water", "mole_concentration_of_alpha_hexachlorocyclohexane_in_air", "mole_concentration_of_alpha_pinene_in_air", "mole_concentration_of_ammonia_in_air", "mole_concentration_of_ammonium_in_sea_water", "mole_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_atomic_bromine_in_air", "mole_concentration_of_atomic_chlorine_in_air", "mole_concentration_of_atomic_nitrogen_in_air", "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", "mole_concentration_of_benzene_in_air", "mole_concentration_of_beta_pinene_in_air", "mole_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mole_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_bromine_chloride_in_air", "mole_concentration_of_bromine_monoxide_in_air", "mole_concentration_of_bromine_nitrate_in_air", "mole_concentration_of_brox_expressed_as_bromine_in_air", "mole_concentration_of_butane_in_air", "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_at_saturation", "mole_concentration_of_carbonate_abiotic_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_calcite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_natural_analogue_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbon_dioxide_in_air", "mole_concentration_of_carbon_monoxide_in_air", "mole_concentration_of_carbon_tetrachloride_in_air", "mole_concentration_of_cfc113a_in_air", "mole_concentration_of_cfc113_in_air", "mole_concentration_of_cfc114_in_air", "mole_concentration_of_cfc115_in_air", "mole_concentration_of_cfc11_in_air", "mole_concentration_of_cfc11_in_sea_water", "mole_concentration_of_cfc12_in_air", "mole_concentration_of_cfc12_in_sea_water", "mole_concentration_of_chlorine_dioxide_in_air", "mole_concentration_of_chlorine_monoxide_in_air", "mole_concentration_of_chlorine_nitrate_in_air", "mole_concentration_of_clox_expressed_as_chlorine_in_air", "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_dichlorine_peroxide_in_air", "mole_concentration_of_dimethyl_sulfide_in_air", "mole_concentration_of_dimethyl_sulfide_in_sea_water", "mole_concentration_of_dinitrogen_pentoxide_in_air", "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_abiotic_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_natural_analogue_in_sea_water", "mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", "mole_concentration_of_dissolved_iron_in_sea_water", "mole_concentration_of_dissolved_molecular_nitrogen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile", "mole_concentration_of_dissolved_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_carbon_in_sea_water", "mole_concentration_of_dissolved_organic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_phosphorus_in_sea_water", "mole_concentration_of_ethane_in_air", "mole_concentration_of_ethanol_in_air", "mole_concentration_of_ethene_in_air", "mole_concentration_of_ethyne_in_air", "mole_concentration_of_formaldehyde_in_air", "mole_concentration_of_formic_acid_in_air", "mole_concentration_of_gaseous_divalent_mercury_in_air", "mole_concentration_of_gaseous_elemental_mercury_in_air", "mole_concentration_of_halon1202_in_air", "mole_concentration_of_halon1211_in_air", "mole_concentration_of_halon1301_in_air", "mole_concentration_of_halon2402_in_air", "mole_concentration_of_hcc140a_in_air", "mole_concentration_of_hcfc141b_in_air", "mole_concentration_of_hcfc142b_in_air", "mole_concentration_of_hcfc22_in_air", "mole_concentration_of_hexachlorobiphenyl_in_air", "mole_concentration_of_hox_expressed_as_hydrogen_in_air", "mole_concentration_of_hydrogen_bromide_in_air", "mole_concentration_of_hydrogen_chloride_in_air", "mole_concentration_of_hydrogen_cyanide_in_air", "mole_concentration_of_hydrogen_peroxide_in_air", "mole_concentration_of_hydrogen_sulfide_in_sea_water", "mole_concentration_of_hydroperoxyl_radical_in_air", "mole_concentration_of_hydroxyl_radical_in_air", "mole_concentration_of_hypobromous_acid_in_air", "mole_concentration_of_hypochlorous_acid_in_air", "mole_concentration_of_inorganic_bromine_in_air", "mole_concentration_of_inorganic_chlorine_in_air", "mole_concentration_of_isoprene_in_air", "mole_concentration_of_limonene_in_air", "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_methane_in_air", "mole_concentration_of_methanol_in_air", "mole_concentration_of_methyl_bromide_in_air", "mole_concentration_of_methyl_chloride_in_air", "mole_concentration_of_methyl_hydroperoxide_in_air", "mole_concentration_of_methyl_peroxy_radical_in_air", "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_molecular_hydrogen_in_air", "mole_concentration_of_nitrate_and_nitrite_in_sea_water", "mole_concentration_of_nitrate_in_sea_water", "mole_concentration_of_nitrate_radical_in_air", "mole_concentration_of_nitric_acid_in_air", "mole_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_concentration_of_nitrite_in_sea_water", "mole_concentration_of_nitrogen_dioxide_in_air", "mole_concentration_of_nitrogen_monoxide_in_air", "mole_concentration_of_nitrous_acid_in_air", "mole_concentration_of_nitrous_oxide_in_air", "mole_concentration_of_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_nox_expressed_as_nitrogen_in_air", "mole_concentration_of_noy_expressed_as_nitrogen_in_air", "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water", "mole_concentration_of_ozone_in_air", "mole_concentration_of_particulate_matter_expressed_as_carbon_in_sea_water", "mole_concentration_of_particulate_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_nitrogen_in_sea_water", "mole_concentration_of_peroxyacetyl_nitrate_in_air", "mole_concentration_of_peroxynitric_acid_in_air", "mole_concentration_of_phosphate_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water", "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_propane_in_air", "mole_concentration_of_propene_in_air", "mole_concentration_of_radon_in_air", "mole_concentration_of_silicate_in_sea_water", "mole_concentration_of_sulfur_dioxide_in_air", "mole_concentration_of_sulfur_hexafluoride_in_sea_water", "mole_concentration_of_toluene_in_air", "mole_concentration_of_water_vapor_in_air", "mole_concentration_of_xylene_in_air", "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water", "mole_content_of_carbon_monoxide_in_atmosphere_layer", "mole_content_of_methane_in_atmosphere_layer", "mole_content_of_nitrogen_dioxide_in_atmosphere_layer", "mole_content_of_ozone_in_atmosphere_layer", "mole_fraction_of_acetaldehyde_in_air", "mole_fraction_of_acetic_acid_in_air", "mole_fraction_of_acetone_in_air", "mole_fraction_of_aceto_nitrile_in_air", "mole_fraction_of_aldehydes_in_air", "mole_fraction_of_alkanes_in_air", "mole_fraction_of_alkenes_in_air", "mole_fraction_of_alpha_hexachlorocyclohexane_in_air", "mole_fraction_of_alpha_pinene_in_air", "mole_fraction_of_ammonia_in_air", "mole_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_artificial_tracer_with_fixed_lifetime_in_air", "mole_fraction_of_atomic_bromine_in_air", "mole_fraction_of_atomic_chlorine_in_air", "mole_fraction_of_atomic_nitrogen_in_air", "mole_fraction_of_benzene_in_air", "mole_fraction_of_beta_pinene_in_air", "mole_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_bromine_chloride_in_air", "mole_fraction_of_bromine_monoxide_in_air", "mole_fraction_of_bromine_nitrate_in_air", "mole_fraction_of_brox_expressed_as_bromine_in_air", "mole_fraction_of_butane_in_air", "mole_fraction_of_carbon_dioxide_in_air", "mole_fraction_of_carbon_monoxide_in_air", "mole_fraction_of_carbon_tetrachloride_in_air", "mole_fraction_of_carbon_tetrafluoride_in_air", "mole_fraction_of_carbonyl_fluoride_in_air", "mole_fraction_of_carbonyl_sulfide_in_air", "mole_fraction_of_cfc113a_in_air", "mole_fraction_of_cfc113_in_air", "mole_fraction_of_cfc114_in_air", "mole_fraction_of_cfc115_in_air", "mole_fraction_of_cfc11_in_air", "mole_fraction_of_cfc12_in_air", "mole_fraction_of_chlorine_dioxide_in_air", "mole_fraction_of_chlorine_monoxide_in_air", "mole_fraction_of_chlorine_nitrate_in_air", "mole_fraction_of_chloroform_in_air", "mole_fraction_of_clox_expressed_as_chlorine_in_air", "mole_fraction_of_dichlorine_in_air", "mole_fraction_of_dichlorine_peroxide_in_air", "mole_fraction_of_dichloromethane_in_air", "mole_fraction_of_dimethyl_sulfide_in_air", "mole_fraction_of_dinitrogen_pentoxide_in_air", "mole_fraction_of_ethane_in_air", "mole_fraction_of_ethanol_in_air", "mole_fraction_of_ethene_in_air", "mole_fraction_of_ethyne_in_air", "mole_fraction_of_formaldehyde_in_air", "mole_fraction_of_formic_acid_in_air", "mole_fraction_of_gaseous_divalent_mercury_in_air", "mole_fraction_of_gaseous_elemental_mercury_in_air", "mole_fraction_of_glyoxal_in_air", "mole_fraction_of_halon1202_in_air", "mole_fraction_of_halon1211_in_air", "mole_fraction_of_halon1301_in_air", "mole_fraction_of_halon2402_in_air", "mole_fraction_of_hcc140a_in_air", "mole_fraction_of_hcfc124_in_air", "mole_fraction_of_hcfc141b_in_air", "mole_fraction_of_hcfc142b_in_air", "mole_fraction_of_hcfc22_in_air", "mole_fraction_of_hexachlorobiphenyl_in_air", "mole_fraction_of_hfc125_in_air", "mole_fraction_of_hfc134a_in_air", "mole_fraction_of_hfc143a_in_air", "mole_fraction_of_hfc152a_in_air", "mole_fraction_of_hfc227ea_in_air", "mole_fraction_of_hfc236fa_in_air", "mole_fraction_of_hfc23_in_air", "mole_fraction_of_hfc245fa_in_air", "mole_fraction_of_hfc32_in_air", "mole_fraction_of_hfc365mfc_in_air", "mole_fraction_of_hfc4310mee_in_air", "mole_fraction_of_hox_expressed_as_hydrogen_in_air", "mole_fraction_of_hydrogen_bromide_in_air", "mole_fraction_of_hydrogen_chloride_in_air", "mole_fraction_of_hydrogen_cyanide_in_air", "mole_fraction_of_hydrogen_peroxide_in_air", "mole_fraction_of_hydrogen_sulfide_in_air", "mole_fraction_of_hydroperoxyl_radical_in_air", "mole_fraction_of_hydroxyl_radical_in_air", "mole_fraction_of_hypobromous_acid_in_air", "mole_fraction_of_hypochlorous_acid_in_air", "mole_fraction_of_inorganic_bromine_in_air", "mole_fraction_of_inorganic_chlorine_in_air", "mole_fraction_of_isoprene_in_air", "mole_fraction_of_limonene_in_air", "mole_fraction_of_methane_in_air", "mole_fraction_of_methanol_in_air", "mole_fraction_of_methyl_bromide_in_air", "mole_fraction_of_methyl_chloride_in_air", "mole_fraction_of_methylglyoxal_in_air", "mole_fraction_of_methyl_hydroperoxide_in_air", "mole_fraction_of_methyl_peroxy_radical_in_air", "mole_fraction_of_molecular_hydrogen_in_air", "mole_fraction_of_nitrate_radical_in_air", "mole_fraction_of_nitric_acid_in_air", "mole_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_fraction_of_nitrogen_dioxide_in_air", "mole_fraction_of_nitrogen_monoxide_in_air", "mole_fraction_of_nitrogen_trifluoride_in_air", "mole_fraction_of_nitrous_acid_in_air", "mole_fraction_of_nitrous_oxide_in_air", "mole_fraction_of_nmvoc_expressed_as_carbon_in_air", "mole_fraction_of_nox_expressed_as_nitrogen_in_air", "mole_fraction_of_noy_expressed_as_nitrogen_in_air", "mole_fraction_of_organic_nitrates_in_air", "mole_fraction_of_ox_in_air", "mole_fraction_of_ozone_in_air", "mole_fraction_of_perchloroethene_in_air", "mole_fraction_of_peroxyacetyl_nitrate_in_air", "mole_fraction_of_peroxynitric_acid_in_air", "mole_fraction_of_pfc116_in_air", "mole_fraction_of_pfc218_in_air", "mole_fraction_of_pfc318_in_air", "mole_fraction_of_propane_in_air", "mole_fraction_of_propene_in_air", "mole_fraction_of_radon_in_air", "mole_fraction_of_sulfur_dioxide_in_air", "mole_fraction_of_sulfur_hexafluoride_in_air", "mole_fraction_of_sulfuryl_fluoride_in_air", "mole_fraction_of_toluene_in_air", "mole_fraction_of_water_vapor_in_air", "mole_fraction_of_xylene_in_air", "mole_ratio_of_nitrate_to_phosphate_in_sea_water", "moles_of_cfc11_per_unit_mass_in_sea_water", "moles_of_dissolved_inorganic_carbon_per_unit_mass_in_sea_water", "moles_of_nitrate_and_nitrite_per_unit_mass_in_sea_water", "moles_of_nitrate_per_unit_mass_in_sea_water", "moles_of_nitrite_per_unit_mass_in_sea_water", "moles_of_oxygen_per_unit_mass_in_sea_water", "moles_of_phosphate_per_unit_mass_in_sea_water", "moles_of_silicate_per_unit_mass_in_sea_water", "multi_variate_test_quality_flag", "neighbor_test_quality_flag", "net_downward_longwave_flux_in_air", "net_downward_longwave_flux_in_air_assuming_clear_sky", "net_downward_radiative_flux_at_top_of_atmosphere_model", "net_downward_shortwave_flux_at_sea_water_surface", "net_downward_shortwave_flux_in_air", "net_downward_shortwave_flux_in_air_assuming_clear_sky", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_calcareous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diatoms", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diazotrophic_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_miscellaneous_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_phytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_picophytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_due_to_nitrate_utilization", "net_primary_production_of_biomass_expressed_as_carbon_per_unit_volume_in_sea_water", "net_primary_productivity_of_biomass_expressed_as_carbon", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_leaves", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_miscellaneous_living_matter", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_roots", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_wood", "net_rate_of_absorption_of_longwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_ocean_layer", "net_upward_longwave_flux_in_air", "net_upward_longwave_flux_in_air_assuming_clear_sky", "net_upward_shortwave_flux_in_air", "net_upward_shortwave_flux_in_air_assuming_clear_sky", "nitrogen_growth_limitation_of_calcareous_phytoplankton", "nitrogen_growth_limitation_of_diatoms", "nitrogen_growth_limitation_of_diazotrophic_phytoplankton", "nitrogen_growth_limitation_of_miscellaneous_phytoplankton", "nitrogen_growth_limitation_of_picophytoplankton", "nitrogen_mass_content_of_forestry_and_agricultural_products", "nitrogen_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "nitrogen_mass_flux_into_litter_from_vegetation", "nitrogen_mass_flux_into_soil_from_litter", "nitrogen_mass_flux_into_soil_from_vegetation_excluding_litter", "non_tidal_elevation_of_sea_surface_height", "normalized_difference_vegetation_index", "northward_air_velocity_relative_to_sea_water", "northward_atmosphere_dry_static_energy_transport_across_unit_distance", "northward_atmosphere_heat_transport", "northward_atmosphere_water_transport_across_unit_distance", "northward_atmosphere_water_vapor_transport_across_unit_distance", "northward_derivative_of_eastward_sea_ice_velocity", "northward_derivative_of_eastward_wind", "northward_derivative_of_northward_wind", "northward_derivative_of_wind_from_direction", "northward_eliassen_palm_flux_in_air", "northward_flood_water_velocity", "northward_friction_velocity_in_air", "northward_heat_flux_in_air_due_to_eddy_advection", "northward_land_ice_velocity", "northward_mass_flux_of_air", "northward_momentum_flux_correction", "northward_northward_derivative_of_geopotential", "northward_ocean_freshwater_transport", "northward_ocean_freshwater_transport_due_to_diffusion", "northward_ocean_freshwater_transport_due_to_gyre", "northward_ocean_freshwater_transport_due_to_overturning", "northward_ocean_freshwater_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport", "northward_ocean_heat_transport_due_to_diffusion", "northward_ocean_heat_transport_due_to_gyre", "northward_ocean_heat_transport_due_to_overturning", "northward_ocean_heat_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_diffusion", "northward_ocean_heat_transport_due_to_parameterized_submesoscale_eddy_advection", "northward_ocean_salt_transport", "northward_ocean_salt_transport_due_to_diffusion", "northward_ocean_salt_transport_due_to_gyre", "northward_ocean_salt_transport_due_to_overturning", "northward_ocean_salt_transport_due_to_parameterized_eddy_advection", "northward_sea_ice_displacement", "northward_sea_ice_velocity", "northward_sea_water_velocity", "northward_sea_water_velocity_assuming_no_tide", "northward_sea_water_velocity_at_sea_floor", "northward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "northward_sea_water_velocity_due_to_tides", "northward_transformed_eulerian_mean_air_velocity", "northward_upward_derivative_of_geopotential", "northward_water_vapor_flux_in_air", "northward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "northward_westward_derivative_of_geopotential", "northward_wind", "northward_wind_shear", "nudging_increment_in_mass_content_of_water_in_soil", "nudging_increment_in_snow_and_ice_amount_on_land", "number_concentration_of_aerosol_particles_at_stp_in_air", "number_concentration_of_ambient_aerosol_particles_in_air", "number_concentration_of_biological_taxon_in_sea_water", "number_concentration_of_cloud_condensation_nuclei_at_stp_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air_at_liquid_water_cloud_top", "number_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "number_concentration_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", "number_concentration_of_ice_crystals_in_air", "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top", "number_concentration_of_nucleation_mode_ambient_aerosol_particles_in_air", "number_concentration_of_ozone_molecules_in_air", "number_concentration_of_pm10_aerosol_particles_in_air", "number_concentration_of_pm2p5_aerosol_particles_in_air", "number_concentration_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "number_of_days_with_air_temperature_above_threshold", "number_of_days_with_air_temperature_below_threshold", "number_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "number_of_days_with_surface_temperature_below_threshold", "number_of_days_with_wind_speed_above_threshold", "number_of_icebergs_per_unit_area", "number_of_missing_observations", "number_of_observations", "ocean_barotropic_mass_streamfunction", "ocean_barotropic_streamfunction", "ocean_double_sigma_coordinate", "ocean_heat_x_transport", "ocean_heat_x_transport_due_to_diffusion", "ocean_heat_x_transport_due_to_parameterized_eddy_advection", "ocean_heat_y_transport", "ocean_heat_y_transport_due_to_diffusion", "ocean_heat_y_transport_due_to_parameterized_eddy_advection", "ocean_isopycnal_layer_thickness_diffusivity", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_vertical_friction", "ocean_kinetic_energy_dissipation_per_unit_area_due_to_xy_friction", "ocean_mass_content_of_dissolved_inorganic_carbon", "ocean_mass_content_of_dissolved_organic_carbon", "ocean_mass_content_of_particulate_organic_matter_expressed_as_carbon", "ocean_mass_x_transport", "ocean_mass_x_transport_due_to_advection", "ocean_mass_x_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_mass_y_transport", "ocean_mass_y_transport_due_to_advection", "ocean_mass_y_transport_due_to_advection_and_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "ocean_meridional_overturning_streamfunction", "ocean_mixed_layer_thickness", "ocean_mixed_layer_thickness_defined_by_mixing_scheme", "ocean_mixed_layer_thickness_defined_by_sigma_t", "ocean_mixed_layer_thickness_defined_by_sigma_theta", "ocean_mixed_layer_thickness_defined_by_temperature", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_deficit", "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_threshold", "ocean_momentum_xy_biharmonic_diffusivity", "ocean_momentum_xy_laplacian_diffusivity", "ocean_montgomery_potential", "ocean_relative_vorticity", "ocean_rigid_lid_pressure", "ocean_rigid_lid_pressure_expressed_as_sea_surface_height_above_geoid", "ocean_salt_x_transport", "ocean_salt_y_transport", "ocean_s_coordinate", "ocean_s_coordinate_g1", "ocean_s_coordinate_g2", "ocean_sigma_coordinate", "ocean_sigma_z_coordinate", "ocean_tracer_biharmonic_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_epineutral_biharmonic_diffusivity", "ocean_tracer_epineutral_laplacian_diffusivity", "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", "ocean_tracer_xy_biharmonic_diffusivity", "ocean_tracer_xy_laplacian_diffusivity", "ocean_vertical_diffusivity", "ocean_vertical_heat_diffusivity", "ocean_vertical_momentum_diffusivity", "ocean_vertical_momentum_diffusivity_due_to_background", "ocean_vertical_momentum_diffusivity_due_to_convection", "ocean_vertical_momentum_diffusivity_due_to_form_drag", "ocean_vertical_momentum_diffusivity_due_to_tides", "ocean_vertical_salt_diffusivity", "ocean_vertical_tracer_diffusivity", "ocean_vertical_tracer_diffusivity_due_to_background", "ocean_vertical_tracer_diffusivity_due_to_convection", "ocean_vertical_tracer_diffusivity_due_to_tides", "ocean_vertical_tracer_diffusivity_due_to_wind_mixing", "ocean_volume", "ocean_volume_fraction", "ocean_volume_transport_across_line", "ocean_volume_x_transport", "ocean_volume_y_transport", "ocean_y_overturning_mass_streamfunction", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_y_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", "omnidirectional_photosynthetic_spherical_irradiance_in_sea_water", "omnidirectional_spherical_irradiance_per_unit_wavelength_in_sea_water", "optical_thickness_of_atmosphere_layer_due_to_ambient_aerosol_particles", "original_air_pressure_of_lifted_parcel", "outgoing_water_volume_transport_along_river_channel", "partial_pressure_of_carbon_dioxide_in_sea_water", "partial_pressure_of_methane_in_sea_water", "permafrost_active_layer_thickness", "permafrost_area_fraction", "permafrost_layer_thickness", "phase_of_global_average_sea_level_change", "photolysis_rate_of_molecular_oxygen", "photolysis_rate_of_nitrogen_dioxide", "photolysis_rate_of_ozone", "photolysis_rate_of_ozone_to_1D_oxygen_atom", "planetary_albedo", "platform_azimuth_angle", "platform_course", "platform_heave", "platform_heave_down", "platform_heave_rate", "platform_heave_rate_down", "platform_heave_rate_up", "platform_heave_up", "platform_id", "platform_name", "platform_orientation", "platform_pitch", "platform_pitch_fore_down", "platform_pitch_fore_up", "platform_pitch_rate", "platform_pitch_rate_fore_down", "platform_pitch_rate_fore_up", "platform_roll", "platform_roll_rate", "platform_roll_rate_starboard_down", "platform_roll_rate_starboard_up", "platform_roll_starboard_down", "platform_roll_starboard_up", "platform_speed_wrt_air", "platform_speed_wrt_ground", "platform_speed_wrt_sea_water", "platform_surge", "platform_surge_aft", "platform_surge_fore", "platform_surge_rate", "platform_surge_rate_aft", "platform_surge_rate_fore", "platform_sway", "platform_sway_port", "platform_sway_rate", "platform_sway_rate_port", "platform_sway_rate_starboard", "platform_sway_starboard", "platform_view_angle", "platform_yaw", "platform_yaw_fore_port", "platform_yaw_fore_starboard", "platform_yaw_rate", "platform_yaw_rate_fore_port", "platform_yaw_rate_fore_starboard", "platform_zenith_angle", "potential_energy_content_of_atmosphere_layer", "potential_vorticity_of_atmosphere_layer", "potential_vorticity_of_ocean_layer", "precipitation_amount", "precipitation_flux", "precipitation_flux_containing_17O", "precipitation_flux_containing_18O", "precipitation_flux_containing_single_2H", "precipitation_flux_onto_canopy", "predominant_precipitation_type_at_surface", "pressure_at_effective_cloud_top_defined_by_infrared_radiation", "probability_distribution_of_wind_from_direction_over_time", "product_of_air_temperature_and_specific_humidity", "product_of_eastward_sea_water_velocity_and_salinity", "product_of_eastward_sea_water_velocity_and_temperature", "product_of_eastward_wind_and_air_temperature", "product_of_eastward_wind_and_geopotential_height", "product_of_eastward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_eastward_wind_and_northward_wind", "product_of_eastward_wind_and_specific_humidity", "product_of_eastward_wind_and_upward_air_velocity", "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", "product_of_lagrangian_tendency_of_air_pressure_and_geopotential_height", "product_of_lagrangian_tendency_of_air_pressure_and_specific_humidity", "product_of_northward_sea_water_velocity_and_salinity", "product_of_northward_sea_water_velocity_and_temperature", "product_of_northward_wind_and_air_temperature", "product_of_northward_wind_and_geopotential_height", "product_of_northward_wind_and_lagrangian_tendency_of_air_pressure", "product_of_northward_wind_and_specific_humidity", "product_of_northward_wind_and_upward_air_velocity", "product_of_upward_air_velocity_and_air_temperature", "product_of_upward_air_velocity_and_specific_humidity", "projection_x_angular_coordinate", "projection_x_coordinate", "projection_y_angular_coordinate", "projection_y_coordinate", "proportion_of_acceptable_signal_returns_from_acoustic_instrument_in_sea_water", "quality_flag", "radial_sea_water_velocity_away_from_instrument", "radial_sea_water_velocity_toward_instrument", "radial_velocity_of_scatterers_away_from_instrument", "radial_velocity_of_scatterers_toward_instrument", "radiation_frequency", "radiation_wavelength", "radioactivity_concentration_in_air", "radioactivity_concentration_of_101Mo_in_air", "radioactivity_concentration_of_101Tc_in_air", "radioactivity_concentration_of_102Mo_in_air", "radioactivity_concentration_of_102mTc_in_air", "radioactivity_concentration_of_102Tc_in_air", "radioactivity_concentration_of_103mRh_in_air", "radioactivity_concentration_of_103Ru_in_air", "radioactivity_concentration_of_104Tc_in_air", "radioactivity_concentration_of_105mRh_in_air", "radioactivity_concentration_of_105Rh_in_air", "radioactivity_concentration_of_105Ru_in_air", "radioactivity_concentration_of_106mRh_in_air", "radioactivity_concentration_of_106Rh_in_air", "radioactivity_concentration_of_106Ru_in_air", "radioactivity_concentration_of_107mPd_in_air", "radioactivity_concentration_of_107Pd_in_air", "radioactivity_concentration_of_107Rh_in_air", "radioactivity_concentration_of_109mAg_in_air", "radioactivity_concentration_of_109Pd_in_air", "radioactivity_concentration_of_110mAg_in_air", "radioactivity_concentration_of_111Ag_in_air", "radioactivity_concentration_of_111mAg_in_air", "radioactivity_concentration_of_111mCd_in_air", "radioactivity_concentration_of_111mPd_in_air", "radioactivity_concentration_of_111Pd_in_air", "radioactivity_concentration_of_112Ag_in_air", "radioactivity_concentration_of_112Pd_in_air", "radioactivity_concentration_of_113Ag_in_air", "radioactivity_concentration_of_113Cd_in_air", "radioactivity_concentration_of_113mAg_in_air", "radioactivity_concentration_of_113mCd_in_air", "radioactivity_concentration_of_113mIn_in_air", "radioactivity_concentration_of_115Ag_in_air", "radioactivity_concentration_of_115Cd_in_air", "radioactivity_concentration_of_115In_in_air", "radioactivity_concentration_of_115mAg_in_air", "radioactivity_concentration_of_115mCd_in_air", "radioactivity_concentration_of_115mIn_in_air", "radioactivity_concentration_of_116In_in_air", "radioactivity_concentration_of_116mIn_in_air", "radioactivity_concentration_of_117Cd_in_air", "radioactivity_concentration_of_117In_in_air", "radioactivity_concentration_of_117mCd_in_air", "radioactivity_concentration_of_117mIn_in_air", "radioactivity_concentration_of_117mSn_in_air", "radioactivity_concentration_of_118Cd_in_air", "radioactivity_concentration_of_118In_in_air", "radioactivity_concentration_of_118mIn_in_air", "radioactivity_concentration_of_119In_in_air", "radioactivity_concentration_of_119mIn_in_air", "radioactivity_concentration_of_119mSn_in_air", "radioactivity_concentration_of_11C_in_air", "radioactivity_concentration_of_121mSn_in_air", "radioactivity_concentration_of_121Sn_in_air", "radioactivity_concentration_of_123mSn_in_air", "radioactivity_concentration_of_123Sn_in_air", "radioactivity_concentration_of_124mSb_in_air", "radioactivity_concentration_of_124Sb_in_air", "radioactivity_concentration_of_125mTe_in_air", "radioactivity_concentration_of_125Sb_in_air", "radioactivity_concentration_of_125Sn_in_air", "radioactivity_concentration_of_126mSb_in_air", "radioactivity_concentration_of_126Sb_in_air", "radioactivity_concentration_of_126Sn_in_air", "radioactivity_concentration_of_127mTe_in_air", "radioactivity_concentration_of_127Sb_in_air", "radioactivity_concentration_of_127Sn_in_air", "radioactivity_concentration_of_127Te_in_air", "radioactivity_concentration_of_128mSb_in_air", "radioactivity_concentration_of_128Sb_in_air", "radioactivity_concentration_of_128Sn_in_air", "radioactivity_concentration_of_129I_in_air", "radioactivity_concentration_of_129mTe_in_air", "radioactivity_concentration_of_129mXe_in_air", "radioactivity_concentration_of_129Sb_in_air", "radioactivity_concentration_of_129Te_in_air", "radioactivity_concentration_of_130I_in_air", "radioactivity_concentration_of_130mI_in_air", "radioactivity_concentration_of_130mSb_in_air", "radioactivity_concentration_of_130Sb_in_air", "radioactivity_concentration_of_130Sn_in_air", "radioactivity_concentration_of_131I_in_air", "radioactivity_concentration_of_131mTe_in_air", "radioactivity_concentration_of_131mXe_in_air", "radioactivity_concentration_of_131Sb_in_air", "radioactivity_concentration_of_131Te_in_air", "radioactivity_concentration_of_132I_in_air", "radioactivity_concentration_of_132Te_in_air", "radioactivity_concentration_of_133I_in_air", "radioactivity_concentration_of_133mI_in_air", "radioactivity_concentration_of_133mTe_in_air", "radioactivity_concentration_of_133mXe_in_air", "radioactivity_concentration_of_133Te_in_air", "radioactivity_concentration_of_133Xe_in_air", "radioactivity_concentration_of_134Cs_in_air", "radioactivity_concentration_of_134I_in_air", "radioactivity_concentration_of_134mCs_in_air", "radioactivity_concentration_of_134mI_in_air", "radioactivity_concentration_of_134mXe_in_air", "radioactivity_concentration_of_134Te_in_air", "radioactivity_concentration_of_135Cs_in_air", "radioactivity_concentration_of_135I_in_air", "radioactivity_concentration_of_135mBa_in_air", "radioactivity_concentration_of_135mCs_in_air", "radioactivity_concentration_of_135mXe_in_air", "radioactivity_concentration_of_135Xe_in_air", "radioactivity_concentration_of_136Cs_in_air", "radioactivity_concentration_of_137Cs_in_air", "radioactivity_concentration_of_137mBa_in_air", "radioactivity_concentration_of_137Xe_in_air", "radioactivity_concentration_of_138Cs_in_air", "radioactivity_concentration_of_138Xe_in_air", "radioactivity_concentration_of_139Ba_in_air", "radioactivity_concentration_of_13N_in_air", "radioactivity_concentration_of_140Ba_in_air", "radioactivity_concentration_of_140La_in_air", "radioactivity_concentration_of_141Ce_in_air", "radioactivity_concentration_of_141La_in_air", "radioactivity_concentration_of_142Ce_in_air", "radioactivity_concentration_of_142La_in_air", "radioactivity_concentration_of_142mPr_in_air", "radioactivity_concentration_of_142Pr_in_air", "radioactivity_concentration_of_143Ce_in_air", "radioactivity_concentration_of_143La_in_air", "radioactivity_concentration_of_143Pr_in_air", "radioactivity_concentration_of_144Ce_in_air", "radioactivity_concentration_of_144mPr_in_air", "radioactivity_concentration_of_144Nd_in_air", "radioactivity_concentration_of_144Pr_in_air", "radioactivity_concentration_of_145Pr_in_air", "radioactivity_concentration_of_146Ce_in_air", "radioactivity_concentration_of_146Pr_in_air", "radioactivity_concentration_of_147Nd_in_air", "radioactivity_concentration_of_147Pm_in_air", "radioactivity_concentration_of_147Pr_in_air", "radioactivity_concentration_of_147Sm_in_air", "radioactivity_concentration_of_148mPm_in_air", "radioactivity_concentration_of_148Pm_in_air", "radioactivity_concentration_of_148Sm_in_air", "radioactivity_concentration_of_149Nd_in_air", "radioactivity_concentration_of_149Pm_in_air", "radioactivity_concentration_of_149Sm_in_air", "radioactivity_concentration_of_150Pm_in_air", "radioactivity_concentration_of_151Nd_in_air", "radioactivity_concentration_of_151Pm_in_air", "radioactivity_concentration_of_151Sm_in_air", "radioactivity_concentration_of_152mPm_in_air", "radioactivity_concentration_of_152Nd_in_air", "radioactivity_concentration_of_152Pm_in_air", "radioactivity_concentration_of_153Sm_in_air", "radioactivity_concentration_of_154Eu_in_air", "radioactivity_concentration_of_155Eu_in_air", "radioactivity_concentration_of_155Sm_in_air", "radioactivity_concentration_of_156Eu_in_air", "radioactivity_concentration_of_156Sm_in_air", "radioactivity_concentration_of_157Eu_in_air", "radioactivity_concentration_of_158Eu_in_air", "radioactivity_concentration_of_159Eu_in_air", "radioactivity_concentration_of_159Gd_in_air", "radioactivity_concentration_of_15O_in_air", "radioactivity_concentration_of_160Tb_in_air", "radioactivity_concentration_of_161Tb_in_air", "radioactivity_concentration_of_162Gd_in_air", "radioactivity_concentration_of_162mTb_in_air", "radioactivity_concentration_of_162Tb_in_air", "radioactivity_concentration_of_163Tb_in_air", "radioactivity_concentration_of_165Dy_in_air", "radioactivity_concentration_of_18F_in_air", "radioactivity_concentration_of_206Hg_in_air", "radioactivity_concentration_of_206Tl_in_air", "radioactivity_concentration_of_207mPb_in_air", "radioactivity_concentration_of_207Tl_in_air", "radioactivity_concentration_of_208Tl_in_air", "radioactivity_concentration_of_209Bi_in_air", "radioactivity_concentration_of_209Pb_in_air", "radioactivity_concentration_of_209Tl_in_air", "radioactivity_concentration_of_210Bi_in_air", "radioactivity_concentration_of_210Pb_in_air", "radioactivity_concentration_of_210Po_in_air", "radioactivity_concentration_of_210Tl_in_air", "radioactivity_concentration_of_211Bi_in_air", "radioactivity_concentration_of_211Pb_in_air", "radioactivity_concentration_of_211Po_in_air", "radioactivity_concentration_of_212Bi_in_air", "radioactivity_concentration_of_212Pb_in_air", "radioactivity_concentration_of_212Po_in_air", "radioactivity_concentration_of_213Bi_in_air", "radioactivity_concentration_of_213Pb_in_air", "radioactivity_concentration_of_213Po_in_air", "radioactivity_concentration_of_214Bi_in_air", "radioactivity_concentration_of_214Pb_in_air", "radioactivity_concentration_of_214Po_in_air", "radioactivity_concentration_of_215At_in_air", "radioactivity_concentration_of_215Bi_in_air", "radioactivity_concentration_of_215Po_in_air", "radioactivity_concentration_of_216At_in_air", "radioactivity_concentration_of_216Po_in_air", "radioactivity_concentration_of_217At_in_air", "radioactivity_concentration_of_217Po_in_air", "radioactivity_concentration_of_218At_in_air", "radioactivity_concentration_of_218Po_in_air", "radioactivity_concentration_of_218Rn_in_air", "radioactivity_concentration_of_219At_in_air", "radioactivity_concentration_of_219Rn_in_air", "radioactivity_concentration_of_220Rn_in_air", "radioactivity_concentration_of_221Fr_in_air", "radioactivity_concentration_of_221Rn_in_air", "radioactivity_concentration_of_222Fr_in_air", "radioactivity_concentration_of_222Ra_in_air", "radioactivity_concentration_of_222Rn_in_air", "radioactivity_concentration_of_223Fr_in_air", "radioactivity_concentration_of_223Ra_in_air", "radioactivity_concentration_of_223Rn_in_air", "radioactivity_concentration_of_224Ra_in_air", "radioactivity_concentration_of_225Ac_in_air", "radioactivity_concentration_of_225Ra_in_air", "radioactivity_concentration_of_226Ac_in_air", "radioactivity_concentration_of_226Ra_in_air", "radioactivity_concentration_of_226Th_in_air", "radioactivity_concentration_of_227Ac_in_air", "radioactivity_concentration_of_227Ra_in_air", "radioactivity_concentration_of_227Th_in_air", "radioactivity_concentration_of_228Ac_in_air", "radioactivity_concentration_of_228Ra_in_air", "radioactivity_concentration_of_228Th_in_air", "radioactivity_concentration_of_229Ac_in_air", "radioactivity_concentration_of_229Ra_in_air", "radioactivity_concentration_of_229Th_in_air", "radioactivity_concentration_of_230Pa_in_air", "radioactivity_concentration_of_230Th_in_air", "radioactivity_concentration_of_230U_in_air", "radioactivity_concentration_of_231Pa_in_air", "radioactivity_concentration_of_231Th_in_air", "radioactivity_concentration_of_231U_in_air", "radioactivity_concentration_of_232Pa_in_air", "radioactivity_concentration_of_232Th_in_air", "radioactivity_concentration_of_232U_in_air", "radioactivity_concentration_of_233Pa_in_air", "radioactivity_concentration_of_233Th_in_air", "radioactivity_concentration_of_233U_in_air", "radioactivity_concentration_of_234mPa_in_air", "radioactivity_concentration_of_234Pa_in_air", "radioactivity_concentration_of_234Th_in_air", "radioactivity_concentration_of_234U_in_air", "radioactivity_concentration_of_235Np_in_air", "radioactivity_concentration_of_235Pu_in_air", "radioactivity_concentration_of_235U_in_air", "radioactivity_concentration_of_236mNp_in_air", "radioactivity_concentration_of_236Np_in_air", "radioactivity_concentration_of_236Pu_in_air", "radioactivity_concentration_of_236U_in_air", "radioactivity_concentration_of_237Np_in_air", "radioactivity_concentration_of_237Pu_in_air", "radioactivity_concentration_of_237U_in_air", "radioactivity_concentration_of_238Np_in_air", "radioactivity_concentration_of_238Pu_in_air", "radioactivity_concentration_of_238U_in_air", "radioactivity_concentration_of_239Np_in_air", "radioactivity_concentration_of_239Pu_in_air", "radioactivity_concentration_of_239U_in_air", "radioactivity_concentration_of_240Am_in_air", "radioactivity_concentration_of_240mNp_in_air", "radioactivity_concentration_of_240Np_in_air", "radioactivity_concentration_of_240Pu_in_air", "radioactivity_concentration_of_240U_in_air", "radioactivity_concentration_of_241Am_in_air", "radioactivity_concentration_of_241Cm_in_air", "radioactivity_concentration_of_241Pu_in_air", "radioactivity_concentration_of_242Am_in_air", "radioactivity_concentration_of_242Cm_in_air", "radioactivity_concentration_of_242m1Am_in_air", "radioactivity_concentration_of_242m2Am_in_air", "radioactivity_concentration_of_242Pu_in_air", "radioactivity_concentration_of_243Am_in_air", "radioactivity_concentration_of_243Cm_in_air", "radioactivity_concentration_of_243Pu_in_air", "radioactivity_concentration_of_244Am_in_air", "radioactivity_concentration_of_244Cm_in_air", "radioactivity_concentration_of_244mAm_in_air", "radioactivity_concentration_of_244Pu_in_air", "radioactivity_concentration_of_245Am_in_air", "radioactivity_concentration_of_245Cm_in_air", "radioactivity_concentration_of_245Pu_in_air", "radioactivity_concentration_of_246Cm_in_air", "radioactivity_concentration_of_247Cm_in_air", "radioactivity_concentration_of_248Cm_in_air", "radioactivity_concentration_of_249Bk_in_air", "radioactivity_concentration_of_249Cf_in_air", "radioactivity_concentration_of_249Cm_in_air", "radioactivity_concentration_of_24Na_in_air", "radioactivity_concentration_of_250Bk_in_air", "radioactivity_concentration_of_250Cf_in_air", "radioactivity_concentration_of_250Cm_in_air", "radioactivity_concentration_of_251Cf_in_air", "radioactivity_concentration_of_252Cf_in_air", "radioactivity_concentration_of_253Cf_in_air", "radioactivity_concentration_of_253Es_in_air", "radioactivity_concentration_of_254Cf_in_air", "radioactivity_concentration_of_254Es_in_air", "radioactivity_concentration_of_254mEs_in_air", "radioactivity_concentration_of_255Es_in_air", "radioactivity_concentration_of_3H_in_air", "radioactivity_concentration_of_41Ar_in_air", "radioactivity_concentration_of_54Mn_in_air", "radioactivity_concentration_of_58Co_in_air", "radioactivity_concentration_of_60Co_in_air", "radioactivity_concentration_of_72Ga_in_air", "radioactivity_concentration_of_72Zn_in_air", "radioactivity_concentration_of_73Ga_in_air", "radioactivity_concentration_of_75Ge_in_air", "radioactivity_concentration_of_77As_in_air", "radioactivity_concentration_of_77Ge_in_air", "radioactivity_concentration_of_77mGe_in_air", "radioactivity_concentration_of_78As_in_air", "radioactivity_concentration_of_78Ge_in_air", "radioactivity_concentration_of_79Se_in_air", "radioactivity_concentration_of_81mSe_in_air", "radioactivity_concentration_of_81Se_in_air", "radioactivity_concentration_of_82Br_in_air", "radioactivity_concentration_of_82mBr_in_air", "radioactivity_concentration_of_83Br_in_air", "radioactivity_concentration_of_83mKr_in_air", "radioactivity_concentration_of_83mSe_in_air", "radioactivity_concentration_of_83Se_in_air", "radioactivity_concentration_of_84Br_in_air", "radioactivity_concentration_of_84mBr_in_air", "radioactivity_concentration_of_85Kr_in_air", "radioactivity_concentration_of_85mKr_in_air", "radioactivity_concentration_of_86mRb_in_air", "radioactivity_concentration_of_86Rb_in_air", "radioactivity_concentration_of_87Kr_in_air", "radioactivity_concentration_of_87Rb_in_air", "radioactivity_concentration_of_88Kr_in_air", "radioactivity_concentration_of_88Rb_in_air", "radioactivity_concentration_of_89Kr_in_air", "radioactivity_concentration_of_89Rb_in_air", "radioactivity_concentration_of_89Sr_in_air", "radioactivity_concentration_of_90mY_in_air", "radioactivity_concentration_of_90Sr_in_air", "radioactivity_concentration_of_90Y_in_air", "radioactivity_concentration_of_91mY_in_air", "radioactivity_concentration_of_91Sr_in_air", "radioactivity_concentration_of_91Y_in_air", "radioactivity_concentration_of_92Sr_in_air", "radioactivity_concentration_of_92Y_in_air", "radioactivity_concentration_of_93Y_in_air", "radioactivity_concentration_of_93Zr_in_air", "radioactivity_concentration_of_94mNb_in_air", "radioactivity_concentration_of_94Nb_in_air", "radioactivity_concentration_of_94Y_in_air", "radioactivity_concentration_of_95mNb_in_air", "radioactivity_concentration_of_95Nb_in_air", "radioactivity_concentration_of_95Y_in_air", "radioactivity_concentration_of_95Zr_in_air", "radioactivity_concentration_of_96Nb_in_air", "radioactivity_concentration_of_97mNb_in_air", "radioactivity_concentration_of_97Nb_in_air", "radioactivity_concentration_of_97Zr_in_air", "radioactivity_concentration_of_98Nb_in_air", "radioactivity_concentration_of_99Mo_in_air", "radioactivity_concentration_of_99mTc_in_air", "radioactivity_concentration_of_99Tc_in_air", "radius_of_tropical_cyclone_central_dense_overcast_region", "radius_of_tropical_cyclone_eye", "radius_of_tropical_cyclone_maximum_sustained_wind_speed", "rainfall_amount", "rainfall_flux", "rainfall_rate", "rate_of_change_test_quality_flag", "rate_of_hydroxyl_radical_destruction_due_to_reaction_with_nmvoc", "ratio_of_ice_volume_in_frozen_ground_to_pore_volume_in_unfrozen_ground", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "ratio_of_sea_water_practical_salinity_anomaly_to_relaxation_timescale", "ratio_of_x_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "ratio_of_y_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "realization", "reference_air_pressure_for_atmosphere_vertical_coordinate", "reference_epoch", "reference_pressure", "reference_sea_water_density_for_boussinesq_approximation", "region", "relative_humidity", "relative_humidity_for_aerosol_particle_size_selection", "relative_platform_azimuth_angle", "relative_sensor_azimuth_angle", "richardson_number_in_sea_water", "root_depth", "root_mass_content_of_carbon", "root_mass_content_of_nitrogen", "runoff_amount", "runoff_amount_excluding_baseflow", "runoff_flux", "salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "salt_flux_into_sea_water_from_rivers", "scattering_angle", "scene_type_of_dvorak_tropical_cyclone_cloud_region", "scene_type_of_dvorak_tropical_cyclone_eye_region", "sea_area", "sea_area_fraction", "sea_binary_mask", "sea_floor_depth_below_geoid", "sea_floor_depth_below_geopotential_datum", "sea_floor_depth_below_mean_sea_level", "sea_floor_depth_below_reference_ellipsoid", "sea_floor_depth_below_sea_surface", "sea_floor_sediment_grain_size", "sea_ice_albedo", "sea_ice_amount", "sea_ice_and_surface_snow_amount", "sea_ice_area", "sea_ice_area_fraction", "sea_ice_area_transport_across_line", "sea_ice_average_normal_horizontal_stress", "sea_ice_basal_drag_coefficient_for_momentum_in_sea_water", "sea_ice_basal_temperature", "sea_ice_classification", "sea_ice_draft", "sea_ice_extent", "sea_ice_floe_diameter", "sea_ice_freeboard", "sea_ice_mass", "sea_ice_mass_content_of_salt", "sea_ice_melt_pond_thickness", "sea_ice_salinity", "sea_ice_speed", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_ice_thickness", "sea_ice_transport_across_line", "sea_ice_volume", "sea_ice_x_displacement", "sea_ice_x_force_per_unit_area_due_to_coriolis_effect", "sea_ice_x_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_x_internal_stress", "sea_ice_x_transport", "sea_ice_x_velocity", "sea_ice_y_displacement", "sea_ice_y_force_per_unit_area_due_to_coriolis_effect", "sea_ice_y_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_y_internal_stress", "sea_ice_y_transport", "sea_ice_y_velocity", "sea_surface_density", "sea_surface_downward_eastward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_downward_northward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_foundation_temperature", "sea_surface_height_above_geoid", "sea_surface_height_above_geopotential_datum", "sea_surface_height_above_mean_sea_level", "sea_surface_height_above_reference_ellipsoid", "sea_surface_height_amplitude_due_to_earth_tide", "sea_surface_height_amplitude_due_to_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_geocentric_ocean_tide", "sea_surface_height_amplitude_due_to_non_equilibrium_ocean_tide", "sea_surface_height_amplitude_due_to_pole_tide", "sea_surface_height_bias_due_to_sea_surface_roughness", "sea_surface_height_correction_due_to_air_pressure_and_wind_at_high_frequency", "sea_surface_height_correction_due_to_air_pressure_at_low_frequency", "sea_surface_mean_square_crosswave_slope", "sea_surface_mean_square_upwave_slope", "sea_surface_mean_square_upwave_slope_direction", "sea_surface_primary_swell_wave_directional_spread", "sea_surface_primary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_from_direction", "sea_surface_primary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_mean_period", "sea_surface_primary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_significant_height", "sea_surface_salinity", "sea_surface_secondary_swell_wave_directional_spread", "sea_surface_secondary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_from_direction", "sea_surface_secondary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_mean_period", "sea_surface_secondary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_significant_height", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_swell_wave_directional_spread", "sea_surface_swell_wave_from_direction", "sea_surface_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_swell_wave_mean_period", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_swell_wave_period", "sea_surface_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_swell_wave_significant_height", "sea_surface_swell_wave_to_direction", "sea_surface_temperature", "sea_surface_tertiary_swell_wave_directional_spread", "sea_surface_tertiary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_from_direction", "sea_surface_tertiary_swell_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_mean_period", "sea_surface_tertiary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_significant_height", "sea_surface_wave_directional_spread", "sea_surface_wave_directional_spread_at_variance_spectral_density_maximum", "sea_surface_wave_directional_variance_spectral_density", "sea_surface_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wave_from_direction", "sea_surface_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wave_maximum_crest_height", "sea_surface_wave_maximum_height", "sea_surface_wave_maximum_period", "sea_surface_wave_maximum_steepness", "sea_surface_wave_maximum_trough_depth", "sea_surface_wave_mean_height", "sea_surface_wave_mean_height_of_highest_tenth", "sea_surface_wave_mean_period", "sea_surface_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wave_mean_period_of_highest_tenth", "sea_surface_wave_mean_square_slope", "sea_surface_wave_mean_square_x_slope", "sea_surface_wave_mean_square_y_slope", "sea_surface_wave_mean_wavenumber_from_variance_spectral_density_first_wavenumber_moment", "sea_surface_wave_period_at_variance_spectral_density_maximum", "sea_surface_wave_period_of_highest_wave", "sea_surface_wave_significant_height", "sea_surface_wave_significant_period", "sea_surface_wave_stokes_drift_eastward_velocity", "sea_surface_wave_stokes_drift_northward_velocity", "sea_surface_wave_stokes_drift_speed", "sea_surface_wave_stokes_drift_to_direction", "sea_surface_wave_stokes_drift_x_velocity", "sea_surface_wave_stokes_drift_y_velocity", "sea_surface_wave_to_direction", "sea_surface_wave_variance_spectral_density", "sea_surface_wave_xx_radiation_stress", "sea_surface_wave_xy_radiation_stress", "sea_surface_wave_yy_radiation_stress", "sea_surface_wind_wave_directional_spread", "sea_surface_wind_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wind_wave_from_direction", "sea_surface_wind_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wind_wave_mean_period", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wind_wave_period", "sea_surface_wind_wave_period_at_variance_spectral_density_maximum", "sea_surface_wind_wave_significant_height", "sea_surface_wind_wave_to_direction", "sea_water_absolute_salinity", "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", "sea_water_age_since_surface_contact", "sea_water_alkalinity_expressed_as_mole_equivalent", "sea_water_alkalinity_natural_analogue_expressed_as_mole_equivalent", "sea_water_conservative_temperature", "sea_water_cox_salinity", "sea_water_density", "sea_water_electrical_conductivity", "sea_water_knudsen_salinity", "sea_water_mass", "sea_water_mass_per_unit_area", "sea_water_mass_per_unit_area_expressed_as_thickness", "sea_water_neutral_density", "sea_water_ph_abiotic_analogue_reported_on_total_scale", "sea_water_ph_natural_analogue_reported_on_total_scale", "sea_water_ph_reported_on_total_scale", "sea_water_potential_density", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", "sea_water_practical_salinity", "sea_water_practical_salinity_at_sea_floor", "sea_water_preformed_salinity", "sea_water_pressure", "sea_water_pressure_at_sea_floor", "sea_water_pressure_at_sea_water_surface", "sea_water_pressure_due_to_sea_water", "sea_water_redistributed_conservative_temperature", "sea_water_redistributed_potential_temperature", "sea_water_reference_salinity", "sea_water_salinity", "sea_water_salinity_at_sea_floor", "sea_water_sigma_t", "sea_water_sigma_t_difference", "sea_water_sigma_theta", "sea_water_sigma_theta_difference", "sea_water_specific_potential_enthalpy", "sea_water_speed", "sea_water_speed_at_sea_floor", "sea_water_speed_due_to_tides", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "sea_water_transport_across_line", "sea_water_turbidity", "sea_water_velocity_from_direction", "sea_water_velocity_to_direction", "sea_water_velocity_to_direction_at_sea_floor", "sea_water_velocity_to_direction_due_to_tides", "sea_water_volume", "sea_water_x_velocity", "sea_water_x_velocity_due_to_parameterized_mesoscale_eddies", "sea_water_y_velocity", "sea_water_y_velocity_due_to_parameterized_mesoscale_eddies", "secchi_depth_of_sea_water", "sensor_azimuth_angle", "sensor_band_central_radiation_frequency", "sensor_band_central_radiation_wavelength", "sensor_band_central_radiation_wavenumber", "sensor_band_identifier", "sensor_view_angle", "sensor_zenith_angle", "shallow_convection_time_fraction", "shallow_convective_cloud_base_altitude", "shallow_convective_cloud_top_altitude", "shallow_convective_precipitation_flux", "signal_intensity_from_multibeam_acoustic_doppler_velocity_sensor_in_sea_water", "single_scattering_albedo_in_air_due_to_ambient_aerosol_particles", "sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_iron_in_sea_water", "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", "sinking_mole_flux_of_particulate_organic_nitrogen_in_sea_water", "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", "sinking_mole_flux_of_particulate_silicon_in_sea_water", "slow_soil_pool_mass_content_of_carbon", "snow_area_fraction_viewable_from_above", "snowfall_amount", "snowfall_flux", "snow_grain_size", "snow_transport_across_line_due_to_sea_ice_dynamics", "soil_albedo", "soil_frozen_water_content", "soil_hydraulic_conductivity_at_saturation", "soil_mass_content_of_13C", "soil_mass_content_of_14C", "soil_mass_content_of_carbon", "soil_mass_content_of_inorganic_ammonium_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrate_expressed_as_nitrogen", "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", "soil_mass_content_of_nitrogen", "soil_moisture_content_at_field_capacity", "soil_pool", "soil_pool_carbon_decay_rate", "soil_porosity", "soil_suction_at_saturation", "soil_temperature", "soil_thermal_capacity", "soil_thermal_conductivity", "soil_type", "soil_water_ph", "solar_azimuth_angle", "solar_elevation_angle", "solar_irradiance", "solar_irradiance_per_unit_wavelength", "solar_zenith_angle", "solid_precipitation_flux", "solid_precipitation_flux_containing_17O", "solid_precipitation_flux_containing_18O", "solid_precipitation_flux_containing_single_2H", "soot_content_of_surface_snow", "sound_frequency", "sound_intensity_in_air", "sound_intensity_in_water", "sound_intensity_level_in_air", "sound_intensity_level_in_water", "sound_pressure_in_air", "sound_pressure_in_water", "sound_pressure_level_in_air", "sound_pressure_level_in_water", "source", "specific_dry_energy_of_air", "specific_gravitational_potential_energy", "specific_heat_capacity_of_frozen_ground", "specific_heat_capacity_of_sea_water", "specific_humidity", "specific_kinetic_energy_of_air", "specific_kinetic_energy_of_sea_water", "specific_turbulent_kinetic_energy_dissipation_in_sea_water", "specific_turbulent_kinetic_energy_of_sea_water", "speed_of_sound_in_air", "speed_of_sound_in_sea_water", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_below_threshold", "spike_test_quality_flag", "square_of_air_temperature", "square_of_brunt_vaisala_frequency_in_air", "square_of_brunt_vaisala_frequency_in_sea_water", "square_of_eastward_wind", "square_of_geopotential_height", "square_of_lagrangian_tendency_of_air_pressure", "square_of_northward_wind", "square_of_ocean_mixed_layer_thickness_defined_by_sigma_t", "square_of_sea_surface_height_above_geoid", "square_of_sea_surface_salinity", "square_of_sea_surface_temperature", "square_of_upward_air_velocity", "square_of_upward_ocean_mass_transport", "status_flag", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "steric_change_in_mean_sea_level", "steric_change_in_sea_surface_height", "storm_motion_speed", "stratiform_cloud_area_fraction", "stratiform_cloud_area_fraction_in_atmosphere_layer", "stratiform_cloud_longwave_emissivity", "stratiform_graupel_fall_amount", "stratiform_graupel_flux", "stratiform_precipitation_amount", "stratiform_precipitation_flux", "stratiform_rainfall_amount", "stratiform_rainfall_flux", "stratiform_rainfall_rate", "stratiform_snowfall_amount", "stratiform_snowfall_flux", "stratosphere_mole_content_of_nitrogen_dioxide", "stratosphere_optical_thickness_due_to_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_volcanic_ambient_aerosol_particles", "subsurface_litter_mass_content_of_carbon", "subsurface_litter_mass_content_of_nitrogen", "subsurface_runoff_amount", "subsurface_runoff_flux", "sunglint_angle", "sunlit_binary_mask", "surface_air_pressure", "surface_albedo", "surface_albedo_assuming_deep_snow", "surface_albedo_assuming_no_snow", "surface_altitude", "surface_backwards_scattering_coefficient_of_radar_wave", "surface_bidirectional_reflectance", "surface_brightness_temperature", "surface_carbon_dioxide_abiotic_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_natural_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_partial_pressure_difference_between_air_and_sea_water", "surface_carbon_dioxide_partial_pressure_difference_between_sea_water_and_air", "surface_diffuse_downwelling_photosynthetic_radiative_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air", "surface_diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_diffuse_shortwave_hemispherical_reflectance", "surface_direct_along_beam_shortwave_flux_in_air", "surface_direct_downwelling_shortwave_flux_in_air", "surface_direct_shortwave_hemispherical_reflectance", "surface_downward_eastward_stress", "surface_downward_eastward_stress_due_to_boundary_layer_mixing", "surface_downward_eastward_stress_due_to_ocean_viscous_dissipation", "surface_downward_eastward_stress_due_to_sea_surface_waves", "surface_downward_heat_flux_in_air", "surface_downward_heat_flux_in_sea_ice", "surface_downward_heat_flux_in_sea_water", "surface_downward_heat_flux_in_snow", "surface_downward_latent_heat_flux", "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_ammonia", "surface_downward_mass_flux_of_carbon_dioxide_abiotic_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_natural_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_methane_due_to_wetland_biological_consumption", "surface_downward_mass_flux_of_water_due_to_irrigation", "surface_downward_mole_flux_of_carbon_dioxide", "surface_downward_mole_flux_of_cfc11", "surface_downward_mole_flux_of_cfc12", "surface_downward_mole_flux_of_molecular_oxygen", "surface_downward_mole_flux_of_sulfur_hexafluoride", "surface_downward_northward_stress", "surface_downward_northward_stress_due_to_boundary_layer_mixing", "surface_downward_northward_stress_due_to_ocean_viscous_dissipation", "surface_downward_northward_stress_due_to_sea_surface_waves", "surface_downward_sensible_heat_flux", "surface_downward_water_flux", "surface_downward_x_stress", "surface_downward_x_stress_correction", "surface_downward_y_stress", "surface_downward_y_stress_correction", "surface_downwelling_longwave_flux_in_air", "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", "surface_downwelling_longwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_photon_flux_in_sea_water", "surface_downwelling_photon_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_radiance_in_sea_water", "surface_downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photosynthetic_photon_flux_in_air", "surface_downwelling_photosynthetic_photon_flux_in_sea_water", "surface_downwelling_photosynthetic_photon_radiance_in_sea_water", "surface_downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photosynthetic_radiance_in_sea_water", "surface_downwelling_photosynthetic_radiative_flux_in_air", "surface_downwelling_photosynthetic_radiative_flux_in_sea_water", "surface_downwelling_photosynthetic_spherical_irradiance_in_sea_water", "surface_downwelling_radiance_in_sea_water", "surface_downwelling_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_radiative_flux_in_sea_water", "surface_downwelling_radiative_flux_per_unit_wavelength_in_air", "surface_downwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_shortwave_flux_in_air", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_downwelling_shortwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_spherical_irradiance_in_sea_water", "surface_downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", "surface_drag_coefficient_for_heat_in_air", "surface_drag_coefficient_for_momentum_in_air", "surface_drag_coefficient_in_air", "surface_eastward_sea_water_velocity", "surface_frozen_carbon_dioxide_amount", "surface_geopotential", "surface_geostrophic_eastward_sea_water_velocity", "surface_geostrophic_eastward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_northward_sea_water_velocity", "surface_geostrophic_northward_sea_water_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_x_velocity", "surface_geostrophic_sea_water_x_velocity_assuming_mean_sea_level_for_geoid", "surface_geostrophic_sea_water_y_velocity", "surface_geostrophic_sea_water_y_velocity_assuming_mean_sea_level_for_geoid", "surface_height_above_geopotential_datum", "surface_litter_mass_content_of_carbon", "surface_litter_mass_content_of_nitrogen", "surface_longwave_emissivity", "surface_microwave_emissivity", "surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_longwave_flux", "surface_net_downward_longwave_flux_assuming_clear_sky", "surface_net_downward_mass_flux_of_ammonia_due_to_bidirectional_surface_exchange", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change", "surface_net_downward_radiative_flux", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect", "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "surface_net_downward_shortwave_flux", "surface_net_downward_shortwave_flux_assuming_clear_sky", "surface_net_upward_longwave_flux", "surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change", "surface_net_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_processes", "surface_net_upward_radiative_flux", "surface_net_upward_shortwave_flux", "surface_northward_sea_water_velocity", "surface_partial_pressure_of_carbon_dioxide_abiotic_analogue_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_in_air", "surface_partial_pressure_of_carbon_dioxide_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_natural_analogue_in_sea_water", "surface_radioactivity_content", "surface_radioactivity_content_of_101Mo", "surface_radioactivity_content_of_101Tc", "surface_radioactivity_content_of_102Mo", "surface_radioactivity_content_of_102mTc", "surface_radioactivity_content_of_102Tc", "surface_radioactivity_content_of_103mRh", "surface_radioactivity_content_of_103Ru", "surface_radioactivity_content_of_104Tc", "surface_radioactivity_content_of_105mRh", "surface_radioactivity_content_of_105Rh", "surface_radioactivity_content_of_105Ru", "surface_radioactivity_content_of_106mRh", "surface_radioactivity_content_of_106Rh", "surface_radioactivity_content_of_106Ru", "surface_radioactivity_content_of_107mPd", "surface_radioactivity_content_of_107Pd", "surface_radioactivity_content_of_107Rh", "surface_radioactivity_content_of_109mAg", "surface_radioactivity_content_of_109Pd", "surface_radioactivity_content_of_110mAg", "surface_radioactivity_content_of_111Ag", "surface_radioactivity_content_of_111mAg", "surface_radioactivity_content_of_111mCd", "surface_radioactivity_content_of_111mPd", "surface_radioactivity_content_of_111Pd", "surface_radioactivity_content_of_112Ag", "surface_radioactivity_content_of_112Pd", "surface_radioactivity_content_of_113Ag", "surface_radioactivity_content_of_113Cd", "surface_radioactivity_content_of_113mAg", "surface_radioactivity_content_of_113mCd", "surface_radioactivity_content_of_113mIn", "surface_radioactivity_content_of_115Ag", "surface_radioactivity_content_of_115Cd", "surface_radioactivity_content_of_115In", "surface_radioactivity_content_of_115mAg", "surface_radioactivity_content_of_115mCd", "surface_radioactivity_content_of_115mIn", "surface_radioactivity_content_of_116In", "surface_radioactivity_content_of_116mIn", "surface_radioactivity_content_of_117Cd", "surface_radioactivity_content_of_117In", "surface_radioactivity_content_of_117mCd", "surface_radioactivity_content_of_117mIn", "surface_radioactivity_content_of_117mSn", "surface_radioactivity_content_of_118Cd", "surface_radioactivity_content_of_118In", "surface_radioactivity_content_of_118mIn", "surface_radioactivity_content_of_119In", "surface_radioactivity_content_of_119mIn", "surface_radioactivity_content_of_119mSn", "surface_radioactivity_content_of_11C", "surface_radioactivity_content_of_121mSn", "surface_radioactivity_content_of_121Sn", "surface_radioactivity_content_of_123mSn", "surface_radioactivity_content_of_123Sn", "surface_radioactivity_content_of_124mSb", "surface_radioactivity_content_of_124Sb", "surface_radioactivity_content_of_125mTe", "surface_radioactivity_content_of_125Sb", "surface_radioactivity_content_of_125Sn", "surface_radioactivity_content_of_126mSb", "surface_radioactivity_content_of_126Sb", "surface_radioactivity_content_of_126Sn", "surface_radioactivity_content_of_127mTe", "surface_radioactivity_content_of_127Sb", "surface_radioactivity_content_of_127Sn", "surface_radioactivity_content_of_127Te", "surface_radioactivity_content_of_128mSb", "surface_radioactivity_content_of_128Sb", "surface_radioactivity_content_of_128Sn", "surface_radioactivity_content_of_129I", "surface_radioactivity_content_of_129mTe", "surface_radioactivity_content_of_129mXe", "surface_radioactivity_content_of_129Sb", "surface_radioactivity_content_of_129Te", "surface_radioactivity_content_of_130I", "surface_radioactivity_content_of_130mI", "surface_radioactivity_content_of_130mSb", "surface_radioactivity_content_of_130Sb", "surface_radioactivity_content_of_130Sn", "surface_radioactivity_content_of_131I", "surface_radioactivity_content_of_131mTe", "surface_radioactivity_content_of_131mXe", "surface_radioactivity_content_of_131Sb", "surface_radioactivity_content_of_131Te", "surface_radioactivity_content_of_132I", "surface_radioactivity_content_of_132Te", "surface_radioactivity_content_of_133I", "surface_radioactivity_content_of_133mI", "surface_radioactivity_content_of_133mTe", "surface_radioactivity_content_of_133mXe", "surface_radioactivity_content_of_133Te", "surface_radioactivity_content_of_133Xe", "surface_radioactivity_content_of_134Cs", "surface_radioactivity_content_of_134I", "surface_radioactivity_content_of_134mCs", "surface_radioactivity_content_of_134mI", "surface_radioactivity_content_of_134mXe", "surface_radioactivity_content_of_134Te", "surface_radioactivity_content_of_135Cs", "surface_radioactivity_content_of_135I", "surface_radioactivity_content_of_135mBa", "surface_radioactivity_content_of_135mCs", "surface_radioactivity_content_of_135mXe", "surface_radioactivity_content_of_135Xe", "surface_radioactivity_content_of_136Cs", "surface_radioactivity_content_of_137Cs", "surface_radioactivity_content_of_137mBa", "surface_radioactivity_content_of_137Xe", "surface_radioactivity_content_of_138Cs", "surface_radioactivity_content_of_138Xe", "surface_radioactivity_content_of_139Ba", "surface_radioactivity_content_of_13N", "surface_radioactivity_content_of_140Ba", "surface_radioactivity_content_of_140La", "surface_radioactivity_content_of_141Ce", "surface_radioactivity_content_of_141La", "surface_radioactivity_content_of_142Ce", "surface_radioactivity_content_of_142La", "surface_radioactivity_content_of_142mPr", "surface_radioactivity_content_of_142Pr", "surface_radioactivity_content_of_143Ce", "surface_radioactivity_content_of_143La", "surface_radioactivity_content_of_143Pr", "surface_radioactivity_content_of_144Ce", "surface_radioactivity_content_of_144mPr", "surface_radioactivity_content_of_144Nd", "surface_radioactivity_content_of_144Pr", "surface_radioactivity_content_of_145Pr", "surface_radioactivity_content_of_146Ce", "surface_radioactivity_content_of_146Pr", "surface_radioactivity_content_of_147Nd", "surface_radioactivity_content_of_147Pm", "surface_radioactivity_content_of_147Pr", "surface_radioactivity_content_of_147Sm", "surface_radioactivity_content_of_148mPm", "surface_radioactivity_content_of_148Pm", "surface_radioactivity_content_of_148Sm", "surface_radioactivity_content_of_149Nd", "surface_radioactivity_content_of_149Pm", "surface_radioactivity_content_of_149Sm", "surface_radioactivity_content_of_150Pm", "surface_radioactivity_content_of_151Nd", "surface_radioactivity_content_of_151Pm", "surface_radioactivity_content_of_151Sm", "surface_radioactivity_content_of_152mPm", "surface_radioactivity_content_of_152Nd", "surface_radioactivity_content_of_152Pm", "surface_radioactivity_content_of_153Sm", "surface_radioactivity_content_of_154Eu", "surface_radioactivity_content_of_155Eu", "surface_radioactivity_content_of_155Sm", "surface_radioactivity_content_of_156Eu", "surface_radioactivity_content_of_156Sm", "surface_radioactivity_content_of_157Eu", "surface_radioactivity_content_of_158Eu", "surface_radioactivity_content_of_159Eu", "surface_radioactivity_content_of_159Gd", "surface_radioactivity_content_of_15O", "surface_radioactivity_content_of_160Tb", "surface_radioactivity_content_of_161Tb", "surface_radioactivity_content_of_162Gd", "surface_radioactivity_content_of_162mTb", "surface_radioactivity_content_of_162Tb", "surface_radioactivity_content_of_163Tb", "surface_radioactivity_content_of_165Dy", "surface_radioactivity_content_of_18F", "surface_radioactivity_content_of_206Hg", "surface_radioactivity_content_of_206Tl", "surface_radioactivity_content_of_207mPb", "surface_radioactivity_content_of_207Tl", "surface_radioactivity_content_of_208Tl", "surface_radioactivity_content_of_209Bi", "surface_radioactivity_content_of_209Pb", "surface_radioactivity_content_of_209Tl", "surface_radioactivity_content_of_210Bi", "surface_radioactivity_content_of_210Pb", "surface_radioactivity_content_of_210Po", "surface_radioactivity_content_of_210Tl", "surface_radioactivity_content_of_211Bi", "surface_radioactivity_content_of_211Pb", "surface_radioactivity_content_of_211Po", "surface_radioactivity_content_of_212Bi", "surface_radioactivity_content_of_212Pb", "surface_radioactivity_content_of_212Po", "surface_radioactivity_content_of_213Bi", "surface_radioactivity_content_of_213Pb", "surface_radioactivity_content_of_213Po", "surface_radioactivity_content_of_214Bi", "surface_radioactivity_content_of_214Pb", "surface_radioactivity_content_of_214Po", "surface_radioactivity_content_of_215At", "surface_radioactivity_content_of_215Bi", "surface_radioactivity_content_of_215Po", "surface_radioactivity_content_of_216At", "surface_radioactivity_content_of_216Po", "surface_radioactivity_content_of_217At", "surface_radioactivity_content_of_217Po", "surface_radioactivity_content_of_218At", "surface_radioactivity_content_of_218Po", "surface_radioactivity_content_of_218Rn", "surface_radioactivity_content_of_219At", "surface_radioactivity_content_of_219Rn", "surface_radioactivity_content_of_220Rn", "surface_radioactivity_content_of_221Fr", "surface_radioactivity_content_of_221Rn", "surface_radioactivity_content_of_222Fr", "surface_radioactivity_content_of_222Ra", "surface_radioactivity_content_of_222Rn", "surface_radioactivity_content_of_223Fr", "surface_radioactivity_content_of_223Ra", "surface_radioactivity_content_of_223Rn", "surface_radioactivity_content_of_224Ra", "surface_radioactivity_content_of_225Ac", "surface_radioactivity_content_of_225Ra", "surface_radioactivity_content_of_226Ac", "surface_radioactivity_content_of_226Ra", "surface_radioactivity_content_of_226Th", "surface_radioactivity_content_of_227Ac", "surface_radioactivity_content_of_227Ra", "surface_radioactivity_content_of_227Th", "surface_radioactivity_content_of_228Ac", "surface_radioactivity_content_of_228Ra", "surface_radioactivity_content_of_228Th", "surface_radioactivity_content_of_229Ac", "surface_radioactivity_content_of_229Ra", "surface_radioactivity_content_of_229Th", "surface_radioactivity_content_of_230Pa", "surface_radioactivity_content_of_230Th", "surface_radioactivity_content_of_230U", "surface_radioactivity_content_of_231Pa", "surface_radioactivity_content_of_231Th", "surface_radioactivity_content_of_231U", "surface_radioactivity_content_of_232Pa", "surface_radioactivity_content_of_232Th", "surface_radioactivity_content_of_232U", "surface_radioactivity_content_of_233Pa", "surface_radioactivity_content_of_233Th", "surface_radioactivity_content_of_233U", "surface_radioactivity_content_of_234mPa", "surface_radioactivity_content_of_234Pa", "surface_radioactivity_content_of_234Th", "surface_radioactivity_content_of_234U", "surface_radioactivity_content_of_235Np", "surface_radioactivity_content_of_235Pu", "surface_radioactivity_content_of_235U", "surface_radioactivity_content_of_236mNp", "surface_radioactivity_content_of_236Np", "surface_radioactivity_content_of_236Pu", "surface_radioactivity_content_of_236U", "surface_radioactivity_content_of_237Np", "surface_radioactivity_content_of_237Pu", "surface_radioactivity_content_of_237U", "surface_radioactivity_content_of_238Np", "surface_radioactivity_content_of_238Pu", "surface_radioactivity_content_of_238U", "surface_radioactivity_content_of_239Np", "surface_radioactivity_content_of_239Pu", "surface_radioactivity_content_of_239U", "surface_radioactivity_content_of_240Am", "surface_radioactivity_content_of_240mNp", "surface_radioactivity_content_of_240Np", "surface_radioactivity_content_of_240Pu", "surface_radioactivity_content_of_240U", "surface_radioactivity_content_of_241Am", "surface_radioactivity_content_of_241Cm", "surface_radioactivity_content_of_241Pu", "surface_radioactivity_content_of_242Am", "surface_radioactivity_content_of_242Cm", "surface_radioactivity_content_of_242m1Am", "surface_radioactivity_content_of_242m2Am", "surface_radioactivity_content_of_242Pu", "surface_radioactivity_content_of_243Am", "surface_radioactivity_content_of_243Cm", "surface_radioactivity_content_of_243Pu", "surface_radioactivity_content_of_244Am", "surface_radioactivity_content_of_244Cm", "surface_radioactivity_content_of_244mAm", "surface_radioactivity_content_of_244Pu", "surface_radioactivity_content_of_245Am", "surface_radioactivity_content_of_245Cm", "surface_radioactivity_content_of_245Pu", "surface_radioactivity_content_of_246Cm", "surface_radioactivity_content_of_247Cm", "surface_radioactivity_content_of_248Cm", "surface_radioactivity_content_of_249Bk", "surface_radioactivity_content_of_249Cf", "surface_radioactivity_content_of_249Cm", "surface_radioactivity_content_of_24Na", "surface_radioactivity_content_of_250Bk", "surface_radioactivity_content_of_250Cf", "surface_radioactivity_content_of_250Cm", "surface_radioactivity_content_of_251Cf", "surface_radioactivity_content_of_252Cf", "surface_radioactivity_content_of_253Cf", "surface_radioactivity_content_of_253Es", "surface_radioactivity_content_of_254Cf", "surface_radioactivity_content_of_254Es", "surface_radioactivity_content_of_254mEs", "surface_radioactivity_content_of_255Es", "surface_radioactivity_content_of_3H", "surface_radioactivity_content_of_41Ar", "surface_radioactivity_content_of_54Mn", "surface_radioactivity_content_of_58Co", "surface_radioactivity_content_of_60Co", "surface_radioactivity_content_of_72Ga", "surface_radioactivity_content_of_72Zn", "surface_radioactivity_content_of_73Ga", "surface_radioactivity_content_of_75Ge", "surface_radioactivity_content_of_77As", "surface_radioactivity_content_of_77Ge", "surface_radioactivity_content_of_77mGe", "surface_radioactivity_content_of_78As", "surface_radioactivity_content_of_78Ge", "surface_radioactivity_content_of_79Se", "surface_radioactivity_content_of_81mSe", "surface_radioactivity_content_of_81Se", "surface_radioactivity_content_of_82Br", "surface_radioactivity_content_of_82mBr", "surface_radioactivity_content_of_83Br", "surface_radioactivity_content_of_83mKr", "surface_radioactivity_content_of_83mSe", "surface_radioactivity_content_of_83Se", "surface_radioactivity_content_of_84Br", "surface_radioactivity_content_of_84mBr", "surface_radioactivity_content_of_85Kr", "surface_radioactivity_content_of_85mKr", "surface_radioactivity_content_of_86mRb", "surface_radioactivity_content_of_86Rb", "surface_radioactivity_content_of_87Kr", "surface_radioactivity_content_of_87Rb", "surface_radioactivity_content_of_88Kr", "surface_radioactivity_content_of_88Rb", "surface_radioactivity_content_of_89Kr", "surface_radioactivity_content_of_89Rb", "surface_radioactivity_content_of_89Sr", "surface_radioactivity_content_of_90mY", "surface_radioactivity_content_of_90Sr", "surface_radioactivity_content_of_90Y", "surface_radioactivity_content_of_91mY", "surface_radioactivity_content_of_91Sr", "surface_radioactivity_content_of_91Y", "surface_radioactivity_content_of_92Sr", "surface_radioactivity_content_of_92Y", "surface_radioactivity_content_of_93Y", "surface_radioactivity_content_of_93Zr", "surface_radioactivity_content_of_94mNb", "surface_radioactivity_content_of_94Nb", "surface_radioactivity_content_of_94Y", "surface_radioactivity_content_of_95mNb", "surface_radioactivity_content_of_95Nb", "surface_radioactivity_content_of_95Y", "surface_radioactivity_content_of_95Zr", "surface_radioactivity_content_of_96Nb", "surface_radioactivity_content_of_97mNb", "surface_radioactivity_content_of_97Nb", "surface_radioactivity_content_of_97Zr", "surface_radioactivity_content_of_98Nb", "surface_radioactivity_content_of_99Mo", "surface_radioactivity_content_of_99mTc", "surface_radioactivity_content_of_99Tc", "surface_ratio_of_upwelling_radiance_emerging_from_sea_water_to_downwelling_radiative_flux_in_air", "surface_roughness_length", "surface_roughness_length_for_heat_in_air", "surface_roughness_length_for_humidity_in_air", "surface_roughness_length_for_momentum_in_air", "surface_runoff_amount", "surface_runoff_flux", "surface_snow_amount", "surface_snow_and_ice_melt_flux", "surface_snow_and_ice_melt_heat_flux", "surface_snow_and_ice_refreezing_flux", "surface_snow_area_fraction", "surface_snow_binary_mask", "surface_snow_density", "surface_snow_melt_amount", "surface_snow_melt_and_sublimation_heat_flux", "surface_snow_melt_flux", "surface_snow_melt_heat_flux", "surface_snow_sublimation_amount", "surface_snow_sublimation_heat_flux", "surface_snow_thickness", "surface_specific_humidity", "surface_temperature", "surface_temperature_anomaly", "surface_upward_eastward_stress_due_to_sea_surface_waves", "surface_upward_heat_flux_due_to_anthropogenic_energy_consumption", "surface_upward_heat_flux_in_air", "surface_upward_latent_heat_flux", "surface_upward_latent_heat_flux_due_to_sublimation", "surface_upward_mass_flux_of_ammonia", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change_excluding_forestry_and_agricultural_products", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_grazing", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_litter_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_vegetation_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_growth", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_maintenance", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_leaves", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_miscellaneous_living_matter", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_roots", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_respiration_in_soil", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_litter", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_soil", "surface_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_production", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_all_land_processes_excluding_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_emission_from_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mole_flux_of_carbon_dioxide", "surface_upward_mole_flux_of_dimethyl_sulfide", "surface_upward_northward_stress_due_to_sea_surface_waves", "surface_upward_sensible_heat_flux", "surface_upward_water_flux", "surface_upward_water_vapor_flux_in_air", "surface_upwelling_longwave_flux_in_air", "surface_upwelling_longwave_flux_in_air_assuming_clear_sky", "surface_upwelling_photosynthetic_photon_flux_in_air", "surface_upwelling_radiance_in_air", "surface_upwelling_radiance_in_air_emerging_from_sea_water", "surface_upwelling_radiance_in_air_reflected_by_sea_water", "surface_upwelling_radiance_in_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air", "surface_upwelling_radiance_per_unit_wavelength_in_air_emerging_from_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air_reflected_by_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_sea_water", "surface_upwelling_radiative_flux_per_unit_wavelength_in_air", "surface_upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "surface_upwelling_shortwave_flux_in_air", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_water_amount", "surface_water_evaporation_flux", "syntax_test_quality_flag", "temperature_at_base_of_ice_sheet_model", "temperature_at_top_of_ice_sheet_model", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically", "temperature_difference_between_ambient_air_and_air_lifted_adiabatically_from_the_surface", "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", "temperature_in_ground", "temperature_in_surface_snow", "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", "tendency_of_air_density", "tendency_of_air_pressure", "tendency_of_air_temperature", "tendency_of_air_temperature_due_to_advection", "tendency_of_air_temperature_due_to_boundary_layer_mixing", "tendency_of_air_temperature_due_to_convection", "tendency_of_air_temperature_due_to_diabatic_processes", "tendency_of_air_temperature_due_to_diffusion", "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", "tendency_of_air_temperature_due_to_dry_convection", "tendency_of_air_temperature_due_to_longwave_heating", "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_model_physics", "tendency_of_air_temperature_due_to_moist_convection", "tendency_of_air_temperature_due_to_radiative_heating", "tendency_of_air_temperature_due_to_shortwave_heating", "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_air_temperature_due_to_stratiform_precipitation", "tendency_of_air_temperature_due_to_turbulence", "tendency_of_atmosphere_dry_energy_content", "tendency_of_atmosphere_enthalpy_content_due_to_advection", "tendency_of_atmosphere_kinetic_energy_content_due_to_advection", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_acetaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_acetic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_acetone_due_to_emission", "tendency_of_atmosphere_mass_content_of_aceto_nitrile_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_alcohols_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_aldehydes_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alkanes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alkenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_alpha_hexachlorocyclohexane_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_alpha_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_aromatic_compounds_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_benzene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_beta_pinene_due_to_emission", "tendency_of_atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_butane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_forestry_and_agricultural_products", "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_carbon_tetrachloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113a_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc113_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc114_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc115_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc11_due_to_emission", "tendency_of_atmosphere_mass_content_of_cfc12_due_to_emission", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_chlorinated_hydrocarbons_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_esters_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ethers_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ethyne_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_formaldehyde_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_formic_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_divalent_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_emission", "tendency_of_atmosphere_mass_content_of_gaseous_elemental_mercury_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_halon1202_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1211_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon1301_due_to_emission", "tendency_of_atmosphere_mass_content_of_halon2402_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcc140a_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc141b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc142b_due_to_emission", "tendency_of_atmosphere_mass_content_of_hcfc22_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_re_emission", "tendency_of_atmosphere_mass_content_of_hexachlorobiphenyl_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_cyanide_due_to_emission", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_hydrogen_peroxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_ketones_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_limonene_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_mercury_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_methane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_methanesulfonic_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_methanol_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_bromide_due_to_emission", "tendency_of_atmosphere_mass_content_of_methyl_chloride_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_molecular_hydrogen_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_monoterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_nitrate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitric_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_land_use_or_land_cover_change", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_emission", "tendency_of_atmosphere_mass_content_of_nitrous_acid_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_nitrous_oxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_nmvoc_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_due_to_emission", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_soil", "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_monoxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_organic_acids_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_nitrates_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_organic_peroxides_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition_into_stomata", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_pentane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_peroxyacetyl_nitrate_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_peroxynitric_acid_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm10_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_dust_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_pm2p5_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propane_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_propene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_radon_due_to_emission", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production", "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sesquiterpenes_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_aqueous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_gaseous_phase_net_chemical_production", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_gravitational_settling", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_turbulent_deposition", "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_expressed_as_sulfur_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_terpenes_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_toluene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_content_of_trimethylbenzene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_water_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_advection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_deep_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_shallow_convection", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_turbulence", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_production", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_agricultural_waste_burning", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_energy_production_and_distribution", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_forest_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_industrial_processes_and_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_land_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_maritime_transport", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_residential_and_commercial_combustion", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_savanna_and_grassland_fires", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_solvent_production_and_use", "tendency_of_atmosphere_mass_content_of_xylene_due_to_emission_from_waste_treatment_and_disposal", "tendency_of_atmosphere_mass_per_unit_area", "tendency_of_atmosphere_mass_per_unit_area_due_to_advection", "tendency_of_atmosphere_mole_concentration_of_carbon_monoxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_nitrous_oxide_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_destruction", "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_production", "tendency_of_atmosphere_moles_of_acetic_acid", "tendency_of_atmosphere_moles_of_aceto_nitrile", "tendency_of_atmosphere_moles_of_alpha_hexachlorocyclohexane", "tendency_of_atmosphere_moles_of_alpha_pinene", "tendency_of_atmosphere_moles_of_ammonia", "tendency_of_atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_atomic_bromine", "tendency_of_atmosphere_moles_of_atomic_chlorine", "tendency_of_atmosphere_moles_of_atomic_nitrogen", "tendency_of_atmosphere_moles_of_benzene", "tendency_of_atmosphere_moles_of_beta_pinene", "tendency_of_atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_bromine_chloride", "tendency_of_atmosphere_moles_of_bromine_monoxide", "tendency_of_atmosphere_moles_of_bromine_nitrate", "tendency_of_atmosphere_moles_of_brox_expressed_as_bromine", "tendency_of_atmosphere_moles_of_butane", "tendency_of_atmosphere_moles_of_carbon_dioxide", "tendency_of_atmosphere_moles_of_carbon_monoxide", "tendency_of_atmosphere_moles_of_carbon_tetrachloride", "tendency_of_atmosphere_moles_of_cfc11", "tendency_of_atmosphere_moles_of_cfc113", "tendency_of_atmosphere_moles_of_cfc113a", "tendency_of_atmosphere_moles_of_cfc114", "tendency_of_atmosphere_moles_of_cfc115", "tendency_of_atmosphere_moles_of_cfc12", "tendency_of_atmosphere_moles_of_chlorine_dioxide", "tendency_of_atmosphere_moles_of_chlorine_monoxide", "tendency_of_atmosphere_moles_of_chlorine_nitrate", "tendency_of_atmosphere_moles_of_clox_expressed_as_chlorine", "tendency_of_atmosphere_moles_of_dichlorine_peroxide", "tendency_of_atmosphere_moles_of_dimethyl_sulfide", "tendency_of_atmosphere_moles_of_dinitrogen_pentoxide", "tendency_of_atmosphere_moles_of_ethane", "tendency_of_atmosphere_moles_of_ethanol", "tendency_of_atmosphere_moles_of_ethene", "tendency_of_atmosphere_moles_of_ethyne", "tendency_of_atmosphere_moles_of_formaldehyde", "tendency_of_atmosphere_moles_of_formic_acid", "tendency_of_atmosphere_moles_of_gaseous_divalent_mercury", "tendency_of_atmosphere_moles_of_gaseous_elemental_mercury", "tendency_of_atmosphere_moles_of_halon1202", "tendency_of_atmosphere_moles_of_halon1211", "tendency_of_atmosphere_moles_of_halon1301", "tendency_of_atmosphere_moles_of_halon2402", "tendency_of_atmosphere_moles_of_hcc140a", "tendency_of_atmosphere_moles_of_hcfc141b", "tendency_of_atmosphere_moles_of_hcfc142b", "tendency_of_atmosphere_moles_of_hcfc22", "tendency_of_atmosphere_moles_of_hexachlorobiphenyl", "tendency_of_atmosphere_moles_of_hox_expressed_as_hydrogen", "tendency_of_atmosphere_moles_of_hydrogen_bromide", "tendency_of_atmosphere_moles_of_hydrogen_chloride", "tendency_of_atmosphere_moles_of_hydrogen_cyanide", "tendency_of_atmosphere_moles_of_hydrogen_peroxide", "tendency_of_atmosphere_moles_of_hydroperoxyl_radical", "tendency_of_atmosphere_moles_of_hydroxyl_radical", "tendency_of_atmosphere_moles_of_hypobromous_acid", "tendency_of_atmosphere_moles_of_hypochlorous_acid", "tendency_of_atmosphere_moles_of_inorganic_bromine", "tendency_of_atmosphere_moles_of_inorganic_chlorine", "tendency_of_atmosphere_moles_of_isoprene", "tendency_of_atmosphere_moles_of_limonene", "tendency_of_atmosphere_moles_of_methane", "tendency_of_atmosphere_moles_of_methanol", "tendency_of_atmosphere_moles_of_methyl_bromide", "tendency_of_atmosphere_moles_of_methyl_chloride", "tendency_of_atmosphere_moles_of_methyl_hydroperoxide", "tendency_of_atmosphere_moles_of_methyl_peroxy_radical", "tendency_of_atmosphere_moles_of_molecular_hydrogen", "tendency_of_atmosphere_moles_of_nitrate_radical", "tendency_of_atmosphere_moles_of_nitric_acid", "tendency_of_atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", "tendency_of_atmosphere_moles_of_nitrogen_dioxide", "tendency_of_atmosphere_moles_of_nitrogen_monoxide", "tendency_of_atmosphere_moles_of_nitrous_acid", "tendency_of_atmosphere_moles_of_nitrous_oxide", "tendency_of_atmosphere_moles_of_nmvoc_expressed_as_carbon", "tendency_of_atmosphere_moles_of_nox_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_noy_expressed_as_nitrogen", "tendency_of_atmosphere_moles_of_ozone", "tendency_of_atmosphere_moles_of_peroxyacetyl_nitrate", "tendency_of_atmosphere_moles_of_peroxynitric_acid", "tendency_of_atmosphere_moles_of_propane", "tendency_of_atmosphere_moles_of_propene", "tendency_of_atmosphere_moles_of_radon", "tendency_of_atmosphere_moles_of_sulfate_dry_aerosol_particles", "tendency_of_atmosphere_moles_of_sulfur_dioxide", "tendency_of_atmosphere_moles_of_toluene", "tendency_of_atmosphere_moles_of_water_vapor", "tendency_of_atmosphere_moles_of_xylene", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_dry_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_gravitational_settling", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_turbulent_deposition", "tendency_of_atmosphere_number_content_of_aerosol_particles_due_to_wet_deposition", "tendency_of_atmosphere_potential_energy_content_due_to_advection", "tendency_of_bedrock_altitude", "tendency_of_canopy_water_amount_due_to_evaporation_of_intercepted_precipitation", "tendency_of_change_in_land_ice_amount", "tendency_of_dry_energy_content_of_atmosphere_layer", "tendency_of_dry_static_energy_content_of_atmosphere_layer", "tendency_of_eastward_wind", "tendency_of_eastward_wind_due_to_advection", "tendency_of_eastward_wind_due_to_advection_by_northward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_advection_by_upward_transformed_eulerian_mean_air_velocity", "tendency_of_eastward_wind_due_to_convection", "tendency_of_eastward_wind_due_to_diffusion", "tendency_of_eastward_wind_due_to_eliassen_palm_flux_divergence", "tendency_of_eastward_wind_due_to_gravity_wave_drag", "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_eastward_wind_due_to_numerical_artefacts", "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_enthalpy_content_of_atmosphere_layer_due_to_advection", "tendency_of_global_average_sea_level_change", "tendency_of_kinetic_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_land_ice_mass", "tendency_of_land_ice_mass_due_to_basal_mass_balance", "tendency_of_land_ice_mass_due_to_calving", "tendency_of_land_ice_mass_due_to_surface_mass_balance", "tendency_of_land_ice_thickness", "tendency_of_mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_dioxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_concentration_of_nox_expressed_as_nitrogen_monoxide_in_air_due_to_emission_from_aviation", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_deep_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_shallow_convection", "tendency_of_mass_content_of_water_vapor_in_atmosphere_layer_due_to_turbulence", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_ice_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_cloud_liquid_water_in_air_due_to_diffusion", "tendency_of_mass_fraction_of_convective_cloud_ice_in_air", "tendency_of_mass_fraction_of_convective_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_aggregation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_bergeron_findeisen_process_from_cloud_liquid", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_deposition_and_sublimation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_evaporation_of_melting_ice", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_water_vapor", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_icefall", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_cloud_liquid_water", "tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_rain", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_snow", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_advection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_autoconversion", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_bergeron_findeisen_process_to_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_cloud_microphysics", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_boundary_layer_mixing", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_convection", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_longwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_pressure_change", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_shortwave_heating", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation_from_turbulence", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_convective_detrainment", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_heterogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_homogeneous_nucleation", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_melting_from_cloud_ice", "tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_riming", "tendency_of_middle_atmosphere_moles_of_carbon_monoxide", "tendency_of_middle_atmosphere_moles_of_hcc140a", "tendency_of_middle_atmosphere_moles_of_methane", "tendency_of_middle_atmosphere_moles_of_methyl_bromide", "tendency_of_middle_atmosphere_moles_of_methyl_chloride", "tendency_of_middle_atmosphere_moles_of_molecular_hydrogen", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_dissolution", "tendency_of_mole_concentration_of_dissolved_inorganic_carbon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_iron_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_inorganic_silicon_in_sea_water_due_to_biological_processes", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_dissolution_from_inorganic_particles", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_scavenging_by_inorganic_particles", "tendency_of_mole_concentration_of_iron_in_sea_water_due_to_biological_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_and_photolytic_production", "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_destruction", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_grazing_of_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_calcareous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diatoms", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diazotrophic_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_miscellaneous_phytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_picophytoplankton", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_nitrate_utilization", "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_remineralization", "tendency_of_mole_concentration_of_silicon_in_sea_water_due_to_biological_production", "tendency_of_northward_wind", "tendency_of_northward_wind_due_to_advection", "tendency_of_northward_wind_due_to_convection", "tendency_of_northward_wind_due_to_diffusion", "tendency_of_northward_wind_due_to_gravity_wave_drag", "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", "tendency_of_northward_wind_due_to_orographic_gravity_wave_drag", "tendency_of_ocean_barotropic_streamfunction", "tendency_of_ocean_eddy_kinetic_energy_content_due_to_parameterized_eddy_advection", "tendency_of_ocean_mole_content_of_aragonite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_calcite_expressed_as_carbon_due_to_biological_production", "tendency_of_ocean_mole_content_of_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron", "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen", "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus", "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus_due_to_biological_processes", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon", "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon_due_to_biological_processes", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_deposition_and_fixation_and_runoff", "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_fixation", "tendency_of_ocean_mole_content_of_inorganic_carbon", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_iron_due_to_biological_production", "tendency_of_ocean_mole_content_of_iron_due_to_deposition_and_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", "tendency_of_ocean_mole_content_of_nitrogen_due_to_biological_production", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_runoff_and_sediment_dissolution", "tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_oxidized_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_phosphorus_due_to_biological_production", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_dry_deposition", "tendency_of_ocean_mole_content_of_reduced_nitrogen_compounds_expressed_as_nitrogen_due_to_wet_deposition", "tendency_of_ocean_mole_content_of_silicon_due_to_biological_production", "tendency_of_ocean_potential_energy_content", "tendency_of_ocean_potential_energy_content_due_to_background", "tendency_of_ocean_potential_energy_content_due_to_tides", "tendency_of_potential_energy_content_of_atmosphere_layer_due_to_advection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_convection", "tendency_of_potential_energy_content_of_ocean_layer_due_to_diffusion", "tendency_of_sea_ice_amount_due_to_basal_melting", "tendency_of_sea_ice_amount_due_to_congelation_ice_accumulation", "tendency_of_sea_ice_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_sea_ice_amount_due_to_frazil_ice_accumulation_in_leads", "tendency_of_sea_ice_amount_due_to_lateral_growth_of_ice_floes", "tendency_of_sea_ice_amount_due_to_lateral_melting", "tendency_of_sea_ice_amount_due_to_sea_ice_dynamics", "tendency_of_sea_ice_amount_due_to_sea_ice_thermodynamics", "tendency_of_sea_ice_amount_due_to_surface_melting", "tendency_of_sea_ice_area_fraction_due_to_dynamics", "tendency_of_sea_ice_area_fraction_due_to_ridging", "tendency_of_sea_ice_area_fraction_due_to_thermodynamics", "tendency_of_sea_ice_thickness_due_to_dynamics", "tendency_of_sea_ice_thickness_due_to_thermodynamics", "tendency_of_sea_surface_height_above_mean_sea_level", "tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", "tendency_of_sea_water_salinity", "tendency_of_sea_water_salinity_due_to_advection", "tendency_of_sea_water_salinity_due_to_horizontal_mixing", "tendency_of_sea_water_salinity_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_due_to_sea_ice_thermodynamics", "tendency_of_sea_water_salinity_due_to_vertical_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_dianeutral_mixing", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_diffusion", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_submesoscale_eddy_advection", "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_residual_mean_advection", "tendency_of_sea_water_temperature", "tendency_of_sea_water_temperature_due_to_advection", "tendency_of_sea_water_temperature_due_to_horizontal_mixing", "tendency_of_sea_water_temperature_due_to_parameterized_eddy_advection", "tendency_of_sea_water_temperature_due_to_vertical_mixing", "tendency_of_soil_and_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_soil_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fertilization", "tendency_of_specific_humidity", "tendency_of_specific_humidity_due_to_advection", "tendency_of_specific_humidity_due_to_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_convection", "tendency_of_specific_humidity_due_to_diffusion", "tendency_of_specific_humidity_due_to_model_physics", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation", "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", "tendency_of_specific_humidity_due_to_stratiform_precipitation", "tendency_of_surface_air_pressure", "tendency_of_surface_snow_amount", "tendency_of_surface_snow_amount_due_to_conversion_of_snow_to_sea_ice", "tendency_of_surface_snow_amount_due_to_drifting_into_sea", "tendency_of_surface_snow_amount_due_to_sea_ice_dynamics", "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", "tendency_of_troposphere_moles_of_carbon_monoxide", "tendency_of_troposphere_moles_of_hcc140a", "tendency_of_troposphere_moles_of_hcfc22", "tendency_of_troposphere_moles_of_methane", "tendency_of_troposphere_moles_of_methyl_bromide", "tendency_of_troposphere_moles_of_methyl_chloride", "tendency_of_troposphere_moles_of_molecular_hydrogen", "tendency_of_upward_air_velocity", "tendency_of_upward_air_velocity_due_to_advection", "tendency_of_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_wind_speed_due_to_convection", "tendency_of_wind_speed_due_to_gravity_wave_drag", "thermal_conductivity_of_frozen_ground", "thermal_energy_content_of_surface_snow", "thermodynamic_phase_of_cloud_water_particles_at_cloud_top", "thermosteric_change_in_mean_sea_level", "thermosteric_change_in_sea_surface_height", "thickness_of_convective_rainfall_amount", "thickness_of_convective_snowfall_amount", "thickness_of_ice_on_sea_ice_melt_pond", "thickness_of_liquid_water_cloud", "thickness_of_rainfall_amount", "thickness_of_snowfall_amount", "thickness_of_stratiform_rainfall_amount", "thickness_of_stratiform_snowfall_amount", "thunderstorm_probability", "tidal_sea_surface_height_above_lowest_astronomical_tide", "tidal_sea_surface_height_above_mean_higher_high_water", "tidal_sea_surface_height_above_mean_lower_low_water", "tidal_sea_surface_height_above_mean_low_water_springs", "tidal_sea_surface_height_above_mean_sea_level", "time", "time_of_maximum_flood_depth", "time_sample_difference_due_to_collocation", "time_when_flood_water_falls_below_threshold", "time_when_flood_water_rises_above_threshold", "toa_adjusted_longwave_forcing", "toa_adjusted_radiative_forcing", "toa_adjusted_shortwave_forcing", "toa_bidirectional_reflectance", "toa_brightness_temperature", "toa_brightness_temperature_assuming_clear_sky", "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", "toa_brightness_temperature_of_standard_scene", "toa_cloud_radiative_effect", "toa_incoming_shortwave_flux", "toa_instantaneous_longwave_forcing", "toa_instantaneous_radiative_forcing", "toa_instantaneous_shortwave_forcing", "toa_longwave_cloud_radiative_effect", "toa_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", "toa_net_downward_longwave_flux", "toa_net_downward_longwave_flux_assuming_clear_sky", "toa_net_downward_radiative_flux", "toa_net_downward_shortwave_flux", "toa_net_downward_shortwave_flux_assuming_clear_sky", "toa_net_upward_longwave_flux", "toa_net_upward_longwave_flux_assuming_clear_sky", "toa_net_upward_shortwave_flux", "toa_outgoing_longwave_flux", "toa_outgoing_longwave_flux_assuming_clear_sky", "toa_outgoing_longwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_outgoing_radiance_per_unit_wavelength", "toa_outgoing_radiance_per_unit_wavelength_due_to_solar_induced_fluorescence", "toa_outgoing_radiance_per_unit_wavenumber", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_target", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_scene", "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_target", "toa_outgoing_shortwave_flux", "toa_outgoing_shortwave_flux_assuming_clear_sky", "toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol", "toa_outgoing_shortwave_flux_assuming_no_aerosol", "toa_outgoing_shortwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", "toa_shortwave_cloud_radiative_effect", "to_direction_of_air_velocity_relative_to_sea_water", "to_direction_of_surface_downward_stress", "tracer_lifetime", "transpiration_amount", "transpiration_flux", "tropical_cyclone_eye_brightness_temperature", "tropical_cyclone_maximum_sustained_wind_speed", "tropopause_adjusted_longwave_forcing", "tropopause_adjusted_radiative_forcing", "tropopause_adjusted_shortwave_forcing", "tropopause_air_pressure", "tropopause_air_temperature", "tropopause_altitude", "tropopause_downwelling_longwave_flux", "tropopause_instantaneous_longwave_forcing", "tropopause_instantaneous_radiative_forcing", "tropopause_instantaneous_shortwave_forcing", "tropopause_net_downward_longwave_flux", "tropopause_net_downward_shortwave_flux", "tropopause_upwelling_shortwave_flux", "troposphere_mole_content_of_bromine_monoxide", "troposphere_mole_content_of_formaldehyde", "troposphere_mole_content_of_glyoxal", "troposphere_mole_content_of_iodine_monoxide", "troposphere_mole_content_of_nitrogen_dioxide", "troposphere_mole_content_of_ozone", "troposphere_mole_content_of_sulfur_dioxide", "turbulent_mixing_length_of_sea_water", "ultraviolet_index", "ultraviolet_index_assuming_clear_sky", "ultraviolet_index_assuming_overcast_sky", "upward_air_velocity", "upward_derivative_of_eastward_wind", "upward_derivative_of_northward_wind", "upward_derivative_of_wind_from_direction", "upward_dry_static_energy_flux_due_to_diffusion", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_eastward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_nonorographic_westward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_orographic_gravity_waves", "upward_eastward_stress_at_sea_ice_base", "upward_eliassen_palm_flux_in_air", "upward_geothermal_heat_flux_at_ground_level_in_land_ice", "upward_geothermal_heat_flux_at_sea_floor", "upward_heat_flux_at_ground_level_in_snow", "upward_heat_flux_at_ground_level_in_soil", "upward_heat_flux_in_air", "upward_heat_flux_in_sea_water_due_to_convection", "upward_latent_heat_flux_in_air", "upward_mass_flux_of_air", "upward_northward_stress_at_sea_ice_base", "upward_ocean_mass_transport", "upward_sea_ice_basal_heat_flux", "upward_sea_water_velocity", "upward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "upward_sensible_heat_flux_in_air", "upward_transformed_eulerian_mean_air_velocity", "upward_upward_derivative_of_geopotential", "upward_water_vapor_flux_in_air", "upward_water_vapor_flux_in_air_due_to_diffusion", "upward_x_stress_at_sea_ice_base", "upward_y_stress_at_sea_ice_base", "upwelling_longwave_flux_in_air", "upwelling_longwave_flux_in_air_assuming_clear_sky", "upwelling_longwave_radiance_in_air", "upwelling_radiance_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_sea_water", "upwelling_shortwave_flux_in_air", "upwelling_shortwave_flux_in_air_assuming_clear_sky", "upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "upwelling_shortwave_radiance_in_air", "vegetation_area_fraction", "vegetation_carbon_content", "vegetation_mass_content_of_13C", "vegetation_mass_content_of_14C", "vegetation_mass_content_of_nitrogen", "vertical_component_of_ocean_xy_tracer_diffusivity", "vertical_navigation_clearance_above_waterway_surface", "virtual_salt_flux_correction", "virtual_salt_flux_into_sea_water", "virtual_salt_flux_into_sea_water_due_to_evaporation", "virtual_salt_flux_into_sea_water_due_to_newtonian_relaxation", "virtual_salt_flux_into_sea_water_due_to_rainfall", "virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "virtual_salt_flux_into_sea_water_from_rivers", "virtual_temperature", "visibility_in_air", "volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles", "volume_absorption_coefficient_of_radiative_flux_in_sea_water", "volume_absorption_coefficient_of_radiative_flux_in_sea_water_due_to_dissolved_organic_matter", "volume_attenuated_backwards_scattering_function_in_air", "volume_attenuated_backwards_scattering_function_in_air_assuming_no_aerosol_or_cloud", "volume_attenuation_coefficient_of_downwelling_radiative_flux_in_sea_water", "volume_backwards_scattering_coefficient_in_air_due_to_dried_aerosol_particles", "volume_backwards_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water_corrected_for_pure_water_attenuance", "volume_extinction_coefficient_in_air_due_to_ambient_aerosol_particles", "volume_extinction_coefficient_in_air_due_to_cloud_particles", "volume_fraction_of_clay_in_soil", "volume_fraction_of_condensed_water_in_soil", "volume_fraction_of_condensed_water_in_soil_at_critical_point", "volume_fraction_of_condensed_water_in_soil_at_field_capacity", "volume_fraction_of_condensed_water_in_soil_at_wilting_point", "volume_fraction_of_condensed_water_in_soil_pores", "volume_fraction_of_frozen_water_in_soil", "volume_fraction_of_oxygen_in_sea_water", "volume_fraction_of_sand_in_soil", "volume_fraction_of_silt_in_soil", "volume_mixing_ratio_of_oxygen_at_stp_in_sea_water", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_dried_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_scattering_function_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_function_of_radiative_flux_in_sea_water", "water_evaporation_amount", "water_evaporation_amount_from_canopy", "water_evaporation_flux_from_canopy", "water_evaporation_flux_from_soil", "water_evapotranspiration_flux", "water_flux_correction", "water_flux_into_sea_water", "water_flux_into_sea_water_due_to_sea_ice_thermodynamics", "water_flux_into_sea_water_due_to_surface_drainage", "water_flux_into_sea_water_from_icebergs", "water_flux_into_sea_water_from_land_ice", "water_flux_into_sea_water_from_rivers", "water_flux_into_sea_water_from_rivers_and_surface_downward_water_flux", "water_flux_into_sea_water_without_flux_correction", "water_flux_out_of_sea_ice_and_sea_water", "water_flux_out_of_sea_water", "water_flux_out_of_sea_water_due_to_newtonian_relaxation", "water_flux_out_of_sea_water_due_to_sea_ice_thermodynamics", "water_potential_evaporation_amount", "water_potential_evaporation_flux", "water_sublimation_flux", "water_surface_height_above_reference_datum", "water_surface_reference_datum_altitude", "water_table_depth", "water_vapor_partial_pressure_in_air", "water_vapor_saturation_deficit_in_air", "water_volume_transport_in_river_channel", "water_volume_transport_into_sea_water_from_rivers", "wave_frequency", "westward_upward_derivative_of_geopotential", "westward_westward_derivative_of_geopotential", "wet_bulb_potential_temperature", "wet_bulb_temperature", "wind_chill_of_air_temperature", "wind_from_direction", "wind_gust_from_direction", "wind_mixing_energy_flux_into_sea_water", "wind_speed", "wind_speed_of_gust", "wind_speed_shear", "wind_to_direction", "wood_debris_mass_content_of_carbon", "wood_debris_mass_content_of_nitrogen", "x_derivative_of_ocean_rigid_lid_pressure", "x_heat_flux_in_sea_water_due_to_advection", "x_wind", "x_wind_gust", "y_derivative_of_ocean_rigid_lid_pressure", "y_heat_flux_in_sea_water_due_to_advection", "y_wind", "y_wind_gust", "zenith_angle"], "description": "Options", "index": [0], "layout": "IPY_MODEL_9b0b5a9476ac433bae0fa98096df4a7e", "rows": 10, "style": "IPY_MODEL_f06143b062d24a17bddab41ffee58db3"}}, "e350ad25445947b0b9db8ecd5723b4f7": {"model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": {"layout": "IPY_MODEL_a5704994a16b40e3b56c18fabd50f188", "outputs": [{"name": "stdout", "output_type": "stream", "text": "Regular expression: (?i)^(?!.*(air|brightness|change|depth|land|ice|conservative|flux|tendency))(?=.*tem)\n"}, {"data": {"application/vnd.jupyter.widget-view+json": {"model_id": "1682834b86a2410988482b141ddab5c4", "version_major": 2, "version_minor": 0}, "text/plain": "SelectMultiple(description='Options', index=(0,), layout=Layout(width='50%'), options=('automated_tropical_cyc\u2026"}, "metadata": {}, "output_type": "display_data"}]}}, "f06143b062d24a17bddab41ffee58db3": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", "state": {"description_width": ""}}, "f6b614501bed4d0eb51d21cf7eae9c74": {"model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextModel", "state": {"layout": "IPY_MODEL_409bd05eda7940f593cf2a31cde2a1d2", "style": "IPY_MODEL_1a4dfa5aa221435da06af0931936420a"}}, "f9f6d6900ec6433babd736d76b19ca90": {"model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": {}}}, "version_major": 2, "version_minor": 0} diff --git a/docs/create_vocabs.ipynb b/docs/vocab_widget.ipynb similarity index 92% rename from docs/create_vocabs.ipynb rename to docs/vocab_widget.ipynb index 21c47fd..c0ac98c 100644 --- a/docs/create_vocabs.ipynb +++ b/docs/vocab_widget.ipynb @@ -5,25 +5,9 @@ "id": "1d53d895-f0a0-4d60-86d5-1484d50eeb9f", "metadata": {}, "source": [ - "# Aimed at physical oceanographers\n", + "# Create the \"standard_names\" vocab\n", "\n", - "This page demonstrates setting up a vocabulary for CF standard_names to be used with known OMSA servers and assuming a set of variables of interest, and a general vocabulary that can be used with datasets that may not include standard_names but do have reasonably-named variables. These vocabularies can then be saved and combined to create one for regular use, or used individually, or input together to `OMSA.run()`.\n", - "\n", - "Variables of interest (\"nickname\"):\n", - "\n", - "* water temperature \"temp\"\n", - "* salinity \"salt\"\n", - "* sea surface height \"ssh\"\n", - "* u velocity \"u\"\n", - "* v velocity \"v\"\n", - "* w upward velocity \"w\"\n", - "* direction of water velocity \"water_dir\"\n", - "* magnitude of water velocity \"water_speed\"\n", - "* wind direction \"wind_dir\"\n", - "* wind speed \"wind_speed\"\n", - "* sea ice velocity u \"sea_ice_u\"\n", - "* sea ice velocity v \"sea_ice_v\"\n", - "* sea ice area fraction \"sea_ice_area_fraction\"\n", + "This section demonstrates setting up a vocabulary for CF standard_names to be used with known OMSA servers and assuming a set of variables of interest. These vocabularies can then be saved and combined to create one for regular use, or used individually, or input together to `OMSA.run()`.\n", "\n", "The workflow for making the vocabulary is to\n", "\n", @@ -67,7 +51,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "211553aa2b6b42f89162884cd296f2ff", + "model_id": "aab2f6fc9e544de2bd48ae267b11fa32", "version_major": 2, "version_minor": 0 }, @@ -81,7 +65,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "26e21c4daa484ff883ea8472a50004f2", + "model_id": "991c1cb5e58842d38227691b6cfe15d1", "version_major": 2, "version_minor": 0 }, @@ -95,7 +79,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "487665a1cfc34b3580a8c43eea042043", + "model_id": "d760e21fad834e33a2092010d5534d5b", "version_major": 2, "version_minor": 0 }, @@ -123,134 +107,6 @@ "source": [ "# w.vocab.save(omsa.VOCAB_PATH(\"standard_names\"))" ] - }, - { - "cell_type": "markdown", - "id": "3714d35f-edb4-464a-a674-35218e1c3846", - "metadata": {}, - "source": [ - "## General vocabulary\n", - "\n", - "We may need a more general vocabulary to capture variables from other sources that don't use these exact names. Here we make a vocabulary for that purpose." - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "9657750c-bdd9-4eb8-83a3-c4e4cd591cc1", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'temp': {'name': '(?i)^(?!.*(air|qc|status|atmospheric|bottom))(?=.*temp)'}, 'salt': {'name': '(?i)^(?!.*(soil|qc|status|bottom))(?=.*sal)'}, 'ssh': {'name': '(?i)^(?!.*(qc|status))(?=.*sea_surface_height)(?=.*surface_elevation)'}, 'u': {'name': 'u$|(?i)(?=.*east)(?=.*vel)'}, 'v': {'name': 'v$|(?i)(?=.*north)(?=.*vel)'}, 'w': {'name': 'w$|(?i)(?=.*up)(?=.*vel)'}, 'water_dir': {'name': '(?i)^(?!.*(qc|status|air|wind))(?=.*dir)(?=.*water)'}, 'water_speed': {'name': '(?i)^(?!.*(qc|status|air|wind))(?=.*speed)(?=.*water)'}, 'wind_dir': {'name': '(?i)^(?!.*(qc|status|water))(?=.*dir)(?=.*wind)'}, 'wind_speed': {'name': '(?i)^(?!.*(qc|status|water))(?=.*speed)(?=.*wind)'}, 'sea_ice_u': {'name': '(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*u)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*x)(?=.*vel)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*east)(?=.*vel)'}, 'sea_ice_v': {'name': '(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*v)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*y)(?=.*vel)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*north)(?=.*vel)'}, 'sea_ice_area_fraction': {'name': '(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*area)(?=.*fraction)'}}" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "nickname = \"temp\"\n", - "vocab = cfp.Vocab()\n", - "\n", - "# define a regular expression to represent your variable\n", - "reg = cfp.Reg(include=\"temp\", exclude=[\"air\",\"qc\",\"status\",\"atmospheric\",\"bottom\"])\n", - "\n", - "# Make an entry to add to your vocabulary\n", - "vocab.make_entry(nickname, reg.pattern(), attr=\"name\")\n", - "\n", - "vocab.make_entry(\"salt\", cfp.Reg(include=\"sal\", exclude=[\"soil\",\"qc\",\"status\",\"bottom\"]).pattern(), attr=\"name\")\n", - "vocab.make_entry(\"ssh\", cfp.Reg(include=[\"sea_surface_height\",\"surface_elevation\"], exclude=[\"qc\",\"status\"]).pattern(), attr=\"name\")\n", - "\n", - "reg = cfp.Reg(include=[\"east\", \"vel\"])\n", - "vocab.make_entry(\"u\", \"u$\", attr=\"name\")\n", - "vocab.make_entry(\"u\", reg.pattern(), attr=\"name\")\n", - "\n", - "reg = cfp.Reg(include=[\"north\", \"vel\"])\n", - "vocab.make_entry(\"v\", \"v$\", attr=\"name\")\n", - "vocab.make_entry(\"v\", reg.pattern(), attr=\"name\")\n", - "\n", - "reg = cfp.Reg(include=[\"up\", \"vel\"])\n", - "vocab.make_entry(\"w\", \"w$\", attr=\"name\")\n", - "vocab.make_entry(\"w\", reg.pattern(), attr=\"name\")\n", - "\n", - "vocab.make_entry(\"water_dir\", cfp.Reg(include=[\"dir\",\"water\"], exclude=[\"qc\",\"status\",\"air\",\"wind\"]).pattern(), attr=\"name\")\n", - "\n", - "vocab.make_entry(\"water_speed\", cfp.Reg(include=[\"speed\",\"water\"], exclude=[\"qc\",\"status\",\"air\",\"wind\"]).pattern(), attr=\"name\")\n", - "\n", - "vocab.make_entry(\"wind_dir\", cfp.Reg(include=[\"dir\",\"wind\"], exclude=[\"qc\",\"status\",\"water\"]).pattern(), attr=\"name\")\n", - "\n", - "vocab.make_entry(\"wind_speed\", cfp.Reg(include=[\"speed\",\"wind\"], exclude=[\"qc\",\"status\",\"water\"]).pattern(), attr=\"name\")\n", - "\n", - "reg1 = cfp.Reg(include=[\"sea\",\"ice\",\"u\"], exclude=[\"qc\",\"status\"])\n", - "reg2 = cfp.Reg(include=[\"sea\",\"ice\",\"x\",\"vel\"], exclude=[\"qc\",\"status\"])\n", - "reg3 = cfp.Reg(include=[\"sea\",\"ice\",\"east\",\"vel\"], exclude=[\"qc\",\"status\"])\n", - "vocab.make_entry(\"sea_ice_u\", reg1.pattern(), attr=\"name\")\n", - "vocab.make_entry(\"sea_ice_u\", reg2.pattern(), attr=\"name\")\n", - "vocab.make_entry(\"sea_ice_u\", reg3.pattern(), attr=\"name\")\n", - "\n", - "reg1 = cfp.Reg(include=[\"sea\",\"ice\",\"v\"], exclude=[\"qc\",\"status\"])\n", - "reg2 = cfp.Reg(include=[\"sea\",\"ice\",\"y\",\"vel\"], exclude=[\"qc\",\"status\"])\n", - "reg3 = cfp.Reg(include=[\"sea\",\"ice\",\"north\",\"vel\"], exclude=[\"qc\",\"status\"])\n", - "vocab.make_entry(\"sea_ice_v\", reg1.pattern(), attr=\"name\")\n", - "vocab.make_entry(\"sea_ice_v\", reg2.pattern(), attr=\"name\")\n", - "vocab.make_entry(\"sea_ice_v\", reg3.pattern(), attr=\"name\")\n", - "\n", - "vocab.make_entry(\"sea_ice_area_fraction\", cfp.Reg(include=[\"sea\",\"ice\",\"area\",\"fraction\"], exclude=[\"qc\",\"status\"]).pattern(), attr=\"name\")\n", - "\n", - "# vocab.save(omsa.VOCAB_PATH(\"general\"))\n", - "\n", - "vocab" - ] - }, - { - "cell_type": "markdown", - "id": "da39c0c3-886c-49c6-b14b-170264f647e1", - "metadata": { - "tags": [] - }, - "source": [ - "## Combine vocabularies\n", - "\n", - "A user can add together vocabularies. This vocabulary exactly matches all of the selections we made for the vocabularies above.\n", - "\n", - "For example:" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "83368c94-f6ab-4ea7-b564-c7751603a055", - "metadata": {}, - "outputs": [], - "source": [ - "v1 = cfp.Vocab(omsa.VOCAB_PATH(\"standard_names\"))\n", - "v2 = cfp.Vocab(omsa.VOCAB_PATH(\"general\"))" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "44cc796f-3b11-493b-899c-6624e513edee", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'v': {'standard_name': 'baroclinic_northward_sea_water_velocity$|barotropic_northward_sea_water_velocity$|barotropic_sea_water_y_velocity$|northward_sea_water_velocity$|northward_sea_water_velocity_assuming_no_tide$|northward_sea_water_velocity_due_to_tides$|sea_water_y_velocity$|surface_northward_sea_water_velocity$', 'name': 'v$|(?i)(?=.*north)(?=.*vel)'}, 'water_speed': {'standard_name': 'sea_water_speed$', 'name': '(?i)^(?!.*(qc|status|air|wind))(?=.*speed)(?=.*water)'}, 'ssh': {'standard_name': 'sea_surface_height_above_geoid$|sea_surface_height_above_geopotential_datum$|sea_surface_height_above_mean_sea_level$|sea_surface_height_above_reference_ellipsoid$|surface_height_above_geopotential_datum$|tidal_sea_surface_height_above_lowest_astronomical_tide$|tidal_sea_surface_height_above_mean_higher_high_water$|tidal_sea_surface_height_above_mean_lower_low_water$|tidal_sea_surface_height_above_mean_low_water_springs$|tidal_sea_surface_height_above_mean_sea_level$|water_surface_height_above_reference_datum$|water_surface_reference_datum_altitude$', 'name': '(?i)^(?!.*(qc|status))(?=.*sea_surface_height)(?=.*surface_elevation)'}, 'sea_ice_v': {'standard_name': 'northward_sea_ice_velocity$|sea_ice_y_velocity$', 'name': '(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*v)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*y)(?=.*vel)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*north)(?=.*vel)'}, 'salt': {'standard_name': 'sea_surface_salinity$|sea_water_absolute_salinity$|sea_water_practical_salinity$|sea_water_salinity$', 'name': '(?i)^(?!.*(soil|qc|status|bottom))(?=.*sal)'}, 'u': {'standard_name': 'baroclinic_eastward_sea_water_velocity$|barotropic_eastward_sea_water_velocity$|barotropic_sea_water_x_velocity$|eastward_sea_water_velocity$|eastward_sea_water_velocity_assuming_no_tide$|geostrophic_eastward_sea_water_velocity$|sea_water_x_velocity$|surface_eastward_sea_water_velocity$|surface_geostrophic_eastward_sea_water_velocity$|surface_geostrophic_sea_water_x_velocity$', 'name': 'u$|(?i)(?=.*east)(?=.*vel)'}, 'temp': {'standard_name': 'sea_surface_temperature$|sea_water_potential_temperature$|sea_water_temperature$', 'name': '(?i)^(?!.*(air|qc|status|atmospheric|bottom))(?=.*temp)'}, 'water_dir': {'standard_name': 'sea_water_velocity_from_direction$|sea_water_velocity_to_direction$', 'name': '(?i)^(?!.*(qc|status|air|wind))(?=.*dir)(?=.*water)'}, 'wind_dir': {'standard_name': 'wind_from_direction$|wind_to_direction$', 'name': '(?i)^(?!.*(qc|status|water))(?=.*dir)(?=.*wind)'}, 'sea_ice_u': {'standard_name': 'eastward_sea_ice_velocity$|sea_ice_x_velocity$', 'name': '(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*u)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*x)(?=.*vel)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*east)(?=.*vel)'}, 'wind_speed': {'standard_name': 'wind_speed$', 'name': '(?i)^(?!.*(qc|status|water))(?=.*speed)(?=.*wind)'}, 'sea_ice_area_fraction': {'standard_name': 'sea_ice_area_fraction$', 'name': '(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*area)(?=.*fraction)'}, 'w': {'standard_name': 'upward_sea_water_velocity$', 'name': 'w$|(?i)(?=.*up)(?=.*vel)'}}" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "v = v1 + v2\n", - "v" - ] } ], "metadata": { @@ -274,37 +130,71 @@ "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { - "04afc2c01b454620bc349b87e9393144": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": {} - }, - "063581d0e65c4cf9b5c590735965cd34": { - "model_module": "@jupyter-widgets/base", + "0cfffda958cd4fc2836f5f8c760ea631": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "model_name": "DescriptionStyleModel", "state": { - "width": "50%" + "description_width": "" } }, - "095e31ba72854f6796b0aa270d3373e4": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": {} - }, - "0c00d271116f4e54820186c795a3a339": { + "1682834b86a2410988482b141ddab5c4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "TextStyleModel", + "model_name": "SelectMultipleModel", "state": { - "description_width": "", - "font_size": null, - "text_color": null + "_options_labels": [ + "automated_tropical_cyclone_forecasting_system_storm_identifier", + "canopy_temperature", + "dew_point_temperature", + "dynamic_tropopause_potential_temperature", + "fire_temperature", + "freezing_temperature_of_sea_water", + "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", + "number_of_days_with_surface_temperature_below_threshold", + "ocean_mixed_layer_thickness_defined_by_temperature", + "product_of_eastward_sea_water_velocity_and_temperature", + "product_of_northward_sea_water_velocity_and_temperature", + "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", + "sea_surface_foundation_temperature", + "sea_surface_skin_temperature", + "sea_surface_subskin_temperature", + "sea_surface_temperature", + "sea_water_added_potential_temperature", + "sea_water_potential_temperature", + "sea_water_potential_temperature_at_sea_floor", + "sea_water_potential_temperature_expressed_as_heat_content", + "sea_water_redistributed_potential_temperature", + "sea_water_temperature", + "sea_water_temperature_anomaly", + "sea_water_temperature_at_sea_floor", + "sea_water_temperature_difference", + "soil_temperature", + "square_of_sea_surface_temperature", + "stem_mass_content_of_carbon", + "stem_mass_content_of_nitrogen", + "surface_temperature", + "surface_temperature_anomaly", + "temperature_in_ground", + "temperature_in_surface_snow", + "temperature_of_analysis_of_sea_water", + "temperature_of_sensor_for_oxygen_in_sea_water", + "virtual_temperature", + "wet_bulb_potential_temperature", + "wet_bulb_temperature" + ], + "description": "Options", + "index": [ + 15, + 17, + 21 + ], + "layout": "IPY_MODEL_5b08303cdec5483a9e639145cb0abe38", + "rows": 10, + "style": "IPY_MODEL_938489e78d954b6dbe373339e04bd535" } }, - "1305a0ef6daa41ea95f7a85b0c24e7da": { + "1a4dfa5aa221435da06af0931936420a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextStyleModel", @@ -314,32 +204,29 @@ "text_color": null } }, - "1ec15ed8df21422ba379413c551ad2cb": { - "model_module": "@jupyter-widgets/controls", + "1dc833a4319c46b1978bb2138da29f41": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "LayoutModel", "state": { - "description_width": "" + "width": "50%" } }, - "211553aa2b6b42f89162884cd296f2ff": { - "model_module": "@jupyter-widgets/controls", + "32aa7a5751dd4626903545a453f95767": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "VBoxModel", + "model_name": "LayoutModel", "state": { - "_dom_classes": [ - "widget-interact" - ], - "children": [ - "IPY_MODEL_d5efc2e4c35449d1933afd7e0218d542", - "IPY_MODEL_2c74709a136e43dd83689005a4031dc9", - "IPY_MODEL_7253849b5b1d46b2be5266556578c604", - "IPY_MODEL_b8cd1eefdeb74a2c9cd83b851d7182e8" - ], - "layout": "IPY_MODEL_c1241afeed47433e8a1690f2ed23e6b7" + "width": "50%" } }, - "25797b31158e45eabc008ee9c0e1e237": { + "35ce78e899b64bf59563c5676a49fd2f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": {} + }, + "39fcba728daa48e8bcf16deeec7e73c1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -347,37 +234,46 @@ "description_width": "" } }, - "26e21c4daa484ff883ea8472a50004f2": { + "409bd05eda7940f593cf2a31cde2a1d2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": {} + }, + "44ab81cf6ec749e9ad65fc52794c32c7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "ButtonModel", + "model_name": "TextModel", "state": { - "description": "Press to save", - "layout": "IPY_MODEL_04afc2c01b454620bc349b87e9393144", - "style": "IPY_MODEL_96cb5595f98d45128b55676270c0baed", - "tooltip": null + "description": "nickname", + "layout": "IPY_MODEL_f9f6d6900ec6433babd736d76b19ca90", + "style": "IPY_MODEL_bf14e632c80b4162a4ccb173b413690b", + "value": "temp" } }, - "2ab6e8895dbe4130bc0252f37be0c680": { - "model_module": "@jupyter-widgets/controls", + "472c502c82e24479aa9d31f11343ca5f": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "model_name": "LayoutModel", "state": { - "description_width": "" + "width": "50%" } }, - "2c74709a136e43dd83689005a4031dc9": { - "model_module": "@jupyter-widgets/controls", + "497fb3755d5d41af909c8a9b547d004d": { + "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", - "model_name": "TextModel", + "model_name": "LayoutModel", + "state": {} + }, + "49ee20188ebd491d9aa0fcacab393317": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", "state": { - "description": "include", - "layout": "IPY_MODEL_b5934906097e46a5bd19837dfe66e4e8", - "style": "IPY_MODEL_3e8c370fca6d4ac2b58bdf8c71f0df57", - "value": "tem" + "width": "50%" } }, - "32379cd9f90944798ddee856a106c4e4": { + "4bc3cf8516974a39a6535c12aa3bb4cd": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", @@ -386,16 +282,12 @@ "acoustic_signal_roundtrip_travel_time_in_sea_water", "aerodynamic_particle_diameter", "aerodynamic_resistance", - "age_of_sea_ice", "age_of_stratospheric_air", - "age_of_surface_snow", "aggregate_quality_flag", "air_density", "air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", - "air_pressure", - "air_pressure_anomaly", "air_pressure_at_cloud_base", "air_pressure_at_cloud_top", "air_pressure_at_convective_cloud_base", @@ -419,8 +311,6 @@ "altitude_at_top_of_atmosphere_model", "altitude_at_top_of_dry_convection", "amplitude_of_global_average_sea_level_change", - "angle_of_emergence", - "angle_of_incidence", "angle_of_rotation_from_east_to_x", "angle_of_rotation_from_east_to_y", "angle_of_rotation_from_solar_azimuth_to_platform_azimuth", @@ -742,14 +632,11 @@ "biological_taxon_lsid", "biological_taxon_name", "bioluminescent_photon_rate_in_sea_water", - "biomass_burning_carbon_flux", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "brunt_vaisala_frequency_in_air", - "burned_area", "burned_area_fraction", - "canopy_albedo", "canopy_and_surface_water_amount", "canopy_height", "canopy_resistance_to_ozone_dry_deposition", @@ -762,12 +649,10 @@ "carbon_mass_flux_into_litter_and_soil_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_soil_from_litter", "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", - "cell_area", "cell_thickness", "change_in_atmosphere_energy_content_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_energy_content_of_atmosphere_layer_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_land_ice_amount", - "change_in_land_ice_mass", "change_over_time_in_amount_of_ice_and_snow_on_land", "change_over_time_in_atmosphere_mass_content_of_water_due_to_advection", "change_over_time_in_canopy_water_amount", @@ -793,11 +678,9 @@ "charnock_coefficient_for_surface_roughness_length_for_momentum_in_air", "clear_sky_area_fraction", "climatology_test_quality_flag", - "cloud_albedo", "cloud_area_fraction", "cloud_area_fraction_in_atmosphere_layer", "cloud_base_altitude", - "cloud_binary_mask", "cloud_ice_mixing_ratio", "cloud_liquid_water_mixing_ratio", "cloud_top_altitude", @@ -835,7 +718,6 @@ "dew_point_temperature", "diameter_of_ambient_aerosol_particles", "difference_between_sea_surface_temperature_and_air_temperature", - "difference_of_air_pressure_from_model_reference", "diffuse_downwelling_shortwave_flux_in_air", "diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "dimensionless_exner_function", @@ -848,7 +730,6 @@ "distance_from_sun", "distance_from_tropical_cyclone_center_to_leading_edge_of_displaced_convection", "divergence_of_sea_ice_velocity", - "divergence_of_wind", "downward_air_velocity", "downward_dry_static_energy_flux_due_to_diffusion", "downward_eastward_momentum_flux_in_air", @@ -872,9 +753,6 @@ "downward_y_stress_at_sea_ice_base", "downward_y_stress_at_sea_water_surface", "downward_y_stress_correction_at_sea_water_surface", - "downwelling_longwave_flux_in_air", - "downwelling_longwave_flux_in_air_assuming_clear_sky", - "downwelling_longwave_radiance_in_air", "downwelling_photon_flux_in_sea_water", "downwelling_photon_flux_per_unit_wavelength_in_sea_water", "downwelling_photon_radiance_in_sea_water", @@ -958,7 +836,6 @@ "ertel_potential_vorticity", "fast_soil_pool_mass_content_of_carbon", "final_air_pressure_of_lifted_parcel", - "fire_area", "fire_radiative_power", "fire_temperature", "flat_line_test_quality_flag", @@ -990,13 +867,10 @@ "geostrophic_eastward_wind", "geostrophic_northward_sea_water_velocity", "geostrophic_northward_wind", - "global_average_sea_level_change", "global_average_steric_sea_level_change", "global_average_thermosteric_sea_level_change", "graupel_and_hail_fall_amount", - "graupel_and_hail_fall_flux", "graupel_fall_amount", - "graupel_fall_flux", "grid_latitude", "grid_longitude", "gross_primary_productivity_of_biomass_expressed_as_13C", @@ -1014,10 +888,8 @@ "growth_limitation_of_miscellaneous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_picophytoplankton_due_to_solar_irradiance", "hail_fall_amount", - "hail_fall_flux", "halosteric_change_in_mean_sea_level", "halosteric_change_in_sea_surface_height", - "harmonic_period", "heat_flux_correction", "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", @@ -1446,12 +1318,8 @@ "lagrangian_tendency_of_air_pressure", "lagrangian_tendency_of_atmosphere_sigma_coordinate", "land_area_fraction", - "land_binary_mask", - "land_cover_lccs", "land_ice_area_fraction", - "land_ice_basal_drag", "land_ice_basal_melt_rate", - "land_ice_basal_specific_mass_balance_flux", "land_ice_basal_temperature", "land_ice_basal_upward_velocity", "land_ice_basal_x_velocity", @@ -1460,14 +1328,11 @@ "land_ice_lwe_basal_melt_rate", "land_ice_lwe_calving_rate", "land_ice_lwe_surface_specific_mass_balance_rate", - "land_ice_mass", "land_ice_mass_not_displacing_sea_water", - "land_ice_runoff_flux", "land_ice_sigma_coordinate", "land_ice_specific_mass_flux_due_to_calving", "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", "land_ice_surface_melt_flux", - "land_ice_surface_specific_mass_balance_flux", "land_ice_surface_specific_mass_balance_rate", "land_ice_surface_upward_velocity", "land_ice_surface_x_velocity", @@ -1481,7 +1346,6 @@ "land_surface_liquid_water_amount", "land_water_amount", "latitude", - "leaf_area_index", "leaf_mass_content_of_carbon", "leaf_mass_content_of_nitrogen", "lightning_potential_index", @@ -1928,7 +1792,6 @@ "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "miscellaneous_living_matter_mass_content_of_carbon", "miscellaneous_living_matter_mass_content_of_nitrogen", - "model_level_number", "model_level_number_at_base_of_ocean_mixed_layer_defined_by_sigma_theta", "model_level_number_at_convective_cloud_base", "model_level_number_at_convective_cloud_top", @@ -2386,7 +2249,6 @@ "ocean_momentum_xy_laplacian_diffusivity", "ocean_montgomery_potential", "ocean_relative_vorticity", - "ocean_rigid_lid_pressure", "ocean_rigid_lid_pressure_expressed_as_sea_surface_height_above_geoid", "ocean_salt_x_transport", "ocean_salt_y_transport", @@ -2415,7 +2277,6 @@ "ocean_vertical_tracer_diffusivity_due_to_convection", "ocean_vertical_tracer_diffusivity_due_to_tides", "ocean_vertical_tracer_diffusivity_due_to_wind_mixing", - "ocean_volume", "ocean_volume_fraction", "ocean_volume_transport_across_line", "ocean_volume_x_transport", @@ -2434,7 +2295,6 @@ "permafrost_active_layer_thickness", "permafrost_area_fraction", "permafrost_layer_thickness", - "phase_of_global_average_sea_level_change", "photolysis_rate_of_molecular_oxygen", "photolysis_rate_of_nitrogen_dioxide", "photolysis_rate_of_ozone", @@ -2898,7 +2758,6 @@ "radius_of_tropical_cyclone_eye", "radius_of_tropical_cyclone_maximum_sustained_wind_speed", "rainfall_amount", - "rainfall_flux", "rainfall_rate", "rate_of_change_test_quality_flag", "rate_of_hydroxyl_radical_destruction_due_to_reaction_with_nmvoc", @@ -2909,10 +2768,7 @@ "ratio_of_y_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "realization", "reference_air_pressure_for_atmosphere_vertical_coordinate", - "reference_epoch", - "reference_pressure", "reference_sea_water_density_for_boussinesq_approximation", - "region", "relative_humidity", "relative_humidity_for_aerosol_particle_size_selection", "relative_platform_azimuth_angle", @@ -2923,25 +2779,20 @@ "root_mass_content_of_nitrogen", "runoff_amount", "runoff_amount_excluding_baseflow", - "runoff_flux", "salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "salt_flux_into_sea_water_from_rivers", "scattering_angle", "scene_type_of_dvorak_tropical_cyclone_cloud_region", "scene_type_of_dvorak_tropical_cyclone_eye_region", - "sea_area", "sea_area_fraction", - "sea_binary_mask", "sea_floor_depth_below_geoid", "sea_floor_depth_below_geopotential_datum", "sea_floor_depth_below_mean_sea_level", "sea_floor_depth_below_reference_ellipsoid", "sea_floor_depth_below_sea_surface", "sea_floor_sediment_grain_size", - "sea_ice_albedo", "sea_ice_amount", "sea_ice_and_surface_snow_amount", - "sea_ice_area", "sea_ice_area_fraction", "sea_ice_area_transport_across_line", "sea_ice_average_normal_horizontal_stress", @@ -2951,18 +2802,14 @@ "sea_ice_draft", "sea_ice_extent", "sea_ice_floe_diameter", - "sea_ice_freeboard", - "sea_ice_mass", "sea_ice_mass_content_of_salt", "sea_ice_melt_pond_thickness", "sea_ice_salinity", - "sea_ice_speed", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_ice_thickness", "sea_ice_transport_across_line", - "sea_ice_volume", "sea_ice_x_displacement", "sea_ice_x_force_per_unit_area_due_to_coriolis_effect", "sea_ice_x_force_per_unit_area_due_to_sea_surface_tilt", @@ -2991,14 +2838,11 @@ "sea_surface_height_bias_due_to_sea_surface_roughness", "sea_surface_height_correction_due_to_air_pressure_and_wind_at_high_frequency", "sea_surface_height_correction_due_to_air_pressure_at_low_frequency", - "sea_surface_mean_square_crosswave_slope", - "sea_surface_mean_square_upwave_slope", "sea_surface_mean_square_upwave_slope_direction", "sea_surface_primary_swell_wave_directional_spread", "sea_surface_primary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_from_direction", "sea_surface_primary_swell_wave_from_direction_at_variance_spectral_density_maximum", - "sea_surface_primary_swell_wave_mean_period", "sea_surface_primary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_significant_height", "sea_surface_salinity", @@ -3006,7 +2850,6 @@ "sea_surface_secondary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_from_direction", "sea_surface_secondary_swell_wave_from_direction_at_variance_spectral_density_maximum", - "sea_surface_secondary_swell_wave_mean_period", "sea_surface_secondary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_significant_height", "sea_surface_skin_temperature", @@ -3014,11 +2857,9 @@ "sea_surface_swell_wave_directional_spread", "sea_surface_swell_wave_from_direction", "sea_surface_swell_wave_from_direction_at_variance_spectral_density_maximum", - "sea_surface_swell_wave_mean_period", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_second_frequency_moment", - "sea_surface_swell_wave_period", "sea_surface_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_swell_wave_significant_height", "sea_surface_swell_wave_to_direction", @@ -3038,19 +2879,14 @@ "sea_surface_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wave_maximum_crest_height", "sea_surface_wave_maximum_height", - "sea_surface_wave_maximum_period", "sea_surface_wave_maximum_steepness", "sea_surface_wave_maximum_trough_depth", "sea_surface_wave_mean_height", "sea_surface_wave_mean_height_of_highest_tenth", - "sea_surface_wave_mean_period", "sea_surface_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wave_mean_period_of_highest_tenth", - "sea_surface_wave_mean_square_slope", - "sea_surface_wave_mean_square_x_slope", - "sea_surface_wave_mean_square_y_slope", "sea_surface_wave_mean_wavenumber_from_variance_spectral_density_first_wavenumber_moment", "sea_surface_wave_period_at_variance_spectral_density_maximum", "sea_surface_wave_period_of_highest_wave", @@ -3071,11 +2907,9 @@ "sea_surface_wind_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wind_wave_from_direction", "sea_surface_wind_wave_from_direction_at_variance_spectral_density_maximum", - "sea_surface_wind_wave_mean_period", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment", - "sea_surface_wind_wave_period", "sea_surface_wind_wave_period_at_variance_spectral_density_maximum", "sea_surface_wind_wave_significant_height", "sea_surface_wind_wave_to_direction", @@ -3142,7 +2976,6 @@ "sensor_band_central_radiation_wavelength", "sensor_band_central_radiation_wavenumber", "sensor_band_identifier", - "sensor_view_angle", "sensor_zenith_angle", "shallow_convection_time_fraction", "shallow_convective_cloud_base_altitude", @@ -3160,10 +2993,7 @@ "slow_soil_pool_mass_content_of_carbon", "snow_area_fraction_viewable_from_above", "snowfall_amount", - "snowfall_flux", - "snow_grain_size", "snow_transport_across_line_due_to_sea_ice_dynamics", - "soil_albedo", "soil_frozen_water_content", "soil_hydraulic_conductivity_at_saturation", "soil_mass_content_of_13C", @@ -3174,7 +3004,6 @@ "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", "soil_mass_content_of_nitrogen", "soil_moisture_content_at_field_capacity", - "soil_pool", "soil_pool_carbon_decay_rate", "soil_porosity", "soil_suction_at_saturation", @@ -3185,7 +3014,6 @@ "soil_water_ph", "solar_azimuth_angle", "solar_elevation_angle", - "solar_irradiance", "solar_irradiance_per_unit_wavelength", "solar_zenith_angle", "solid_precipitation_flux", @@ -3193,17 +3021,12 @@ "solid_precipitation_flux_containing_18O", "solid_precipitation_flux_containing_single_2H", "soot_content_of_surface_snow", - "sound_frequency", "sound_intensity_in_air", "sound_intensity_in_water", "sound_intensity_level_in_air", "sound_intensity_level_in_water", - "sound_pressure_in_air", "sound_pressure_in_water", - "sound_pressure_level_in_air", "sound_pressure_level_in_water", - "source", - "specific_dry_energy_of_air", "specific_gravitational_potential_energy", "specific_heat_capacity_of_frozen_ground", "specific_heat_capacity_of_sea_water", @@ -3212,7 +3035,6 @@ "specific_kinetic_energy_of_sea_water", "specific_turbulent_kinetic_energy_dissipation_in_sea_water", "specific_turbulent_kinetic_energy_of_sea_water", - "speed_of_sound_in_air", "speed_of_sound_in_sea_water", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", @@ -3257,13 +3079,8 @@ "subsurface_litter_mass_content_of_carbon", "subsurface_litter_mass_content_of_nitrogen", "subsurface_runoff_amount", - "subsurface_runoff_flux", "sunglint_angle", "sunlit_binary_mask", - "surface_air_pressure", - "surface_albedo", - "surface_albedo_assuming_deep_snow", - "surface_albedo_assuming_no_snow", "surface_altitude", "surface_backwards_scattering_coefficient_of_radar_wave", "surface_bidirectional_reflectance", @@ -3290,17 +3107,10 @@ "surface_downward_latent_heat_flux", "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", - "surface_downward_mass_flux_of_ammonia", "surface_downward_mass_flux_of_carbon_dioxide_abiotic_analogue_expressed_as_carbon", - "surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_natural_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_methane_due_to_wetland_biological_consumption", "surface_downward_mass_flux_of_water_due_to_irrigation", - "surface_downward_mole_flux_of_carbon_dioxide", - "surface_downward_mole_flux_of_cfc11", - "surface_downward_mole_flux_of_cfc12", - "surface_downward_mole_flux_of_molecular_oxygen", - "surface_downward_mole_flux_of_sulfur_hexafluoride", "surface_downward_northward_stress", "surface_downward_northward_stress_due_to_boundary_layer_mixing", "surface_downward_northward_stress_due_to_ocean_viscous_dissipation", @@ -3311,8 +3121,6 @@ "surface_downward_x_stress_correction", "surface_downward_y_stress", "surface_downward_y_stress_correction", - "surface_downwelling_longwave_flux_in_air", - "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", "surface_downwelling_longwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_photon_flux_in_sea_water", "surface_downwelling_photon_flux_per_unit_wavelength_in_sea_water", @@ -3752,13 +3560,10 @@ "surface_roughness_length_for_humidity_in_air", "surface_roughness_length_for_momentum_in_air", "surface_runoff_amount", - "surface_runoff_flux", "surface_snow_amount", "surface_snow_and_ice_melt_flux", "surface_snow_and_ice_melt_heat_flux", - "surface_snow_and_ice_refreezing_flux", "surface_snow_area_fraction", - "surface_snow_binary_mask", "surface_snow_density", "surface_snow_melt_amount", "surface_snow_melt_and_sublimation_heat_flux", @@ -3775,7 +3580,6 @@ "surface_upward_heat_flux_in_air", "surface_upward_latent_heat_flux", "surface_upward_latent_heat_flux_due_to_sublimation", - "surface_upward_mass_flux_of_ammonia", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", @@ -3808,16 +3612,12 @@ "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", - "surface_upward_mole_flux_of_carbon_dioxide", "surface_upward_mole_flux_of_dimethyl_sulfide", "surface_upward_northward_stress_due_to_sea_surface_waves", "surface_upward_sensible_heat_flux", "surface_upward_water_flux", "surface_upward_water_vapor_flux_in_air", - "surface_upwelling_longwave_flux_in_air", - "surface_upwelling_longwave_flux_in_air_assuming_clear_sky", "surface_upwelling_photosynthetic_photon_flux_in_air", - "surface_upwelling_radiance_in_air", "surface_upwelling_radiance_in_air_emerging_from_sea_water", "surface_upwelling_radiance_in_air_reflected_by_sea_water", "surface_upwelling_radiance_in_sea_water", @@ -4777,7 +4577,6 @@ "upward_eastward_momentum_flux_in_air_due_to_nonorographic_westward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_orographic_gravity_waves", "upward_eastward_stress_at_sea_ice_base", - "upward_eliassen_palm_flux_in_air", "upward_geothermal_heat_flux_at_ground_level_in_land_ice", "upward_geothermal_heat_flux_at_sea_floor", "upward_heat_flux_at_ground_level_in_snow", @@ -4785,7 +4584,6 @@ "upward_heat_flux_in_air", "upward_heat_flux_in_sea_water_due_to_convection", "upward_latent_heat_flux_in_air", - "upward_mass_flux_of_air", "upward_northward_stress_at_sea_ice_base", "upward_ocean_mass_transport", "upward_sea_ice_basal_heat_flux", @@ -4798,9 +4596,6 @@ "upward_water_vapor_flux_in_air_due_to_diffusion", "upward_x_stress_at_sea_ice_base", "upward_y_stress_at_sea_ice_base", - "upwelling_longwave_flux_in_air", - "upwelling_longwave_flux_in_air_assuming_clear_sky", - "upwelling_longwave_radiance_in_air", "upwelling_radiance_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_sea_water", @@ -4880,7 +4675,6 @@ "water_vapor_saturation_deficit_in_air", "water_volume_transport_in_river_channel", "water_volume_transport_into_sea_water_from_rivers", - "wave_frequency", "westward_upward_derivative_of_geopotential", "westward_westward_derivative_of_geopotential", "wet_bulb_potential_temperature", @@ -4889,19 +4683,15 @@ "wind_from_direction", "wind_gust_from_direction", "wind_mixing_energy_flux_into_sea_water", - "wind_speed", "wind_speed_of_gust", - "wind_speed_shear", "wind_to_direction", "wood_debris_mass_content_of_carbon", "wood_debris_mass_content_of_nitrogen", "x_derivative_of_ocean_rigid_lid_pressure", "x_heat_flux_in_sea_water_due_to_advection", - "x_wind", "x_wind_gust", "y_derivative_of_ocean_rigid_lid_pressure", "y_heat_flux_in_sea_water_due_to_advection", - "y_wind", "y_wind_gust", "zenith_angle" ], @@ -4909,12 +4699,28 @@ "index": [ 0 ], - "layout": "IPY_MODEL_42f6ddd93b5544d7a37da119fb161a53", + "layout": "IPY_MODEL_6c3459f62cd8433ab2d38b192a83b312", "rows": 10, - "style": "IPY_MODEL_7dc4660948c34e7e80561b715c36912a" + "style": "IPY_MODEL_39fcba728daa48e8bcf16deeec7e73c1" + } + }, + "4c09d675f61041bcbce501c3c25f3e32": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "state": { + "description_width": "" + } + }, + "4f36137883c14732b514d4d75847351e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "state": { + "description_width": "" } }, - "38bd870dcf00479d886592bf109c7f5f": { + "5b08303cdec5483a9e639145cb0abe38": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", @@ -4922,7 +4728,7 @@ "width": "50%" } }, - "3e8c370fca6d4ac2b58bdf8c71f0df57": { + "653bec301b4f49fdb48b20cb16e035d8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextStyleModel", @@ -4932,7 +4738,34 @@ "text_color": null } }, - "3fa144624b1740199c7e9ac474dc78c1": { + "68de4b0bf9f24947862a8ef71de230f8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "TextModel", + "state": { + "description": "exclude", + "layout": "IPY_MODEL_497fb3755d5d41af909c8a9b547d004d", + "style": "IPY_MODEL_a3f91050466040919c3e6b3d6823e487", + "value": "air|brightness|change|depth|land|ice|conservative|flux|tendency" + } + }, + "69efdc6bdd9e489199d5b73ccb06c79c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "width": "50%" + } + }, + "6c3459f62cd8433ab2d38b192a83b312": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "width": "50%" + } + }, + "72fbc5f1fe2941e7aac127c247697cc7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", @@ -9464,93 +9297,31 @@ "index": [ 0 ], - "layout": "IPY_MODEL_6bb4320193c24468ac21d48ace8a55e0", + "layout": "IPY_MODEL_472c502c82e24479aa9d31f11343ca5f", "rows": 10, - "style": "IPY_MODEL_2ab6e8895dbe4130bc0252f37be0c680" - } - }, - "42f6ddd93b5544d7a37da119fb161a53": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "width": "50%" - } - }, - "483124f7f42d4384ae301928ed3e952e": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "width": "50%" - } - }, - "487665a1cfc34b3580a8c43eea042043": { - "model_module": "@jupyter-widgets/output", - "model_module_version": "1.0.0", - "model_name": "OutputModel", - "state": { - "layout": "IPY_MODEL_095e31ba72854f6796b0aa270d3373e4", - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": "Vocabulary: {'temp': {'standard_name': 'sea_surface_temperature$|sea_water_potential_temperature$|sea_water_temperature$'}}\n" - } - ] - } - }, - "52de57c3129c441ab61ea5c5d7d3bf46": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", - "state": { - "description_width": "" - } - }, - "56c7c6122d3e4c31b48815f285b4c413": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "width": "50%" + "style": "IPY_MODEL_a66ee3d802144e32a94aa69133b79954" } }, - "5fe29f1beb0c4fdc8a1bcb29bcd7af17": { + "8177644bf7464684b420143288a2be27": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TextModel", "state": { - "layout": "IPY_MODEL_6d728f68d7894dbd939da3578740c348", - "style": "IPY_MODEL_fac52004c9054347ad76d5c54c9220be" - } - }, - "6bb4320193c24468ac21d48ace8a55e0": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": { - "width": "50%" + "description": "include", + "layout": "IPY_MODEL_35ce78e899b64bf59563c5676a49fd2f", + "style": "IPY_MODEL_653bec301b4f49fdb48b20cb16e035d8", + "value": "tem" } }, - "6d728f68d7894dbd939da3578740c348": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": {} - }, - "7253849b5b1d46b2be5266556578c604": { + "88102ffcd5944311b5ccc7448d867782": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "TextModel", + "model_name": "DescriptionStyleModel", "state": { - "description": "exclude", - "layout": "IPY_MODEL_b7d7ee2215464372847d566557e2a2c3", - "style": "IPY_MODEL_1305a0ef6daa41ea95f7a85b0c24e7da", - "value": "air|brightness|change|depth|land|ice|conservative|flux|tendency" + "description_width": "" } }, - "7c1bac5fff1b48f9887d32f7fd4fd457": { + "8c0a76952410422bab4d80ab5306404a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", @@ -9705,12 +9476,12 @@ "index": [ 0 ], - "layout": "IPY_MODEL_dc1c6f0321f847e1bddcec5e01d820c0", + "layout": "IPY_MODEL_69efdc6bdd9e489199d5b73ccb06c79c", "rows": 10, - "style": "IPY_MODEL_25797b31158e45eabc008ee9c0e1e237" + "style": "IPY_MODEL_4f36137883c14732b514d4d75847351e" } }, - "7dc4660948c34e7e80561b715c36912a": { + "938489e78d954b6dbe373339e04bd535": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -9718,7 +9489,54 @@ "description_width": "" } }, - "8b104e2020424618b401e8e4d2c53a17": { + "939b182a9bf84d3c87819e34ad964512": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": {} + }, + "991c1cb5e58842d38227691b6cfe15d1": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ButtonModel", + "state": { + "description": "Press to save", + "layout": "IPY_MODEL_a2942a7eea4a441093bf96c5f2207198", + "style": "IPY_MODEL_d487cde5a3ee4bca96148467136b9f8a", + "tooltip": null + } + }, + "9b0b5a9476ac433bae0fa98096df4a7e": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "width": "50%" + } + }, + "a2942a7eea4a441093bf96c5f2207198": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": {} + }, + "a3f91050466040919c3e6b3d6823e487": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "TextStyleModel", + "state": { + "description_width": "", + "font_size": null, + "text_color": null + } + }, + "a5704994a16b40e3b56c18fabd50f188": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": {} + }, + "a66ee3d802144e32a94aa69133b79954": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "DescriptionStyleModel", @@ -9726,7 +9544,30 @@ "description_width": "" } }, - "9311efa23935496381e59215b7d38c96": { + "aab2f6fc9e544de2bd48ae267b11fa32": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "state": { + "_dom_classes": [ + "widget-interact" + ], + "children": [ + "IPY_MODEL_44ab81cf6ec749e9ad65fc52794c32c7", + "IPY_MODEL_8177644bf7464684b420143288a2be27", + "IPY_MODEL_68de4b0bf9f24947862a8ef71de230f8", + "IPY_MODEL_e350ad25445947b0b9db8ecd5723b4f7" + ], + "layout": "IPY_MODEL_ae791d67b513406a80facb5f6b81f978" + } + }, + "ae791d67b513406a80facb5f6b81f978": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": {} + }, + "bbf48800a8464cbea4ba905c9177376a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", @@ -14258,133 +14099,177 @@ "index": [ 0 ], - "layout": "IPY_MODEL_38bd870dcf00479d886592bf109c7f5f", + "layout": "IPY_MODEL_1dc833a4319c46b1978bb2138da29f41", "rows": 10, - "style": "IPY_MODEL_52de57c3129c441ab61ea5c5d7d3bf46" + "style": "IPY_MODEL_4c09d675f61041bcbce501c3c25f3e32" } }, - "96cb5595f98d45128b55676270c0baed": { + "bf14e632c80b4162a4ccb173b413690b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "ButtonStyleModel", + "model_name": "TextStyleModel", "state": { - "font_family": null, + "description_width": "", "font_size": null, - "font_style": null, - "font_variant": null, - "font_weight": null, - "text_color": null, - "text_decoration": null + "text_color": null } }, - "ab3a07bc95be43f68a1f020e875fc680": { + "c5e0e2ec8f234b409c5888bc6f89c74e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", "state": { "_options_labels": [ - "automated_tropical_cyclone_forecasting_system_storm_identifier", + "air_equivalent_potential_temperature", + "air_equivalent_temperature", + "air_potential_temperature", + "air_pseudo_equivalent_potential_temperature", + "air_pseudo_equivalent_temperature", + "air_temperature", + "air_temperature_anomaly", + "air_temperature_at_cloud_top", + "air_temperature_at_effective_cloud_top_defined_by_infrared_radiation", + "air_temperature_lapse_rate", + "air_temperature_threshold", + "apparent_air_temperature", + "brightness_temperature", + "brightness_temperature_anomaly", + "brightness_temperature_at_cloud_top", "canopy_temperature", + "change_over_time_in_sea_water_conservative_temperature", + "change_over_time_in_sea_water_potential_temperature", + "change_over_time_in_sea_water_temperature", + "covariance_over_longitude_of_northward_wind_and_air_temperature", + "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", + "depth_at_shallowest_isotherm_defined_by_soil_temperature", + "depth_of_isosurface_of_sea_water_potential_temperature", "dew_point_temperature", + "difference_between_sea_surface_temperature_and_air_temperature", "dynamic_tropopause_potential_temperature", "fire_temperature", "freezing_temperature_of_sea_water", - "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", + "heat_index_of_air_temperature", + "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", + "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", + "integral_wrt_depth_of_sea_water_temperature", + "integral_wrt_time_of_air_temperature_deficit", + "integral_wrt_time_of_air_temperature_excess", + "land_ice_basal_temperature", + "land_ice_temperature", + "number_of_days_with_air_temperature_above_threshold", + "number_of_days_with_air_temperature_below_threshold", "number_of_days_with_surface_temperature_below_threshold", "ocean_mixed_layer_thickness_defined_by_temperature", + "product_of_air_temperature_and_specific_humidity", "product_of_eastward_sea_water_velocity_and_temperature", + "product_of_eastward_wind_and_air_temperature", + "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", "product_of_northward_sea_water_velocity_and_temperature", + "product_of_northward_wind_and_air_temperature", + "product_of_upward_air_velocity_and_air_temperature", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", + "sea_ice_basal_temperature", + "sea_ice_surface_temperature", + "sea_ice_temperature", + "sea_ice_temperature_expressed_as_heat_content", "sea_surface_foundation_temperature", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", "sea_surface_temperature", + "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", + "sea_water_conservative_temperature", "sea_water_potential_temperature", "sea_water_potential_temperature_at_sea_floor", "sea_water_potential_temperature_expressed_as_heat_content", + "sea_water_redistributed_conservative_temperature", "sea_water_redistributed_potential_temperature", "sea_water_temperature", "sea_water_temperature_anomaly", "sea_water_temperature_at_sea_floor", "sea_water_temperature_difference", "soil_temperature", + "spell_length_of_days_with_air_temperature_above_threshold", + "spell_length_of_days_with_air_temperature_below_threshold", + "square_of_air_temperature", "square_of_sea_surface_temperature", - "stem_mass_content_of_carbon", - "stem_mass_content_of_nitrogen", + "surface_brightness_temperature", "surface_temperature", "surface_temperature_anomaly", - "temperature_in_ground", - "temperature_in_surface_snow", - "temperature_of_analysis_of_sea_water", + "temperature_at_base_of_ice_sheet_model", + "temperature_at_top_of_ice_sheet_model", + "temperature_difference_between_ambient_air_and_air_lifted_adiabatically", + "temperature_difference_between_ambient_air_and_air_lifted_adiabatically_from_the_surface", + "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", + "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", + "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", + "temperature_in_ground", + "temperature_in_surface_snow", + "temperature_of_analysis_of_sea_water", "temperature_of_sensor_for_oxygen_in_sea_water", + "tendency_of_air_temperature", + "tendency_of_air_temperature_due_to_advection", + "tendency_of_air_temperature_due_to_boundary_layer_mixing", + "tendency_of_air_temperature_due_to_convection", + "tendency_of_air_temperature_due_to_diabatic_processes", + "tendency_of_air_temperature_due_to_diffusion", + "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", + "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", + "tendency_of_air_temperature_due_to_dry_convection", + "tendency_of_air_temperature_due_to_longwave_heating", + "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", + "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", + "tendency_of_air_temperature_due_to_model_physics", + "tendency_of_air_temperature_due_to_moist_convection", + "tendency_of_air_temperature_due_to_radiative_heating", + "tendency_of_air_temperature_due_to_shortwave_heating", + "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", + "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", + "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", + "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", + "tendency_of_air_temperature_due_to_stratiform_precipitation", + "tendency_of_air_temperature_due_to_turbulence", + "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", + "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", + "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", + "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", + "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", + "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", + "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", + "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", + "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", + "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", + "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_advection", + "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", + "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", + "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", + "tendency_of_sea_water_temperature", + "tendency_of_sea_water_temperature_due_to_advection", + "tendency_of_sea_water_temperature_due_to_horizontal_mixing", + "tendency_of_sea_water_temperature_due_to_parameterized_eddy_advection", + "tendency_of_sea_water_temperature_due_to_vertical_mixing", + "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", + "toa_brightness_temperature", + "toa_brightness_temperature_assuming_clear_sky", + "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", + "toa_brightness_temperature_of_standard_scene", + "tropical_cyclone_eye_brightness_temperature", + "tropopause_air_temperature", "virtual_temperature", "wet_bulb_potential_temperature", - "wet_bulb_temperature" + "wet_bulb_temperature", + "wind_chill_of_air_temperature" ], "description": "Options", "index": [ - 15, - 17, - 21 + 0 ], - "layout": "IPY_MODEL_063581d0e65c4cf9b5c590735965cd34", + "layout": "IPY_MODEL_32aa7a5751dd4626903545a453f95767", "rows": 10, - "style": "IPY_MODEL_8b104e2020424618b401e8e4d2c53a17" - } - }, - "b5934906097e46a5bd19837dfe66e4e8": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": {} - }, - "b7d7ee2215464372847d566557e2a2c3": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": {} - }, - "b8cd1eefdeb74a2c9cd83b851d7182e8": { - "model_module": "@jupyter-widgets/output", - "model_module_version": "1.0.0", - "model_name": "OutputModel", - "state": { - "layout": "IPY_MODEL_bf5929ce0fad4e3e9d20813edac2b5f8", - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": "Regular expression: (?i)^(?!.*(air|brightness|change|depth|land|ice|conservative|flux|tendency))(?=.*tem)\n" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "ab3a07bc95be43f68a1f020e875fc680", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": "SelectMultiple(description='Options', index=(0,), layout=Layout(width='50%'), options=('automated_tropical_cyc…" - }, - "metadata": {}, - "output_type": "display_data" - } - ] + "style": "IPY_MODEL_88102ffcd5944311b5ccc7448d867782" } }, - "bf5929ce0fad4e3e9d20813edac2b5f8": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": {} - }, - "c1241afeed47433e8a1690f2ed23e6b7": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": {} - }, - "d49878c11e4d43cc82f5c0f393497036": { + "caf488c47ac04dd08574aecb2c589090": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", @@ -14392,24 +14277,10 @@ "_options_labels": [ "acoustic_signal_roundtrip_travel_time_in_sea_water", "aerodynamic_particle_diameter", - "aerodynamic_resistance", - "age_of_sea_ice", - "age_of_stratospheric_air", - "age_of_surface_snow", "aggregate_quality_flag", - "air_density", "air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", - "air_pressure", - "air_pressure_anomaly", - "air_pressure_at_cloud_base", - "air_pressure_at_cloud_top", - "air_pressure_at_convective_cloud_base", - "air_pressure_at_convective_cloud_top", - "air_pressure_at_freezing_level", - "air_pressure_at_mean_sea_level", - "air_pressure_at_top_of_atmosphere_model", "air_pseudo_equivalent_potential_temperature", "air_pseudo_equivalent_temperature", "air_temperature", @@ -14422,54 +14293,20 @@ "altimeter_range_correction_due_to_dry_troposphere", "altimeter_range_correction_due_to_ionosphere", "altimeter_range_correction_due_to_wet_troposphere", - "altitude", - "altitude_at_top_of_atmosphere_model", - "altitude_at_top_of_dry_convection", - "amplitude_of_global_average_sea_level_change", - "angle_of_emergence", - "angle_of_incidence", - "angle_of_rotation_from_east_to_x", - "angle_of_rotation_from_east_to_y", - "angle_of_rotation_from_solar_azimuth_to_platform_azimuth", - "angstrom_exponent_of_ambient_aerosol_in_air", "apparent_air_temperature", - "apparent_oxygen_utilization", - "area_fraction", - "area_fraction_below_surface", - "area_fraction_of_day_defined_by_solar_zenith_angle", - "area_fraction_of_night_defined_by_solar_zenith_angle", - "area_fraction_of_twilight_defined_by_solar_zenith_angle", - "area_type", - "asymmetry_factor_of_ambient_aerosol_particles", - "atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles", - "atmosphere_absorption_optical_thickness_due_to_black_carbon_ambient_aerosol", - "atmosphere_absorption_optical_thickness_due_to_dust_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", - "atmosphere_absorption_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", "atmosphere_absorption_optical_thickness_due_to_sulfate_ambient_aerosol_particles", - "atmosphere_boundary_layer_thickness", "atmosphere_convective_available_potential_energy", "atmosphere_convective_available_potential_energy_wrt_surface", - "atmosphere_convective_inhibition", - "atmosphere_convective_inhibition_wrt_surface", - "atmosphere_downdraft_convective_mass_flux", "atmosphere_dry_energy_content", "atmosphere_dry_static_energy_content", - "atmosphere_eastward_stress_due_to_gravity_wave_drag", "atmosphere_energy_content", "atmosphere_enthalpy_content", - "atmosphere_heat_diffusivity", - "atmosphere_helicity", - "atmosphere_horizontal_streamfunction", "atmosphere_horizontal_velocity_potential", "atmosphere_hybrid_height_coordinate", "atmosphere_hybrid_sigma_pressure_coordinate", "atmosphere_kinetic_energy_content", "atmosphere_layer_thickness_expressed_as_geopotential_height_difference", - "atmosphere_level_of_free_convection", - "atmosphere_level_of_free_convection_wrt_surface", - "atmosphere_lifting_condensation_level", - "atmosphere_lifting_condensation_level_wrt_surface", "atmosphere_ln_pressure_coordinate", "atmosphere_mass_content_of_acetic_acid", "atmosphere_mass_content_of_aceto_nitrile", @@ -14594,188 +14431,55 @@ "atmosphere_mass_content_of_water_in_ambient_aerosol_particles", "atmosphere_mass_content_of_water_vapor", "atmosphere_mass_content_of_xylene", - "atmosphere_mass_of_air_per_unit_area", - "atmosphere_mass_of_carbon_dioxide", - "atmosphere_mass_per_unit_area", "atmosphere_mole_content_of_carbon_monoxide", "atmosphere_mole_content_of_methane", "atmosphere_mole_content_of_nitrogen_dioxide", "atmosphere_mole_content_of_ozone", "atmosphere_mole_content_of_water_vapor", - "atmosphere_moles_of_acetic_acid", - "atmosphere_moles_of_aceto_nitrile", - "atmosphere_moles_of_alpha_hexachlorocyclohexane", - "atmosphere_moles_of_alpha_pinene", - "atmosphere_moles_of_ammonia", - "atmosphere_moles_of_anthropogenic_nmvoc_expressed_as_carbon", - "atmosphere_moles_of_atomic_bromine", - "atmosphere_moles_of_atomic_chlorine", - "atmosphere_moles_of_atomic_nitrogen", - "atmosphere_moles_of_benzene", - "atmosphere_moles_of_beta_pinene", - "atmosphere_moles_of_biogenic_nmvoc_expressed_as_carbon", - "atmosphere_moles_of_bromine_chloride", - "atmosphere_moles_of_bromine_monoxide", "atmosphere_moles_of_bromine_nitrate", - "atmosphere_moles_of_brox_expressed_as_bromine", - "atmosphere_moles_of_butane", - "atmosphere_moles_of_carbon_dioxide", - "atmosphere_moles_of_carbon_monoxide", "atmosphere_moles_of_carbon_tetrachloride", - "atmosphere_moles_of_cfc11", - "atmosphere_moles_of_cfc113", - "atmosphere_moles_of_cfc113a", - "atmosphere_moles_of_cfc114", - "atmosphere_moles_of_cfc115", - "atmosphere_moles_of_cfc12", - "atmosphere_moles_of_chlorine_dioxide", - "atmosphere_moles_of_chlorine_monoxide", "atmosphere_moles_of_chlorine_nitrate", - "atmosphere_moles_of_clox_expressed_as_chlorine", - "atmosphere_moles_of_dichlorine_peroxide", - "atmosphere_moles_of_dimethyl_sulfide", - "atmosphere_moles_of_dinitrogen_pentoxide", - "atmosphere_moles_of_ethane", - "atmosphere_moles_of_ethanol", - "atmosphere_moles_of_ethene", - "atmosphere_moles_of_ethyne", - "atmosphere_moles_of_formaldehyde", - "atmosphere_moles_of_formic_acid", - "atmosphere_moles_of_gaseous_divalent_mercury", - "atmosphere_moles_of_gaseous_elemental_mercury", - "atmosphere_moles_of_halon1202", - "atmosphere_moles_of_halon1211", - "atmosphere_moles_of_halon1301", - "atmosphere_moles_of_halon2402", - "atmosphere_moles_of_hcc140a", - "atmosphere_moles_of_hcfc141b", - "atmosphere_moles_of_hcfc142b", - "atmosphere_moles_of_hcfc22", - "atmosphere_moles_of_hexachlorobiphenyl", - "atmosphere_moles_of_hox_expressed_as_hydrogen", - "atmosphere_moles_of_hydrogen_bromide", - "atmosphere_moles_of_hydrogen_chloride", - "atmosphere_moles_of_hydrogen_cyanide", - "atmosphere_moles_of_hydrogen_peroxide", - "atmosphere_moles_of_hydroperoxyl_radical", - "atmosphere_moles_of_hydroxyl_radical", - "atmosphere_moles_of_hypobromous_acid", - "atmosphere_moles_of_hypochlorous_acid", - "atmosphere_moles_of_inorganic_bromine", - "atmosphere_moles_of_inorganic_chlorine", - "atmosphere_moles_of_isoprene", - "atmosphere_moles_of_limonene", - "atmosphere_moles_of_methane", - "atmosphere_moles_of_methanol", - "atmosphere_moles_of_methyl_bromide", - "atmosphere_moles_of_methyl_chloride", - "atmosphere_moles_of_methyl_hydroperoxide", - "atmosphere_moles_of_methyl_peroxy_radical", - "atmosphere_moles_of_molecular_hydrogen", "atmosphere_moles_of_nitrate_radical", - "atmosphere_moles_of_nitric_acid", "atmosphere_moles_of_nitric_acid_trihydrate_ambient_aerosol_particles", - "atmosphere_moles_of_nitrogen_dioxide", - "atmosphere_moles_of_nitrogen_monoxide", - "atmosphere_moles_of_nitrous_acid", - "atmosphere_moles_of_nitrous_oxide", - "atmosphere_moles_of_nmvoc_expressed_as_carbon", - "atmosphere_moles_of_nox_expressed_as_nitrogen", - "atmosphere_moles_of_noy_expressed_as_nitrogen", - "atmosphere_moles_of_ozone", "atmosphere_moles_of_peroxyacetyl_nitrate", - "atmosphere_moles_of_peroxynitric_acid", - "atmosphere_moles_of_propane", - "atmosphere_moles_of_propene", - "atmosphere_moles_of_radon", - "atmosphere_moles_of_sulfur_dioxide", - "atmosphere_moles_of_toluene", "atmosphere_moles_of_water_vapor", - "atmosphere_moles_of_xylene", - "atmosphere_momentum_diffusivity", "atmosphere_net_rate_of_absorption_of_longwave_energy", "atmosphere_net_rate_of_absorption_of_shortwave_energy", - "atmosphere_net_upward_convective_mass_flux", - "atmosphere_net_upward_deep_convective_mass_flux", - "atmosphere_net_upward_shallow_convective_mass_flux", - "atmosphere_northward_stress_due_to_gravity_wave_drag", "atmosphere_number_content_of_aerosol_particles", "atmosphere_number_content_of_cloud_droplets", "atmosphere_number_content_of_ice_crystals", - "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", - "atmosphere_optical_thickness_due_to_ammonium_ambient_aerosol_particles", - "atmosphere_optical_thickness_due_to_black_carbon_ambient_aerosol", - "atmosphere_optical_thickness_due_to_cloud", - "atmosphere_optical_thickness_due_to_convective_cloud", - "atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles", - "atmosphere_optical_thickness_due_to_dust_dry_aerosol_particles", "atmosphere_optical_thickness_due_to_nitrate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", - "atmosphere_optical_thickness_due_to_pm10_ambient_aerosol_particles", - "atmosphere_optical_thickness_due_to_pm1_ambient_aerosol_particles", - "atmosphere_optical_thickness_due_to_pm2p5_ambient_aerosol_particles", - "atmosphere_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", - "atmosphere_optical_thickness_due_to_stratiform_cloud", "atmosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", "atmosphere_optical_thickness_due_to_water_in_ambient_aerosol_particles", "atmosphere_potential_energy_content", "atmosphere_sigma_coordinate", "atmosphere_sleve_coordinate", - "atmosphere_stability_k_index", "atmosphere_stability_showalter_index", - "atmosphere_stability_total_totals_index", - "atmosphere_transformed_eulerian_mean_meridional_overturning_mass_streamfunction", - "atmosphere_updraft_convective_mass_flux", "atmosphere_upward_absolute_vorticity", - "atmosphere_upward_relative_vorticity", - "atmosphere_x_relative_vorticity", - "atmosphere_y_relative_vorticity", "attenuated_signal_test_quality_flag", "automated_tropical_cyclone_forecasting_system_storm_identifier", "backscattering_ratio_in_air", "baroclinic_eastward_sea_water_velocity", "baroclinic_northward_sea_water_velocity", - "barometric_altitude", "barotropic_eastward_sea_water_velocity", "barotropic_northward_sea_water_velocity", "barotropic_sea_water_x_velocity", "barotropic_sea_water_y_velocity", - "basal_downward_heat_flux_in_sea_ice", - "baseflow_amount", "beam_consistency_indicator_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", - "beaufort_wind_force", - "bedrock_altitude", - "bedrock_altitude_change_due_to_isostatic_adjustment", - "biological_taxon_lsid", - "biological_taxon_name", "bioluminescent_photon_rate_in_sea_water", - "biomass_burning_carbon_flux", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", - "brunt_vaisala_frequency_in_air", - "burned_area", - "burned_area_fraction", - "canopy_albedo", "canopy_and_surface_water_amount", - "canopy_height", - "canopy_resistance_to_ozone_dry_deposition", - "canopy_snow_amount", "canopy_temperature", - "canopy_throughfall_flux", "canopy_water_amount", "carbon_mass_content_of_forestry_and_agricultural_products", - "carbon_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_litter_and_soil_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_soil_from_litter", "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", - "cell_area", - "cell_thickness", "change_in_atmosphere_energy_content_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_energy_content_of_atmosphere_layer_due_to_change_in_sigma_coordinate_wrt_surface_pressure", - "change_in_land_ice_amount", - "change_in_land_ice_mass", - "change_over_time_in_amount_of_ice_and_snow_on_land", "change_over_time_in_atmosphere_mass_content_of_water_due_to_advection", "change_over_time_in_canopy_water_amount", "change_over_time_in_groundwater_amount", @@ -14794,94 +14498,31 @@ "change_over_time_in_sea_water_salinity", "change_over_time_in_sea_water_specific_potential_enthalpy", "change_over_time_in_sea_water_temperature", - "change_over_time_in_surface_snow_amount", "change_over_time_in_thermal_energy_content_of_ice_and_snow_on_land", "change_over_time_in_thermal_energy_content_of_vegetation_and_litter_and_soil", - "charnock_coefficient_for_surface_roughness_length_for_momentum_in_air", - "clear_sky_area_fraction", "climatology_test_quality_flag", - "cloud_albedo", - "cloud_area_fraction", - "cloud_area_fraction_in_atmosphere_layer", - "cloud_base_altitude", - "cloud_binary_mask", - "cloud_ice_mixing_ratio", "cloud_liquid_water_mixing_ratio", - "cloud_top_altitude", "colony_forming_unit_number_concentration_of_biological_taxon_in_sea_water", - "compressive_strength_of_sea_ice", "concentration_of_colored_dissolved_organic_matter_in_sea_water_expressed_as_equivalent_mass_fraction_of_quinine_sulfate_dihydrate", - "convection_time_fraction", - "convective_cloud_area_fraction", - "convective_cloud_area_fraction_in_atmosphere_layer", - "convective_cloud_base_altitude", - "convective_cloud_base_height", - "convective_cloud_longwave_emissivity", - "convective_cloud_top_altitude", - "convective_cloud_top_height", - "convective_precipitation_amount", - "convective_precipitation_flux", "convective_precipitation_rate", - "convective_rainfall_amount", - "convective_rainfall_flux", "convective_rainfall_rate", - "convective_snowfall_amount", - "convective_snowfall_flux", "coriolis_parameter", - "correction_for_model_negative_specific_humidity", "covariance_over_longitude_of_northward_wind_and_air_temperature", - "depth", - "depth_at_base_of_unfrozen_ground", "depth_at_maximum_upward_derivative_of_sea_water_potential_temperature", "depth_at_shallowest_isotherm_defined_by_soil_temperature", "depth_at_shallowest_local_minimum_in_vertical_profile_of_mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", - "depth_below_geoid", - "depth_below_sea_floor", "depth_of_isosurface_of_sea_water_potential_temperature", - "dew_point_depression", "dew_point_temperature", "diameter_of_ambient_aerosol_particles", "difference_between_sea_surface_temperature_and_air_temperature", - "difference_of_air_pressure_from_model_reference", - "diffuse_downwelling_shortwave_flux_in_air", - "diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", - "dimensionless_exner_function", - "direct_downwelling_shortwave_flux_in_air", - "direction_of_radial_vector_away_from_instrument", - "direction_of_radial_vector_toward_instrument", - "direction_of_sea_ice_displacement", - "direction_of_sea_ice_velocity", "distance_from_geocenter", - "distance_from_sun", "distance_from_tropical_cyclone_center_to_leading_edge_of_displaced_convection", - "divergence_of_sea_ice_velocity", - "divergence_of_wind", - "downward_air_velocity", - "downward_dry_static_energy_flux_due_to_diffusion", - "downward_eastward_momentum_flux_in_air", - "downward_eastward_momentum_flux_in_air_due_to_diffusion", - "downward_eastward_stress_at_sea_ice_base", - "downward_heat_flux_at_ground_level_in_snow", - "downward_heat_flux_at_ground_level_in_soil", - "downward_heat_flux_in_air", - "downward_heat_flux_in_floating_ice", - "downward_heat_flux_in_sea_ice", - "downward_heat_flux_in_soil", "downward_liquid_water_mass_flux_into_groundwater", - "downward_northward_momentum_flux_in_air", - "downward_northward_momentum_flux_in_air_due_to_diffusion", - "downward_northward_stress_at_sea_ice_base", - "downward_sea_ice_basal_salt_flux", "downward_water_vapor_flux_in_air_due_to_diffusion", - "downward_x_stress_at_sea_ice_base", "downward_x_stress_at_sea_water_surface", "downward_x_stress_correction_at_sea_water_surface", - "downward_y_stress_at_sea_ice_base", "downward_y_stress_at_sea_water_surface", "downward_y_stress_correction_at_sea_water_surface", - "downwelling_longwave_flux_in_air", - "downwelling_longwave_flux_in_air_assuming_clear_sky", - "downwelling_longwave_radiance_in_air", "downwelling_photon_flux_in_sea_water", "downwelling_photon_flux_per_unit_wavelength_in_sea_water", "downwelling_photon_radiance_in_sea_water", @@ -14895,163 +14536,77 @@ "downwelling_photosynthetic_radiative_flux_in_sea_water", "downwelling_photosynthetic_spherical_irradiance_in_sea_water", "downwelling_radiance_in_sea_water", - "downwelling_radiance_per_unit_wavelength_in_air", "downwelling_radiance_per_unit_wavelength_in_sea_water", "downwelling_radiative_flux_in_sea_water", - "downwelling_radiative_flux_per_unit_wavelength_in_air", "downwelling_radiative_flux_per_unit_wavelength_in_sea_water", - "downwelling_shortwave_flux_in_air", - "downwelling_shortwave_flux_in_air_assuming_clear_sky", - "downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "downwelling_shortwave_flux_in_sea_water", "downwelling_shortwave_flux_in_sea_water_at_sea_ice_base", - "downwelling_shortwave_radiance_in_air", "downwelling_spherical_irradiance_in_sea_water", "downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", - "dry_atmosphere_mole_fraction_of_carbon_dioxide", - "dry_atmosphere_mole_fraction_of_methane", "dry_energy_content_of_atmosphere_layer", "dry_static_energy_content_of_atmosphere_layer", - "duration_of_sunshine", "dvorak_tropical_cyclone_current_intensity_number", - "dvorak_tropical_number", "dynamic_tropopause_potential_temperature", "eastward_air_velocity_relative_to_sea_water", - "eastward_atmosphere_dry_static_energy_transport_across_unit_distance", "eastward_atmosphere_water_transport_across_unit_distance", "eastward_atmosphere_water_vapor_transport_across_unit_distance", - "eastward_derivative_of_eastward_wind", - "eastward_derivative_of_northward_sea_ice_velocity", - "eastward_derivative_of_northward_wind", - "eastward_derivative_of_wind_from_direction", "eastward_flood_water_velocity", - "eastward_friction_velocity_in_air", - "eastward_land_ice_velocity", - "eastward_mass_flux_of_air", - "eastward_momentum_flux_correction", - "eastward_sea_ice_displacement", - "eastward_sea_ice_velocity", "eastward_sea_water_velocity", "eastward_sea_water_velocity_assuming_no_tide", "eastward_sea_water_velocity_at_sea_floor", "eastward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "eastward_sea_water_velocity_due_to_tides", - "eastward_transformed_eulerian_mean_air_velocity", "eastward_water_vapor_flux_in_air", "eastward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", - "eastward_wind", - "eastward_wind_shear", "effective_radius_of_cloud_condensed_water_particles_at_cloud_top", "effective_radius_of_cloud_liquid_water_particles", "effective_radius_of_cloud_liquid_water_particles_at_liquid_water_cloud_top", - "effective_radius_of_convective_cloud_ice_particles", "effective_radius_of_convective_cloud_liquid_water_particles", "effective_radius_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", - "effective_radius_of_convective_cloud_rain_particles", - "effective_radius_of_convective_cloud_snow_particles", - "effective_radius_of_stratiform_cloud_graupel_particles", - "effective_radius_of_stratiform_cloud_ice_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles", "effective_radius_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", - "effective_radius_of_stratiform_cloud_rain_particles", - "effective_radius_of_stratiform_cloud_snow_particles", "electrical_mobility_diameter_of_ambient_aerosol_particles", - "enrichment_of_14C_in_carbon_dioxide_in_air_expressed_as_uppercase_delta_14C", "enthalpy_content_of_atmosphere_layer", - "equilibrium_line_altitude", "equivalent_pressure_of_atmosphere_ozone_content", - "equivalent_reflectivity_factor", "equivalent_thickness_at_stp_of_atmosphere_ozone_content", "ertel_potential_vorticity", "fast_soil_pool_mass_content_of_carbon", "final_air_pressure_of_lifted_parcel", - "fire_area", - "fire_radiative_power", "fire_temperature", "flat_line_test_quality_flag", - "floating_ice_shelf_area", - "floating_ice_shelf_area_fraction", - "floating_ice_thickness", "flood_water_duration_above_threshold", "flood_water_speed", "flood_water_thickness", - "fog_area_fraction", - "forecast_period", - "forecast_reference_time", "fractional_saturation_of_oxygen_in_sea_water", - "fraction_of_surface_downwelling_photosynthetic_radiative_flux_absorbed_by_vegetation", - "fraction_of_time_with_sea_ice_area_fraction_above_threshold", - "freezing_level_altitude", "freezing_temperature_of_sea_water", - "frequency_of_lightning_flashes_per_unit_area", "frozen_water_content_of_soil_layer", "fugacity_of_carbon_dioxide_in_sea_water", "gap_test_quality_flag", - "geoid_height_above_reference_ellipsoid", "geopotential", "geopotential_height", "geopotential_height_anomaly", "geopotential_height_at_cloud_top", "geopotential_height_at_volcanic_ash_cloud_top", "geostrophic_eastward_sea_water_velocity", - "geostrophic_eastward_wind", "geostrophic_northward_sea_water_velocity", - "geostrophic_northward_wind", - "global_average_sea_level_change", "global_average_steric_sea_level_change", "global_average_thermosteric_sea_level_change", - "graupel_and_hail_fall_amount", - "graupel_and_hail_fall_flux", - "graupel_fall_amount", - "graupel_fall_flux", - "grid_latitude", - "grid_longitude", - "gross_primary_productivity_of_biomass_expressed_as_13C", - "gross_primary_productivity_of_biomass_expressed_as_14C", - "gross_primary_productivity_of_biomass_expressed_as_carbon", "gross_range_test_quality_flag", "gross_rate_of_decrease_in_area_fraction", "gross_rate_of_increase_in_area_fraction", - "grounded_ice_sheet_area", - "grounded_ice_sheet_area_fraction", - "ground_level_altitude", - "growth_limitation_of_calcareous_phytoplankton_due_to_solar_irradiance", - "growth_limitation_of_diatoms_due_to_solar_irradiance", - "growth_limitation_of_diazotrophic_phytoplankton_due_to_solar_irradiance", - "growth_limitation_of_miscellaneous_phytoplankton_due_to_solar_irradiance", - "growth_limitation_of_picophytoplankton_due_to_solar_irradiance", - "hail_fall_amount", - "hail_fall_flux", "halosteric_change_in_mean_sea_level", "halosteric_change_in_sea_surface_height", - "harmonic_period", - "heat_flux_correction", "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", "heat_flux_into_sea_water_due_to_newtonian_relaxation", "heat_flux_into_sea_water_due_to_sea_ice_thermodynamics", "heat_flux_into_sea_water_due_to_snow_thermodynamics", "heat_index_of_air_temperature", - "height", "height_above_geopotential_datum", "height_above_geopotential_datum_at_top_of_atmosphere_model", - "height_above_mean_sea_level", - "height_above_reference_ellipsoid", - "height_above_sea_floor", - "height_at_cloud_top", - "height_at_effective_cloud_top_defined_by_infrared_radiation", - "high_type_cloud_area_fraction", "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid", - "histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid", - "horizontal_atmosphere_dry_energy_transport", - "horizontal_dry_energy_transport_in_atmosphere_layer", - "humidity_mixing_ratio", - "ice_cloud_area_fraction", - "ice_cloud_area_fraction_in_atmosphere_layer", - "ice_volume_in_frozen_ground_in_excess_of_pore_volume_in_unfrozen_ground_expressed_as_fraction_of_frozen_ground_volume", "incoming_water_volume_transport_along_river_channel", "indicative_error_from_multibeam_acoustic_doppler_velocity_profiler_in_sea_water", - "institution", "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", "integral_wrt_depth_of_product_of_salinity_and_sea_water_density", @@ -15437,62 +14992,26 @@ "integral_wrt_time_of_surface_net_downward_shortwave_flux", "integral_wrt_time_of_toa_net_downward_shortwave_flux", "integral_wrt_time_of_toa_outgoing_longwave_flux", - "iron_growth_limitation_of_calcareous_phytoplankton", - "iron_growth_limitation_of_diatoms", - "iron_growth_limitation_of_diazotrophic_phytoplankton", - "iron_growth_limitation_of_miscellaneous_phytoplankton", - "iron_growth_limitation_of_picophytoplankton", - "isccp_cloud_area_fraction", "isotope_ratio_of_17O_to_16O_in_sea_water_excluding_solutes_and_solids", "isotope_ratio_of_18O_to_16O_in_sea_water_excluding_solutes_and_solids", - "isotropic_longwave_radiance_in_air", - "isotropic_radiance_per_unit_wavelength_in_air", - "isotropic_shortwave_radiance_in_air", "kinetic_energy_content_of_atmosphere_layer", - "kinetic_energy_dissipation_in_atmosphere_boundary_layer", "lagrangian_tendency_of_air_pressure", "lagrangian_tendency_of_atmosphere_sigma_coordinate", - "land_area_fraction", - "land_binary_mask", - "land_cover_lccs", - "land_ice_area_fraction", - "land_ice_basal_drag", "land_ice_basal_melt_rate", - "land_ice_basal_specific_mass_balance_flux", "land_ice_basal_temperature", - "land_ice_basal_upward_velocity", - "land_ice_basal_x_velocity", - "land_ice_basal_y_velocity", "land_ice_calving_rate", "land_ice_lwe_basal_melt_rate", "land_ice_lwe_calving_rate", "land_ice_lwe_surface_specific_mass_balance_rate", - "land_ice_mass", "land_ice_mass_not_displacing_sea_water", - "land_ice_runoff_flux", "land_ice_sigma_coordinate", - "land_ice_specific_mass_flux_due_to_calving", - "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", - "land_ice_surface_melt_flux", - "land_ice_surface_specific_mass_balance_flux", "land_ice_surface_specific_mass_balance_rate", - "land_ice_surface_upward_velocity", - "land_ice_surface_x_velocity", - "land_ice_surface_y_velocity", "land_ice_temperature", - "land_ice_thickness", - "land_ice_vertical_mean_x_velocity", - "land_ice_vertical_mean_y_velocity", - "land_ice_x_velocity", - "land_ice_y_velocity", "land_surface_liquid_water_amount", "land_water_amount", - "latitude", - "leaf_area_index", "leaf_mass_content_of_carbon", "leaf_mass_content_of_nitrogen", "lightning_potential_index", - "lightning_radiant_energy", "liquid_water_cloud_area_fraction", "liquid_water_cloud_area_fraction_in_atmosphere_layer", "liquid_water_content_of_permafrost_layer", @@ -15505,8 +15024,6 @@ "litter_mass_content_of_nitrogen", "location_test_quality_flag", "log10_size_interval_based_number_size_distribution_of_cloud_condensation_nuclei_at_stp_in_air", - "longitude", - "low_type_cloud_area_fraction", "lwe_convective_precipitation_rate", "lwe_convective_snowfall_rate", "lwe_precipitation_rate", @@ -15515,68 +15032,27 @@ "lwe_stratiform_snowfall_rate", "lwe_thickness_of_atmosphere_mass_content_of_water_vapor", "lwe_thickness_of_canopy_water_amount", - "lwe_thickness_of_convective_precipitation_amount", - "lwe_thickness_of_convective_snowfall_amount", "lwe_thickness_of_frozen_water_content_of_soil_layer", "lwe_thickness_of_moisture_content_of_soil_layer", - "lwe_thickness_of_precipitation_amount", - "lwe_thickness_of_snowfall_amount", "lwe_thickness_of_soil_moisture_content", - "lwe_thickness_of_stratiform_precipitation_amount", - "lwe_thickness_of_stratiform_snowfall_amount", - "lwe_thickness_of_surface_snow_amount", "lwe_thickness_of_water_evaporation_amount", "lwe_water_evaporation_rate", "magnitude_of_air_velocity_relative_to_sea_water", - "magnitude_of_derivative_of_position_wrt_model_level_number", "magnitude_of_derivative_of_position_wrt_x_coordinate_index", "magnitude_of_derivative_of_position_wrt_y_coordinate_index", "magnitude_of_heat_flux_in_sea_water_due_to_advection", - "magnitude_of_sea_ice_displacement", - "magnitude_of_surface_downward_stress", "mass_concentration_of_19_butanoyloxyfucoxanthin_in_sea_water", "mass_concentration_of_19_hexanoyloxyfucoxanthin_in_sea_water", - "mass_concentration_of_acetic_acid_in_air", - "mass_concentration_of_aceto_nitrile_in_air", "mass_concentration_of_adenosine_triphosphate_in_sea_water", - "mass_concentration_of_alkanes_in_air", - "mass_concentration_of_alkenes_in_air", "mass_concentration_of_alpha_carotene_in_sea_water", - "mass_concentration_of_alpha_hexachlorocyclohexane_in_air", - "mass_concentration_of_alpha_pinene_in_air", - "mass_concentration_of_ammonia_in_air", - "mass_concentration_of_ammonium_dry_aerosol_particles_in_air", - "mass_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", - "mass_concentration_of_aromatic_compounds_in_air", - "mass_concentration_of_atomic_bromine_in_air", - "mass_concentration_of_atomic_chlorine_in_air", - "mass_concentration_of_atomic_nitrogen_in_air", - "mass_concentration_of_benzene_in_air", "mass_concentration_of_beta_carotene_in_sea_water", - "mass_concentration_of_beta_pinene_in_air", - "mass_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mass_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", - "mass_concentration_of_biomass_burning_dry_aerosol_particles_in_air", - "mass_concentration_of_bromine_chloride_in_air", - "mass_concentration_of_bromine_monoxide_in_air", "mass_concentration_of_bromine_nitrate_in_air", - "mass_concentration_of_brox_expressed_as_bromine_in_air", - "mass_concentration_of_butane_in_air", "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", - "mass_concentration_of_carbon_dioxide_in_air", - "mass_concentration_of_carbon_monoxide_in_air", "mass_concentration_of_carbon_tetrachloride_in_air", "mass_concentration_of_carotene_in_sea_water", - "mass_concentration_of_cfc113a_in_air", - "mass_concentration_of_cfc113_in_air", - "mass_concentration_of_cfc114_in_air", - "mass_concentration_of_cfc115_in_air", - "mass_concentration_of_cfc11_in_air", - "mass_concentration_of_cfc12_in_air", - "mass_concentration_of_chlorine_dioxide_in_air", - "mass_concentration_of_chlorine_monoxide_in_air", "mass_concentration_of_chlorine_nitrate_in_air", "mass_concentration_of_chlorophyll_a_in_sea_water", "mass_concentration_of_chlorophyll_b_in_sea_water", @@ -15586,8 +15062,6 @@ "mass_concentration_of_chlorophyllide_a_in_sea_water", "mass_concentration_of_chlorophyll_in_sea_water", "mass_concentration_of_cloud_liquid_water_in_air", - "mass_concentration_of_clox_expressed_as_chlorine_in_air", - "mass_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "mass_concentration_of_condensed_water_in_soil", "mass_concentration_of_diadinoxanthin_in_sea_water", "mass_concentration_of_diatoms_expressed_as_carbon_in_sea_water", @@ -15595,115 +15069,43 @@ "mass_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", - "mass_concentration_of_dichlorine_peroxide_in_air", - "mass_concentration_of_dimethyl_sulfide_in_air", - "mass_concentration_of_dinitrogen_pentoxide_in_air", "mass_concentration_of_divinyl_chlorophyll_a_in_sea_water", - "mass_concentration_of_drizzle_in_air", - "mass_concentration_of_dust_dry_aerosol_particles_in_air", - "mass_concentration_of_elemental_carbon_dry_aerosol_particles_in_air", - "mass_concentration_of_ethane_in_air", - "mass_concentration_of_ethanol_in_air", - "mass_concentration_of_ethene_in_air", - "mass_concentration_of_ethyne_in_air", "mass_concentration_of_flagellates_expressed_as_carbon_in_sea_water", "mass_concentration_of_flagellates_expressed_as_nitrogen_in_sea_water", - "mass_concentration_of_formaldehyde_in_air", - "mass_concentration_of_formic_acid_in_air", "mass_concentration_of_fucoxanthin_in_sea_water", - "mass_concentration_of_gaseous_divalent_mercury_in_air", - "mass_concentration_of_gaseous_elemental_mercury_in_air", - "mass_concentration_of_halon1202_in_air", - "mass_concentration_of_halon1211_in_air", - "mass_concentration_of_halon1301_in_air", - "mass_concentration_of_halon2402_in_air", - "mass_concentration_of_hcc140a_in_air", - "mass_concentration_of_hcfc141b_in_air", - "mass_concentration_of_hcfc142b_in_air", - "mass_concentration_of_hcfc22_in_air", - "mass_concentration_of_hexachlorobiphenyl_in_air", - "mass_concentration_of_hox_expressed_as_hydrogen_in_air", - "mass_concentration_of_hydrogen_bromide_in_air", - "mass_concentration_of_hydrogen_chloride_in_air", - "mass_concentration_of_hydrogen_cyanide_in_air", - "mass_concentration_of_hydrogen_peroxide_in_air", - "mass_concentration_of_hydroperoxyl_radical_in_air", - "mass_concentration_of_hydroxyl_radical_in_air", - "mass_concentration_of_hypobromous_acid_in_air", - "mass_concentration_of_hypochlorous_acid_in_air", - "mass_concentration_of_inorganic_bromine_in_air", - "mass_concentration_of_inorganic_chlorine_in_air", "mass_concentration_of_inorganic_nitrogen_in_sea_water", - "mass_concentration_of_isoprene_in_air", - "mass_concentration_of_limonene_in_air", "mass_concentration_of_liquid_water_in_air", "mass_concentration_of_lutein_in_sea_water", - "mass_concentration_of_mercury_dry_aerosol_particles_in_air", - "mass_concentration_of_methane_in_air", - "mass_concentration_of_methanol_in_air", - "mass_concentration_of_methyl_bromide_in_air", - "mass_concentration_of_methyl_chloride_in_air", - "mass_concentration_of_methyl_hydroperoxide_in_air", - "mass_concentration_of_methyl_peroxy_radical_in_air", "mass_concentration_of_microphytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", - "mass_concentration_of_molecular_hydrogen_in_air", "mass_concentration_of_monovinyl_chlorophyll_a_in_sea_water", "mass_concentration_of_nanophytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_nitrate_dry_aerosol_particles_in_air", "mass_concentration_of_nitrate_radical_in_air", - "mass_concentration_of_nitric_acid_in_air", "mass_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", - "mass_concentration_of_nitrogen_dioxide_in_air", - "mass_concentration_of_nitrogen_monoxide_in_air", - "mass_concentration_of_nitrous_acid_in_air", - "mass_concentration_of_nitrous_oxide_in_air", - "mass_concentration_of_nmvoc_expressed_as_carbon_in_air", - "mass_concentration_of_nox_expressed_as_nitrogen_in_air", - "mass_concentration_of_noy_expressed_as_nitrogen_in_air", "mass_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mass_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mass_concentration_of_oxygenated_hydrocarbons_in_air", "mass_concentration_of_oxygen_in_sea_water", - "mass_concentration_of_ozone_in_air", "mass_concentration_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_peridinin_in_sea_water", "mass_concentration_of_peroxyacetyl_nitrate_in_air", - "mass_concentration_of_peroxynitric_acid_in_air", - "mass_concentration_of_peroxy_radicals_in_air", "mass_concentration_of_petroleum_hydrocarbons_in_sea_water", "mass_concentration_of_phaeopigments_in_sea_water", "mass_concentration_of_phosphate_in_sea_water", "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", - "mass_concentration_of_pm10_ambient_aerosol_particles_in_air", - "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", - "mass_concentration_of_pm10_sea_salt_dry_aerosol_particles_in_air", - "mass_concentration_of_pm1_ambient_aerosol_particles_in_air", - "mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air", - "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", - "mass_concentration_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_prasinoxanthin_in_sea_water", "mass_concentration_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", - "mass_concentration_of_propane_in_air", - "mass_concentration_of_propene_in_air", - "mass_concentration_of_radon_in_air", - "mass_concentration_of_rain_in_air", - "mass_concentration_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", - "mass_concentration_of_sea_salt_dry_aerosol_particles_in_air", "mass_concentration_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_concentration_of_silicate_in_sea_water", "mass_concentration_of_sulfate_ambient_aerosol_particles_in_air", "mass_concentration_of_sulfate_dry_aerosol_particles_in_air", - "mass_concentration_of_sulfur_dioxide_in_air", "mass_concentration_of_suspended_matter_in_sea_water", "mass_concentration_of_terpenes_in_air", - "mass_concentration_of_toluene_in_air", "mass_concentration_of_violaxanthin_in_sea_water", - "mass_concentration_of_volcanic_ash_in_air", "mass_concentration_of_water_in_ambient_aerosol_particles_in_air", "mass_concentration_of_water_vapor_in_air", - "mass_concentration_of_xylene_in_air", "mass_concentration_of_zeaxanthin_in_sea_water", "mass_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mass_content_of_13C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", @@ -15721,191 +15123,55 @@ "mass_content_of_water_vapor_containing_18O_in_atmosphere_layer", "mass_content_of_water_vapor_containing_single_2H_in_atmosphere_layer", "mass_content_of_water_vapor_in_atmosphere_layer", - "mass_flux_of_carbon_into_forestry_and_agricultural_products_due_to_crop_harvesting", "mass_flux_of_carbon_into_litter_from_vegetation", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality", "mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence", "mass_flux_of_carbon_into_sea_water_from_rivers", - "mass_flux_of_carbon_into_soil_from_vegetation_due_to_mortality", - "mass_flux_of_carbon_into_soil_from_vegetation_due_to_senescence", - "mass_flux_of_carbon_out_of_soil_due_to_leaching_and_runoff", - "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_into_sea_from_rivers", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_litter_and_soil_due_to_immobilisation_and_remineralization", "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil_due_to_leaching_and_runoff", - "mass_fraction_of_acetic_acid_in_air", - "mass_fraction_of_aceto_nitrile_in_air", - "mass_fraction_of_alkanes_in_air", - "mass_fraction_of_alkenes_in_air", - "mass_fraction_of_alpha_hexachlorocyclohexane_in_air", - "mass_fraction_of_alpha_pinene_in_air", - "mass_fraction_of_ammonia_in_air", - "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", - "mass_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", - "mass_fraction_of_aromatic_compounds_in_air", - "mass_fraction_of_atomic_bromine_in_air", - "mass_fraction_of_atomic_chlorine_in_air", - "mass_fraction_of_atomic_nitrogen_in_air", - "mass_fraction_of_benzene_in_air", - "mass_fraction_of_beta_pinene_in_air", - "mass_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", - "mass_fraction_of_bromine_chloride_in_air", - "mass_fraction_of_bromine_monoxide_in_air", "mass_fraction_of_bromine_nitrate_in_air", - "mass_fraction_of_brox_expressed_as_bromine_in_air", - "mass_fraction_of_butane_in_air", - "mass_fraction_of_carbon_dioxide_in_air", - "mass_fraction_of_carbon_dioxide_tracer_in_air", - "mass_fraction_of_carbon_monoxide_in_air", "mass_fraction_of_carbon_tetrachloride_in_air", - "mass_fraction_of_cfc113a_in_air", - "mass_fraction_of_cfc113_in_air", - "mass_fraction_of_cfc114_in_air", - "mass_fraction_of_cfc115_in_air", - "mass_fraction_of_cfc11_in_air", - "mass_fraction_of_cfc12_in_air", - "mass_fraction_of_chlorine_dioxide_in_air", - "mass_fraction_of_chlorine_monoxide_in_air", "mass_fraction_of_chlorine_nitrate_in_air", "mass_fraction_of_chlorophyll_a_in_sea_water", - "mass_fraction_of_clay_in_soil", "mass_fraction_of_cloud_condensed_water_in_air", - "mass_fraction_of_cloud_ice_in_air", "mass_fraction_of_cloud_liquid_water_in_air", - "mass_fraction_of_clox_expressed_as_chlorine_in_air", "mass_fraction_of_convective_cloud_condensed_water_in_air", - "mass_fraction_of_convective_cloud_ice_in_air", "mass_fraction_of_convective_cloud_liquid_water_in_air", - "mass_fraction_of_dichlorine_peroxide_in_air", - "mass_fraction_of_dimethyl_sulfide_in_air", - "mass_fraction_of_dinitrogen_pentoxide_in_air", - "mass_fraction_of_dust_dry_aerosol_particles_in_air", - "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", - "mass_fraction_of_ethane_in_air", - "mass_fraction_of_ethanol_in_air", - "mass_fraction_of_ethene_in_air", - "mass_fraction_of_ethyne_in_air", - "mass_fraction_of_formaldehyde_in_air", - "mass_fraction_of_formic_acid_in_air", "mass_fraction_of_frozen_water_in_soil_moisture", - "mass_fraction_of_gaseous_divalent_mercury_in_air", - "mass_fraction_of_gaseous_elemental_mercury_in_air", - "mass_fraction_of_graupel_and_hail_in_air", - "mass_fraction_of_graupel_in_air", - "mass_fraction_of_gravel_in_soil", - "mass_fraction_of_hail_in_air", - "mass_fraction_of_halon1202_in_air", - "mass_fraction_of_halon1211_in_air", - "mass_fraction_of_halon1301_in_air", - "mass_fraction_of_halon2402_in_air", - "mass_fraction_of_hcc140a_in_air", - "mass_fraction_of_hcfc141b_in_air", - "mass_fraction_of_hcfc142b_in_air", - "mass_fraction_of_hcfc22_in_air", - "mass_fraction_of_hexachlorobiphenyl_in_air", - "mass_fraction_of_hox_expressed_as_hydrogen_in_air", - "mass_fraction_of_hydrogen_bromide_in_air", - "mass_fraction_of_hydrogen_chloride_in_air", - "mass_fraction_of_hydrogen_cyanide_in_air", - "mass_fraction_of_hydrogen_peroxide_in_air", - "mass_fraction_of_hydroperoxyl_radical_in_air", - "mass_fraction_of_hydroxyl_radical_in_air", - "mass_fraction_of_hypobromous_acid_in_air", - "mass_fraction_of_hypochlorous_acid_in_air", - "mass_fraction_of_inorganic_bromine_in_air", - "mass_fraction_of_inorganic_chlorine_in_air", - "mass_fraction_of_isoprene_in_air", - "mass_fraction_of_limonene_in_air", - "mass_fraction_of_liquid_precipitation_in_air", - "mass_fraction_of_mercury_dry_aerosol_particles_in_air", - "mass_fraction_of_methane_in_air", - "mass_fraction_of_methanesulfonic_acid_dry_aerosol_particles_in_air", - "mass_fraction_of_methanol_in_air", - "mass_fraction_of_methyl_bromide_in_air", - "mass_fraction_of_methyl_chloride_in_air", - "mass_fraction_of_methyl_hydroperoxide_in_air", - "mass_fraction_of_methyl_peroxy_radical_in_air", - "mass_fraction_of_molecular_hydrogen_in_air", "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_nitrate_radical_in_air", - "mass_fraction_of_nitric_acid_in_air", "mass_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", - "mass_fraction_of_nitrogen_dioxide_in_air", - "mass_fraction_of_nitrogen_monoxide_in_air", - "mass_fraction_of_nitrous_acid_in_air", - "mass_fraction_of_nitrous_oxide_in_air", - "mass_fraction_of_nmvoc_expressed_as_carbon_in_air", - "mass_fraction_of_nox_expressed_as_nitrogen_in_air", - "mass_fraction_of_noy_expressed_as_nitrogen_in_air", "mass_fraction_of_organic_matter_in_soil", "mass_fraction_of_oxygenated_hydrocarbons_in_air", - "mass_fraction_of_ozone_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_peroxyacetyl_nitrate_in_air", - "mass_fraction_of_peroxynitric_acid_in_air", - "mass_fraction_of_peroxy_radicals_in_air", - "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", - "mass_fraction_of_pm10_ammonium_dry_aerosol_particles_in_air", - "mass_fraction_of_pm10_dry_aerosol_particles_in_air", - "mass_fraction_of_pm10_dust_dry_aerosol_particles_in_air", - "mass_fraction_of_pm10_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm10_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_primary_particulate_organic_matter_dry_aerosol_particles_in_air", - "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", - "mass_fraction_of_pm10_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm10_sulfate_dry_aerosol_particles_in_air", - "mass_fraction_of_pm1_ambient_aerosol_particles_in_air", - "mass_fraction_of_pm1_dry_aerosol_particles_in_air", - "mass_fraction_of_pm2p5_ambient_aerosol_particles_in_air", - "mass_fraction_of_pm2p5_ammonium_dry_aerosol_particles_in_air", - "mass_fraction_of_pm2p5_dry_aerosol_particles_in_air", - "mass_fraction_of_pm2p5_dust_dry_aerosol_particles_in_air", - "mass_fraction_of_pm2p5_elemental_carbon_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_nitrate_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_expressed_as_carbon_in_air", "mass_fraction_of_pm2p5_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_primary_particulate_organic_matter_dry_aerosol_particles_in_air", - "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", - "mass_fraction_of_pm2p5_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_pm2p5_sulfate_dry_aerosol_particles_in_air", - "mass_fraction_of_precipitation_in_air", "mass_fraction_of_primary_particulate_organic_matter_dry_aerosol_particles_in_air", - "mass_fraction_of_propane_in_air", - "mass_fraction_of_propene_in_air", - "mass_fraction_of_radon_in_air", - "mass_fraction_of_rainfall_falling_onto_surface_snow", - "mass_fraction_of_sand_in_soil", - "mass_fraction_of_sea_salt_dry_aerosol_particles_expressed_as_cations_in_air", - "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", "mass_fraction_of_shallow_convective_cloud_liquid_water_in_air", - "mass_fraction_of_silt_in_soil", - "mass_fraction_of_snow_in_air", - "mass_fraction_of_solid_precipitation_falling_onto_surface_snow", - "mass_fraction_of_stratiform_cloud_ice_in_air", "mass_fraction_of_stratiform_cloud_liquid_water_in_air", "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", - "mass_fraction_of_sulfur_dioxide_in_air", - "mass_fraction_of_sulfuric_acid_in_air", "mass_fraction_of_terpenes_in_air", - "mass_fraction_of_toluene_in_air", "mass_fraction_of_unfrozen_water_in_soil_moisture", "mass_fraction_of_water_in_air", "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm10_ambient_aerosol_particles_in_air", "mass_fraction_of_water_in_pm2p5_ambient_aerosol_particles_in_air", - "mass_fraction_of_xylene_in_air", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_strain_rate", "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_stress", "medium_soil_pool_mass_content_of_carbon", - "medium_type_cloud_area_fraction", "minimum_depth_of_aragonite_undersaturation_in_sea_water", "minimum_depth_of_calcite_undersaturation_in_sea_water", - "minus_one_times_surface_upwelling_longwave_flux_in_air", - "minus_one_times_surface_upwelling_shortwave_flux_in_air", - "minus_one_times_toa_outgoing_shortwave_flux", "minus_one_times_water_flux_into_sea_water_from_rivers", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", @@ -15935,37 +15201,15 @@ "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "miscellaneous_living_matter_mass_content_of_carbon", "miscellaneous_living_matter_mass_content_of_nitrogen", - "model_level_number", - "model_level_number_at_base_of_ocean_mixed_layer_defined_by_sigma_theta", - "model_level_number_at_convective_cloud_base", - "model_level_number_at_convective_cloud_top", - "model_level_number_at_sea_floor", - "model_level_number_at_top_of_atmosphere_boundary_layer", "moisture_content_of_soil_layer_at_field_capacity", - "mole_concentration_of_acetic_acid_in_air", - "mole_concentration_of_aceto_nitrile_in_air", "mole_concentration_of_adenosine_triphosphate_in_sea_water", - "mole_concentration_of_alpha_hexachlorocyclohexane_in_air", - "mole_concentration_of_alpha_pinene_in_air", - "mole_concentration_of_ammonia_in_air", "mole_concentration_of_ammonium_in_sea_water", - "mole_concentration_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_at_saturation", - "mole_concentration_of_atomic_bromine_in_air", - "mole_concentration_of_atomic_chlorine_in_air", - "mole_concentration_of_atomic_nitrogen_in_air", "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", - "mole_concentration_of_benzene_in_air", - "mole_concentration_of_beta_pinene_in_air", - "mole_concentration_of_biogenic_nmvoc_expressed_as_carbon_in_air", "mole_concentration_of_biological_taxon_expressed_as_carbon_in_sea_water", "mole_concentration_of_biological_taxon_expressed_as_nitrogen_in_sea_water", - "mole_concentration_of_bromine_chloride_in_air", - "mole_concentration_of_bromine_monoxide_in_air", "mole_concentration_of_bromine_nitrate_in_air", - "mole_concentration_of_brox_expressed_as_bromine_in_air", - "mole_concentration_of_butane_in_air", "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_at_saturation", @@ -15974,28 +15218,14 @@ "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_calcite_in_sea_water", "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", "mole_concentration_of_carbonate_natural_analogue_expressed_as_carbon_in_sea_water", - "mole_concentration_of_carbon_dioxide_in_air", - "mole_concentration_of_carbon_monoxide_in_air", "mole_concentration_of_carbon_tetrachloride_in_air", - "mole_concentration_of_cfc113a_in_air", - "mole_concentration_of_cfc113_in_air", - "mole_concentration_of_cfc114_in_air", - "mole_concentration_of_cfc115_in_air", - "mole_concentration_of_cfc11_in_air", "mole_concentration_of_cfc11_in_sea_water", - "mole_concentration_of_cfc12_in_air", "mole_concentration_of_cfc12_in_sea_water", - "mole_concentration_of_chlorine_dioxide_in_air", - "mole_concentration_of_chlorine_monoxide_in_air", "mole_concentration_of_chlorine_nitrate_in_air", - "mole_concentration_of_clox_expressed_as_chlorine_in_air", "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", "mole_concentration_of_diatoms_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", - "mole_concentration_of_dichlorine_peroxide_in_air", - "mole_concentration_of_dimethyl_sulfide_in_air", "mole_concentration_of_dimethyl_sulfide_in_sea_water", - "mole_concentration_of_dinitrogen_pentoxide_in_air", "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", "mole_concentration_of_dissolved_inorganic_carbon_abiotic_analogue_in_sea_water", @@ -16014,67 +15244,21 @@ "mole_concentration_of_dissolved_organic_nitrogen_in_sea_water", "mole_concentration_of_dissolved_organic_phosphorus_in_sea_water", "mole_concentration_of_dissolved_phosphorus_in_sea_water", - "mole_concentration_of_ethane_in_air", - "mole_concentration_of_ethanol_in_air", - "mole_concentration_of_ethene_in_air", - "mole_concentration_of_ethyne_in_air", - "mole_concentration_of_formaldehyde_in_air", - "mole_concentration_of_formic_acid_in_air", - "mole_concentration_of_gaseous_divalent_mercury_in_air", - "mole_concentration_of_gaseous_elemental_mercury_in_air", - "mole_concentration_of_halon1202_in_air", - "mole_concentration_of_halon1211_in_air", - "mole_concentration_of_halon1301_in_air", - "mole_concentration_of_halon2402_in_air", - "mole_concentration_of_hcc140a_in_air", - "mole_concentration_of_hcfc141b_in_air", - "mole_concentration_of_hcfc142b_in_air", - "mole_concentration_of_hcfc22_in_air", - "mole_concentration_of_hexachlorobiphenyl_in_air", - "mole_concentration_of_hox_expressed_as_hydrogen_in_air", - "mole_concentration_of_hydrogen_bromide_in_air", - "mole_concentration_of_hydrogen_chloride_in_air", - "mole_concentration_of_hydrogen_cyanide_in_air", - "mole_concentration_of_hydrogen_peroxide_in_air", "mole_concentration_of_hydrogen_sulfide_in_sea_water", - "mole_concentration_of_hydroperoxyl_radical_in_air", - "mole_concentration_of_hydroxyl_radical_in_air", - "mole_concentration_of_hypobromous_acid_in_air", - "mole_concentration_of_hypochlorous_acid_in_air", - "mole_concentration_of_inorganic_bromine_in_air", - "mole_concentration_of_inorganic_chlorine_in_air", - "mole_concentration_of_isoprene_in_air", - "mole_concentration_of_limonene_in_air", "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_mesozooplankton_expressed_as_nitrogen_in_sea_water", - "mole_concentration_of_methane_in_air", - "mole_concentration_of_methanol_in_air", - "mole_concentration_of_methyl_bromide_in_air", - "mole_concentration_of_methyl_chloride_in_air", - "mole_concentration_of_methyl_hydroperoxide_in_air", - "mole_concentration_of_methyl_peroxy_radical_in_air", "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_microzooplankton_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", - "mole_concentration_of_molecular_hydrogen_in_air", "mole_concentration_of_nitrate_and_nitrite_in_sea_water", "mole_concentration_of_nitrate_in_sea_water", "mole_concentration_of_nitrate_radical_in_air", - "mole_concentration_of_nitric_acid_in_air", "mole_concentration_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", "mole_concentration_of_nitrite_in_sea_water", - "mole_concentration_of_nitrogen_dioxide_in_air", - "mole_concentration_of_nitrogen_monoxide_in_air", - "mole_concentration_of_nitrous_acid_in_air", - "mole_concentration_of_nitrous_oxide_in_air", - "mole_concentration_of_nmvoc_expressed_as_carbon_in_air", - "mole_concentration_of_nox_expressed_as_nitrogen_in_air", - "mole_concentration_of_noy_expressed_as_nitrogen_in_air", "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_nitrogen_in_sea_water", "mole_concentration_of_organic_detritus_expressed_as_silicon_in_sea_water", - "mole_concentration_of_ozone_in_air", "mole_concentration_of_particulate_matter_expressed_as_carbon_in_sea_water", "mole_concentration_of_particulate_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water", @@ -16083,7 +15267,6 @@ "mole_concentration_of_particulate_organic_matter_expressed_as_silicon_in_sea_water", "mole_concentration_of_particulate_organic_nitrogen_in_sea_water", "mole_concentration_of_peroxyacetyl_nitrate_in_air", - "mole_concentration_of_peroxynitric_acid_in_air", "mole_concentration_of_phosphate_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water", @@ -16091,147 +15274,24 @@ "mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water", "mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water", "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", - "mole_concentration_of_propane_in_air", - "mole_concentration_of_propene_in_air", - "mole_concentration_of_radon_in_air", "mole_concentration_of_silicate_in_sea_water", - "mole_concentration_of_sulfur_dioxide_in_air", "mole_concentration_of_sulfur_hexafluoride_in_sea_water", - "mole_concentration_of_toluene_in_air", "mole_concentration_of_water_vapor_in_air", - "mole_concentration_of_xylene_in_air", "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", "mole_concentration_of_zooplankton_expressed_as_nitrogen_in_sea_water", "mole_content_of_carbon_monoxide_in_atmosphere_layer", "mole_content_of_methane_in_atmosphere_layer", "mole_content_of_nitrogen_dioxide_in_atmosphere_layer", "mole_content_of_ozone_in_atmosphere_layer", - "mole_fraction_of_acetaldehyde_in_air", - "mole_fraction_of_acetic_acid_in_air", - "mole_fraction_of_acetone_in_air", - "mole_fraction_of_aceto_nitrile_in_air", - "mole_fraction_of_aldehydes_in_air", - "mole_fraction_of_alkanes_in_air", - "mole_fraction_of_alkenes_in_air", - "mole_fraction_of_alpha_hexachlorocyclohexane_in_air", - "mole_fraction_of_alpha_pinene_in_air", - "mole_fraction_of_ammonia_in_air", - "mole_fraction_of_anthropogenic_nmvoc_expressed_as_carbon_in_air", - "mole_fraction_of_artificial_tracer_with_fixed_lifetime_in_air", - "mole_fraction_of_atomic_bromine_in_air", - "mole_fraction_of_atomic_chlorine_in_air", - "mole_fraction_of_atomic_nitrogen_in_air", - "mole_fraction_of_benzene_in_air", - "mole_fraction_of_beta_pinene_in_air", - "mole_fraction_of_biogenic_nmvoc_expressed_as_carbon_in_air", - "mole_fraction_of_bromine_chloride_in_air", - "mole_fraction_of_bromine_monoxide_in_air", "mole_fraction_of_bromine_nitrate_in_air", - "mole_fraction_of_brox_expressed_as_bromine_in_air", - "mole_fraction_of_butane_in_air", - "mole_fraction_of_carbon_dioxide_in_air", - "mole_fraction_of_carbon_monoxide_in_air", "mole_fraction_of_carbon_tetrachloride_in_air", "mole_fraction_of_carbon_tetrafluoride_in_air", - "mole_fraction_of_carbonyl_fluoride_in_air", - "mole_fraction_of_carbonyl_sulfide_in_air", - "mole_fraction_of_cfc113a_in_air", - "mole_fraction_of_cfc113_in_air", - "mole_fraction_of_cfc114_in_air", - "mole_fraction_of_cfc115_in_air", - "mole_fraction_of_cfc11_in_air", - "mole_fraction_of_cfc12_in_air", - "mole_fraction_of_chlorine_dioxide_in_air", - "mole_fraction_of_chlorine_monoxide_in_air", "mole_fraction_of_chlorine_nitrate_in_air", - "mole_fraction_of_chloroform_in_air", - "mole_fraction_of_clox_expressed_as_chlorine_in_air", - "mole_fraction_of_dichlorine_in_air", - "mole_fraction_of_dichlorine_peroxide_in_air", - "mole_fraction_of_dichloromethane_in_air", - "mole_fraction_of_dimethyl_sulfide_in_air", - "mole_fraction_of_dinitrogen_pentoxide_in_air", - "mole_fraction_of_ethane_in_air", - "mole_fraction_of_ethanol_in_air", - "mole_fraction_of_ethene_in_air", - "mole_fraction_of_ethyne_in_air", - "mole_fraction_of_formaldehyde_in_air", - "mole_fraction_of_formic_acid_in_air", - "mole_fraction_of_gaseous_divalent_mercury_in_air", - "mole_fraction_of_gaseous_elemental_mercury_in_air", - "mole_fraction_of_glyoxal_in_air", - "mole_fraction_of_halon1202_in_air", - "mole_fraction_of_halon1211_in_air", - "mole_fraction_of_halon1301_in_air", - "mole_fraction_of_halon2402_in_air", - "mole_fraction_of_hcc140a_in_air", - "mole_fraction_of_hcfc124_in_air", - "mole_fraction_of_hcfc141b_in_air", - "mole_fraction_of_hcfc142b_in_air", - "mole_fraction_of_hcfc22_in_air", - "mole_fraction_of_hexachlorobiphenyl_in_air", - "mole_fraction_of_hfc125_in_air", - "mole_fraction_of_hfc134a_in_air", - "mole_fraction_of_hfc143a_in_air", - "mole_fraction_of_hfc152a_in_air", - "mole_fraction_of_hfc227ea_in_air", - "mole_fraction_of_hfc236fa_in_air", - "mole_fraction_of_hfc23_in_air", - "mole_fraction_of_hfc245fa_in_air", - "mole_fraction_of_hfc32_in_air", - "mole_fraction_of_hfc365mfc_in_air", - "mole_fraction_of_hfc4310mee_in_air", - "mole_fraction_of_hox_expressed_as_hydrogen_in_air", - "mole_fraction_of_hydrogen_bromide_in_air", - "mole_fraction_of_hydrogen_chloride_in_air", - "mole_fraction_of_hydrogen_cyanide_in_air", - "mole_fraction_of_hydrogen_peroxide_in_air", - "mole_fraction_of_hydrogen_sulfide_in_air", - "mole_fraction_of_hydroperoxyl_radical_in_air", - "mole_fraction_of_hydroxyl_radical_in_air", - "mole_fraction_of_hypobromous_acid_in_air", - "mole_fraction_of_hypochlorous_acid_in_air", - "mole_fraction_of_inorganic_bromine_in_air", - "mole_fraction_of_inorganic_chlorine_in_air", - "mole_fraction_of_isoprene_in_air", - "mole_fraction_of_limonene_in_air", - "mole_fraction_of_methane_in_air", - "mole_fraction_of_methanol_in_air", - "mole_fraction_of_methyl_bromide_in_air", - "mole_fraction_of_methyl_chloride_in_air", - "mole_fraction_of_methylglyoxal_in_air", - "mole_fraction_of_methyl_hydroperoxide_in_air", - "mole_fraction_of_methyl_peroxy_radical_in_air", - "mole_fraction_of_molecular_hydrogen_in_air", "mole_fraction_of_nitrate_radical_in_air", - "mole_fraction_of_nitric_acid_in_air", "mole_fraction_of_nitric_acid_trihydrate_ambient_aerosol_particles_in_air", - "mole_fraction_of_nitrogen_dioxide_in_air", - "mole_fraction_of_nitrogen_monoxide_in_air", - "mole_fraction_of_nitrogen_trifluoride_in_air", - "mole_fraction_of_nitrous_acid_in_air", - "mole_fraction_of_nitrous_oxide_in_air", - "mole_fraction_of_nmvoc_expressed_as_carbon_in_air", - "mole_fraction_of_nox_expressed_as_nitrogen_in_air", - "mole_fraction_of_noy_expressed_as_nitrogen_in_air", "mole_fraction_of_organic_nitrates_in_air", - "mole_fraction_of_ox_in_air", - "mole_fraction_of_ozone_in_air", - "mole_fraction_of_perchloroethene_in_air", "mole_fraction_of_peroxyacetyl_nitrate_in_air", - "mole_fraction_of_peroxynitric_acid_in_air", - "mole_fraction_of_pfc116_in_air", - "mole_fraction_of_pfc218_in_air", - "mole_fraction_of_pfc318_in_air", - "mole_fraction_of_propane_in_air", - "mole_fraction_of_propene_in_air", - "mole_fraction_of_radon_in_air", - "mole_fraction_of_sulfur_dioxide_in_air", - "mole_fraction_of_sulfur_hexafluoride_in_air", - "mole_fraction_of_sulfuryl_fluoride_in_air", - "mole_fraction_of_toluene_in_air", "mole_fraction_of_water_vapor_in_air", - "mole_fraction_of_xylene_in_air", "mole_ratio_of_nitrate_to_phosphate_in_sea_water", "moles_of_cfc11_per_unit_mass_in_sea_water", "moles_of_dissolved_inorganic_carbon_per_unit_mass_in_sea_water", @@ -16243,21 +15303,9 @@ "moles_of_silicate_per_unit_mass_in_sea_water", "multi_variate_test_quality_flag", "neighbor_test_quality_flag", - "net_downward_longwave_flux_in_air", - "net_downward_longwave_flux_in_air_assuming_clear_sky", - "net_downward_radiative_flux_at_top_of_atmosphere_model", "net_downward_shortwave_flux_at_sea_water_surface", - "net_downward_shortwave_flux_in_air", - "net_downward_shortwave_flux_in_air_assuming_clear_sky", - "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_calcareous_phytoplankton", - "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diatoms", - "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diazotrophic_phytoplankton", - "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_miscellaneous_phytoplankton", - "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_phytoplankton", - "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_picophytoplankton", "net_primary_mole_productivity_of_biomass_expressed_as_carbon_due_to_nitrate_utilization", "net_primary_production_of_biomass_expressed_as_carbon_per_unit_volume_in_sea_water", - "net_primary_productivity_of_biomass_expressed_as_carbon", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_leaves", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_miscellaneous_living_matter", "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_roots", @@ -16266,769 +15314,162 @@ "net_rate_of_absorption_of_longwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_atmosphere_layer", "net_rate_of_absorption_of_shortwave_energy_in_ocean_layer", - "net_upward_longwave_flux_in_air", - "net_upward_longwave_flux_in_air_assuming_clear_sky", - "net_upward_shortwave_flux_in_air", - "net_upward_shortwave_flux_in_air_assuming_clear_sky", - "nitrogen_growth_limitation_of_calcareous_phytoplankton", - "nitrogen_growth_limitation_of_diatoms", - "nitrogen_growth_limitation_of_diazotrophic_phytoplankton", - "nitrogen_growth_limitation_of_miscellaneous_phytoplankton", - "nitrogen_growth_limitation_of_picophytoplankton", "nitrogen_mass_content_of_forestry_and_agricultural_products", - "nitrogen_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", "nitrogen_mass_flux_into_litter_from_vegetation", "nitrogen_mass_flux_into_soil_from_litter", "nitrogen_mass_flux_into_soil_from_vegetation_excluding_litter", - "non_tidal_elevation_of_sea_surface_height", - "normalized_difference_vegetation_index", "northward_air_velocity_relative_to_sea_water", - "northward_atmosphere_dry_static_energy_transport_across_unit_distance", - "northward_atmosphere_heat_transport", "northward_atmosphere_water_transport_across_unit_distance", "northward_atmosphere_water_vapor_transport_across_unit_distance", - "northward_derivative_of_eastward_sea_ice_velocity", - "northward_derivative_of_eastward_wind", - "northward_derivative_of_northward_wind", - "northward_derivative_of_wind_from_direction", - "northward_eliassen_palm_flux_in_air", "northward_flood_water_velocity", - "northward_friction_velocity_in_air", - "northward_heat_flux_in_air_due_to_eddy_advection", - "northward_land_ice_velocity", - "northward_mass_flux_of_air", - "northward_momentum_flux_correction", "northward_northward_derivative_of_geopotential", "northward_ocean_freshwater_transport", "northward_ocean_freshwater_transport_due_to_diffusion", "northward_ocean_freshwater_transport_due_to_gyre", "northward_ocean_freshwater_transport_due_to_overturning", "northward_ocean_freshwater_transport_due_to_parameterized_eddy_advection", - "northward_ocean_heat_transport", - "northward_ocean_heat_transport_due_to_diffusion", - "northward_ocean_heat_transport_due_to_gyre", - "northward_ocean_heat_transport_due_to_overturning", "northward_ocean_heat_transport_due_to_parameterized_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_advection", "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_diffusion", "northward_ocean_heat_transport_due_to_parameterized_submesoscale_eddy_advection", - "northward_ocean_salt_transport", - "northward_ocean_salt_transport_due_to_diffusion", - "northward_ocean_salt_transport_due_to_gyre", - "northward_ocean_salt_transport_due_to_overturning", "northward_ocean_salt_transport_due_to_parameterized_eddy_advection", - "northward_sea_ice_displacement", - "northward_sea_ice_velocity", "northward_sea_water_velocity", "northward_sea_water_velocity_assuming_no_tide", "northward_sea_water_velocity_at_sea_floor", "northward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", "northward_sea_water_velocity_due_to_tides", - "northward_transformed_eulerian_mean_air_velocity", "northward_upward_derivative_of_geopotential", "northward_water_vapor_flux_in_air", "northward_water_vapor_transport_across_unit_distance_in_atmosphere_layer", "northward_westward_derivative_of_geopotential", - "northward_wind", - "northward_wind_shear", "nudging_increment_in_mass_content_of_water_in_soil", - "nudging_increment_in_snow_and_ice_amount_on_land", - "number_concentration_of_aerosol_particles_at_stp_in_air", - "number_concentration_of_ambient_aerosol_particles_in_air", "number_concentration_of_biological_taxon_in_sea_water", - "number_concentration_of_cloud_condensation_nuclei_at_stp_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air", "number_concentration_of_cloud_liquid_water_particles_in_air_at_liquid_water_cloud_top", - "number_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", "number_concentration_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", - "number_concentration_of_ice_crystals_in_air", - "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top", - "number_concentration_of_nucleation_mode_ambient_aerosol_particles_in_air", - "number_concentration_of_ozone_molecules_in_air", - "number_concentration_of_pm10_aerosol_particles_in_air", - "number_concentration_of_pm2p5_aerosol_particles_in_air", "number_concentration_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", "number_of_days_with_air_temperature_above_threshold", "number_of_days_with_air_temperature_below_threshold", - "number_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", "number_of_days_with_surface_temperature_below_threshold", - "number_of_days_with_wind_speed_above_threshold", - "number_of_icebergs_per_unit_area", - "number_of_missing_observations", - "number_of_observations", - "ocean_barotropic_mass_streamfunction", - "ocean_barotropic_streamfunction", "ocean_double_sigma_coordinate", - "ocean_heat_x_transport", - "ocean_heat_x_transport_due_to_diffusion", "ocean_heat_x_transport_due_to_parameterized_eddy_advection", - "ocean_heat_y_transport", - "ocean_heat_y_transport_due_to_diffusion", "ocean_heat_y_transport_due_to_parameterized_eddy_advection", - "ocean_isopycnal_layer_thickness_diffusivity", - "ocean_kinetic_energy_dissipation_per_unit_area_due_to_vertical_friction", - "ocean_kinetic_energy_dissipation_per_unit_area_due_to_xy_friction", "ocean_mass_content_of_dissolved_inorganic_carbon", "ocean_mass_content_of_dissolved_organic_carbon", "ocean_mass_content_of_particulate_organic_matter_expressed_as_carbon", - "ocean_mass_x_transport", - "ocean_mass_x_transport_due_to_advection", "ocean_mass_x_transport_due_to_advection_and_parameterized_eddy_advection", - "ocean_mass_y_transport", - "ocean_mass_y_transport_due_to_advection", "ocean_mass_y_transport_due_to_advection_and_parameterized_eddy_advection", - "ocean_meridional_overturning_mass_streamfunction", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", - "ocean_meridional_overturning_streamfunction", - "ocean_mixed_layer_thickness", - "ocean_mixed_layer_thickness_defined_by_mixing_scheme", - "ocean_mixed_layer_thickness_defined_by_sigma_t", - "ocean_mixed_layer_thickness_defined_by_sigma_theta", "ocean_mixed_layer_thickness_defined_by_temperature", - "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_deficit", - "ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity_threshold", - "ocean_momentum_xy_biharmonic_diffusivity", - "ocean_momentum_xy_laplacian_diffusivity", "ocean_montgomery_potential", - "ocean_relative_vorticity", - "ocean_rigid_lid_pressure", - "ocean_rigid_lid_pressure_expressed_as_sea_surface_height_above_geoid", - "ocean_salt_x_transport", - "ocean_salt_y_transport", - "ocean_s_coordinate", - "ocean_s_coordinate_g1", - "ocean_s_coordinate_g2", - "ocean_sigma_coordinate", - "ocean_sigma_z_coordinate", - "ocean_tracer_biharmonic_diffusivity_due_to_parameterized_mesoscale_eddy_advection", - "ocean_tracer_diffusivity_due_to_parameterized_mesoscale_eddy_advection", - "ocean_tracer_epineutral_biharmonic_diffusivity", - "ocean_tracer_epineutral_laplacian_diffusivity", - "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", - "ocean_tracer_xy_biharmonic_diffusivity", - "ocean_tracer_xy_laplacian_diffusivity", - "ocean_vertical_diffusivity", - "ocean_vertical_heat_diffusivity", - "ocean_vertical_momentum_diffusivity", - "ocean_vertical_momentum_diffusivity_due_to_background", - "ocean_vertical_momentum_diffusivity_due_to_convection", - "ocean_vertical_momentum_diffusivity_due_to_form_drag", - "ocean_vertical_momentum_diffusivity_due_to_tides", - "ocean_vertical_salt_diffusivity", - "ocean_vertical_tracer_diffusivity", - "ocean_vertical_tracer_diffusivity_due_to_background", - "ocean_vertical_tracer_diffusivity_due_to_convection", - "ocean_vertical_tracer_diffusivity_due_to_tides", - "ocean_vertical_tracer_diffusivity_due_to_wind_mixing", - "ocean_volume", - "ocean_volume_fraction", - "ocean_volume_transport_across_line", - "ocean_volume_x_transport", - "ocean_volume_y_transport", - "ocean_y_overturning_mass_streamfunction", - "ocean_y_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", - "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", - "ocean_y_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", - "omnidirectional_photosynthetic_spherical_irradiance_in_sea_water", - "omnidirectional_spherical_irradiance_per_unit_wavelength_in_sea_water", - "optical_thickness_of_atmosphere_layer_due_to_ambient_aerosol_particles", - "original_air_pressure_of_lifted_parcel", - "outgoing_water_volume_transport_along_river_channel", - "partial_pressure_of_carbon_dioxide_in_sea_water", - "partial_pressure_of_methane_in_sea_water", - "permafrost_active_layer_thickness", - "permafrost_area_fraction", - "permafrost_layer_thickness", - "phase_of_global_average_sea_level_change", - "photolysis_rate_of_molecular_oxygen", - "photolysis_rate_of_nitrogen_dioxide", - "photolysis_rate_of_ozone", - "photolysis_rate_of_ozone_to_1D_oxygen_atom", - "planetary_albedo", - "platform_azimuth_angle", - "platform_course", - "platform_heave", - "platform_heave_down", - "platform_heave_rate", - "platform_heave_rate_down", - "platform_heave_rate_up", - "platform_heave_up", - "platform_id", - "platform_name", - "platform_orientation", - "platform_pitch", - "platform_pitch_fore_down", - "platform_pitch_fore_up", - "platform_pitch_rate", - "platform_pitch_rate_fore_down", - "platform_pitch_rate_fore_up", - "platform_roll", - "platform_roll_rate", - "platform_roll_rate_starboard_down", - "platform_roll_rate_starboard_up", - "platform_roll_starboard_down", - "platform_roll_starboard_up", - "platform_speed_wrt_air", - "platform_speed_wrt_ground", - "platform_speed_wrt_sea_water", - "platform_surge", - "platform_surge_aft", - "platform_surge_fore", - "platform_surge_rate", - "platform_surge_rate_aft", - "platform_surge_rate_fore", - "platform_sway", - "platform_sway_port", - "platform_sway_rate", - "platform_sway_rate_port", - "platform_sway_rate_starboard", - "platform_sway_starboard", - "platform_view_angle", - "platform_yaw", - "platform_yaw_fore_port", - "platform_yaw_fore_starboard", - "platform_yaw_rate", - "platform_yaw_rate_fore_port", - "platform_yaw_rate_fore_starboard", - "platform_zenith_angle", - "potential_energy_content_of_atmosphere_layer", - "potential_vorticity_of_atmosphere_layer", - "potential_vorticity_of_ocean_layer", - "precipitation_amount", - "precipitation_flux", - "precipitation_flux_containing_17O", - "precipitation_flux_containing_18O", - "precipitation_flux_containing_single_2H", - "precipitation_flux_onto_canopy", - "predominant_precipitation_type_at_surface", - "pressure_at_effective_cloud_top_defined_by_infrared_radiation", - "probability_distribution_of_wind_from_direction_over_time", - "product_of_air_temperature_and_specific_humidity", - "product_of_eastward_sea_water_velocity_and_salinity", - "product_of_eastward_sea_water_velocity_and_temperature", - "product_of_eastward_wind_and_air_temperature", - "product_of_eastward_wind_and_geopotential_height", - "product_of_eastward_wind_and_lagrangian_tendency_of_air_pressure", - "product_of_eastward_wind_and_northward_wind", - "product_of_eastward_wind_and_specific_humidity", - "product_of_eastward_wind_and_upward_air_velocity", - "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", - "product_of_lagrangian_tendency_of_air_pressure_and_geopotential_height", - "product_of_lagrangian_tendency_of_air_pressure_and_specific_humidity", - "product_of_northward_sea_water_velocity_and_salinity", - "product_of_northward_sea_water_velocity_and_temperature", - "product_of_northward_wind_and_air_temperature", - "product_of_northward_wind_and_geopotential_height", - "product_of_northward_wind_and_lagrangian_tendency_of_air_pressure", - "product_of_northward_wind_and_specific_humidity", - "product_of_northward_wind_and_upward_air_velocity", - "product_of_upward_air_velocity_and_air_temperature", - "product_of_upward_air_velocity_and_specific_humidity", - "projection_x_angular_coordinate", - "projection_x_coordinate", - "projection_y_angular_coordinate", - "projection_y_coordinate", - "proportion_of_acceptable_signal_returns_from_acoustic_instrument_in_sea_water", - "quality_flag", - "radial_sea_water_velocity_away_from_instrument", - "radial_sea_water_velocity_toward_instrument", - "radial_velocity_of_scatterers_away_from_instrument", - "radial_velocity_of_scatterers_toward_instrument", - "radiation_frequency", - "radiation_wavelength", - "radioactivity_concentration_in_air", - "radioactivity_concentration_of_101Mo_in_air", - "radioactivity_concentration_of_101Tc_in_air", - "radioactivity_concentration_of_102Mo_in_air", - "radioactivity_concentration_of_102mTc_in_air", - "radioactivity_concentration_of_102Tc_in_air", - "radioactivity_concentration_of_103mRh_in_air", - "radioactivity_concentration_of_103Ru_in_air", - "radioactivity_concentration_of_104Tc_in_air", - "radioactivity_concentration_of_105mRh_in_air", - "radioactivity_concentration_of_105Rh_in_air", - "radioactivity_concentration_of_105Ru_in_air", - "radioactivity_concentration_of_106mRh_in_air", - "radioactivity_concentration_of_106Rh_in_air", - "radioactivity_concentration_of_106Ru_in_air", - "radioactivity_concentration_of_107mPd_in_air", - "radioactivity_concentration_of_107Pd_in_air", - "radioactivity_concentration_of_107Rh_in_air", - "radioactivity_concentration_of_109mAg_in_air", - "radioactivity_concentration_of_109Pd_in_air", - "radioactivity_concentration_of_110mAg_in_air", - "radioactivity_concentration_of_111Ag_in_air", - "radioactivity_concentration_of_111mAg_in_air", - "radioactivity_concentration_of_111mCd_in_air", - "radioactivity_concentration_of_111mPd_in_air", - "radioactivity_concentration_of_111Pd_in_air", - "radioactivity_concentration_of_112Ag_in_air", - "radioactivity_concentration_of_112Pd_in_air", - "radioactivity_concentration_of_113Ag_in_air", - "radioactivity_concentration_of_113Cd_in_air", - "radioactivity_concentration_of_113mAg_in_air", - "radioactivity_concentration_of_113mCd_in_air", - "radioactivity_concentration_of_113mIn_in_air", - "radioactivity_concentration_of_115Ag_in_air", - "radioactivity_concentration_of_115Cd_in_air", - "radioactivity_concentration_of_115In_in_air", - "radioactivity_concentration_of_115mAg_in_air", - "radioactivity_concentration_of_115mCd_in_air", - "radioactivity_concentration_of_115mIn_in_air", - "radioactivity_concentration_of_116In_in_air", - "radioactivity_concentration_of_116mIn_in_air", - "radioactivity_concentration_of_117Cd_in_air", - "radioactivity_concentration_of_117In_in_air", - "radioactivity_concentration_of_117mCd_in_air", - "radioactivity_concentration_of_117mIn_in_air", - "radioactivity_concentration_of_117mSn_in_air", - "radioactivity_concentration_of_118Cd_in_air", - "radioactivity_concentration_of_118In_in_air", - "radioactivity_concentration_of_118mIn_in_air", - "radioactivity_concentration_of_119In_in_air", - "radioactivity_concentration_of_119mIn_in_air", - "radioactivity_concentration_of_119mSn_in_air", - "radioactivity_concentration_of_11C_in_air", - "radioactivity_concentration_of_121mSn_in_air", - "radioactivity_concentration_of_121Sn_in_air", - "radioactivity_concentration_of_123mSn_in_air", - "radioactivity_concentration_of_123Sn_in_air", - "radioactivity_concentration_of_124mSb_in_air", - "radioactivity_concentration_of_124Sb_in_air", - "radioactivity_concentration_of_125mTe_in_air", - "radioactivity_concentration_of_125Sb_in_air", - "radioactivity_concentration_of_125Sn_in_air", - "radioactivity_concentration_of_126mSb_in_air", - "radioactivity_concentration_of_126Sb_in_air", - "radioactivity_concentration_of_126Sn_in_air", - "radioactivity_concentration_of_127mTe_in_air", - "radioactivity_concentration_of_127Sb_in_air", - "radioactivity_concentration_of_127Sn_in_air", - "radioactivity_concentration_of_127Te_in_air", - "radioactivity_concentration_of_128mSb_in_air", - "radioactivity_concentration_of_128Sb_in_air", - "radioactivity_concentration_of_128Sn_in_air", - "radioactivity_concentration_of_129I_in_air", - "radioactivity_concentration_of_129mTe_in_air", - "radioactivity_concentration_of_129mXe_in_air", - "radioactivity_concentration_of_129Sb_in_air", - "radioactivity_concentration_of_129Te_in_air", - "radioactivity_concentration_of_130I_in_air", - "radioactivity_concentration_of_130mI_in_air", - "radioactivity_concentration_of_130mSb_in_air", - "radioactivity_concentration_of_130Sb_in_air", - "radioactivity_concentration_of_130Sn_in_air", - "radioactivity_concentration_of_131I_in_air", - "radioactivity_concentration_of_131mTe_in_air", - "radioactivity_concentration_of_131mXe_in_air", - "radioactivity_concentration_of_131Sb_in_air", - "radioactivity_concentration_of_131Te_in_air", - "radioactivity_concentration_of_132I_in_air", - "radioactivity_concentration_of_132Te_in_air", - "radioactivity_concentration_of_133I_in_air", - "radioactivity_concentration_of_133mI_in_air", - "radioactivity_concentration_of_133mTe_in_air", - "radioactivity_concentration_of_133mXe_in_air", - "radioactivity_concentration_of_133Te_in_air", - "radioactivity_concentration_of_133Xe_in_air", - "radioactivity_concentration_of_134Cs_in_air", - "radioactivity_concentration_of_134I_in_air", - "radioactivity_concentration_of_134mCs_in_air", - "radioactivity_concentration_of_134mI_in_air", - "radioactivity_concentration_of_134mXe_in_air", - "radioactivity_concentration_of_134Te_in_air", - "radioactivity_concentration_of_135Cs_in_air", - "radioactivity_concentration_of_135I_in_air", - "radioactivity_concentration_of_135mBa_in_air", - "radioactivity_concentration_of_135mCs_in_air", - "radioactivity_concentration_of_135mXe_in_air", - "radioactivity_concentration_of_135Xe_in_air", - "radioactivity_concentration_of_136Cs_in_air", - "radioactivity_concentration_of_137Cs_in_air", - "radioactivity_concentration_of_137mBa_in_air", - "radioactivity_concentration_of_137Xe_in_air", - "radioactivity_concentration_of_138Cs_in_air", - "radioactivity_concentration_of_138Xe_in_air", - "radioactivity_concentration_of_139Ba_in_air", - "radioactivity_concentration_of_13N_in_air", - "radioactivity_concentration_of_140Ba_in_air", - "radioactivity_concentration_of_140La_in_air", - "radioactivity_concentration_of_141Ce_in_air", - "radioactivity_concentration_of_141La_in_air", - "radioactivity_concentration_of_142Ce_in_air", - "radioactivity_concentration_of_142La_in_air", - "radioactivity_concentration_of_142mPr_in_air", - "radioactivity_concentration_of_142Pr_in_air", - "radioactivity_concentration_of_143Ce_in_air", - "radioactivity_concentration_of_143La_in_air", - "radioactivity_concentration_of_143Pr_in_air", - "radioactivity_concentration_of_144Ce_in_air", - "radioactivity_concentration_of_144mPr_in_air", - "radioactivity_concentration_of_144Nd_in_air", - "radioactivity_concentration_of_144Pr_in_air", - "radioactivity_concentration_of_145Pr_in_air", - "radioactivity_concentration_of_146Ce_in_air", - "radioactivity_concentration_of_146Pr_in_air", - "radioactivity_concentration_of_147Nd_in_air", - "radioactivity_concentration_of_147Pm_in_air", - "radioactivity_concentration_of_147Pr_in_air", - "radioactivity_concentration_of_147Sm_in_air", - "radioactivity_concentration_of_148mPm_in_air", - "radioactivity_concentration_of_148Pm_in_air", - "radioactivity_concentration_of_148Sm_in_air", - "radioactivity_concentration_of_149Nd_in_air", - "radioactivity_concentration_of_149Pm_in_air", - "radioactivity_concentration_of_149Sm_in_air", - "radioactivity_concentration_of_150Pm_in_air", - "radioactivity_concentration_of_151Nd_in_air", - "radioactivity_concentration_of_151Pm_in_air", - "radioactivity_concentration_of_151Sm_in_air", - "radioactivity_concentration_of_152mPm_in_air", - "radioactivity_concentration_of_152Nd_in_air", - "radioactivity_concentration_of_152Pm_in_air", - "radioactivity_concentration_of_153Sm_in_air", - "radioactivity_concentration_of_154Eu_in_air", - "radioactivity_concentration_of_155Eu_in_air", - "radioactivity_concentration_of_155Sm_in_air", - "radioactivity_concentration_of_156Eu_in_air", - "radioactivity_concentration_of_156Sm_in_air", - "radioactivity_concentration_of_157Eu_in_air", - "radioactivity_concentration_of_158Eu_in_air", - "radioactivity_concentration_of_159Eu_in_air", - "radioactivity_concentration_of_159Gd_in_air", - "radioactivity_concentration_of_15O_in_air", - "radioactivity_concentration_of_160Tb_in_air", - "radioactivity_concentration_of_161Tb_in_air", - "radioactivity_concentration_of_162Gd_in_air", - "radioactivity_concentration_of_162mTb_in_air", - "radioactivity_concentration_of_162Tb_in_air", - "radioactivity_concentration_of_163Tb_in_air", - "radioactivity_concentration_of_165Dy_in_air", - "radioactivity_concentration_of_18F_in_air", - "radioactivity_concentration_of_206Hg_in_air", - "radioactivity_concentration_of_206Tl_in_air", - "radioactivity_concentration_of_207mPb_in_air", - "radioactivity_concentration_of_207Tl_in_air", - "radioactivity_concentration_of_208Tl_in_air", - "radioactivity_concentration_of_209Bi_in_air", - "radioactivity_concentration_of_209Pb_in_air", - "radioactivity_concentration_of_209Tl_in_air", - "radioactivity_concentration_of_210Bi_in_air", - "radioactivity_concentration_of_210Pb_in_air", - "radioactivity_concentration_of_210Po_in_air", - "radioactivity_concentration_of_210Tl_in_air", - "radioactivity_concentration_of_211Bi_in_air", - "radioactivity_concentration_of_211Pb_in_air", - "radioactivity_concentration_of_211Po_in_air", - "radioactivity_concentration_of_212Bi_in_air", - "radioactivity_concentration_of_212Pb_in_air", - "radioactivity_concentration_of_212Po_in_air", - "radioactivity_concentration_of_213Bi_in_air", - "radioactivity_concentration_of_213Pb_in_air", - "radioactivity_concentration_of_213Po_in_air", - "radioactivity_concentration_of_214Bi_in_air", - "radioactivity_concentration_of_214Pb_in_air", - "radioactivity_concentration_of_214Po_in_air", - "radioactivity_concentration_of_215At_in_air", - "radioactivity_concentration_of_215Bi_in_air", - "radioactivity_concentration_of_215Po_in_air", - "radioactivity_concentration_of_216At_in_air", - "radioactivity_concentration_of_216Po_in_air", - "radioactivity_concentration_of_217At_in_air", - "radioactivity_concentration_of_217Po_in_air", - "radioactivity_concentration_of_218At_in_air", - "radioactivity_concentration_of_218Po_in_air", - "radioactivity_concentration_of_218Rn_in_air", - "radioactivity_concentration_of_219At_in_air", - "radioactivity_concentration_of_219Rn_in_air", - "radioactivity_concentration_of_220Rn_in_air", - "radioactivity_concentration_of_221Fr_in_air", - "radioactivity_concentration_of_221Rn_in_air", - "radioactivity_concentration_of_222Fr_in_air", - "radioactivity_concentration_of_222Ra_in_air", - "radioactivity_concentration_of_222Rn_in_air", - "radioactivity_concentration_of_223Fr_in_air", - "radioactivity_concentration_of_223Ra_in_air", - "radioactivity_concentration_of_223Rn_in_air", - "radioactivity_concentration_of_224Ra_in_air", - "radioactivity_concentration_of_225Ac_in_air", - "radioactivity_concentration_of_225Ra_in_air", - "radioactivity_concentration_of_226Ac_in_air", - "radioactivity_concentration_of_226Ra_in_air", - "radioactivity_concentration_of_226Th_in_air", - "radioactivity_concentration_of_227Ac_in_air", - "radioactivity_concentration_of_227Ra_in_air", - "radioactivity_concentration_of_227Th_in_air", - "radioactivity_concentration_of_228Ac_in_air", - "radioactivity_concentration_of_228Ra_in_air", - "radioactivity_concentration_of_228Th_in_air", - "radioactivity_concentration_of_229Ac_in_air", - "radioactivity_concentration_of_229Ra_in_air", - "radioactivity_concentration_of_229Th_in_air", - "radioactivity_concentration_of_230Pa_in_air", - "radioactivity_concentration_of_230Th_in_air", - "radioactivity_concentration_of_230U_in_air", - "radioactivity_concentration_of_231Pa_in_air", - "radioactivity_concentration_of_231Th_in_air", - "radioactivity_concentration_of_231U_in_air", - "radioactivity_concentration_of_232Pa_in_air", - "radioactivity_concentration_of_232Th_in_air", - "radioactivity_concentration_of_232U_in_air", - "radioactivity_concentration_of_233Pa_in_air", - "radioactivity_concentration_of_233Th_in_air", - "radioactivity_concentration_of_233U_in_air", - "radioactivity_concentration_of_234mPa_in_air", - "radioactivity_concentration_of_234Pa_in_air", - "radioactivity_concentration_of_234Th_in_air", - "radioactivity_concentration_of_234U_in_air", - "radioactivity_concentration_of_235Np_in_air", - "radioactivity_concentration_of_235Pu_in_air", - "radioactivity_concentration_of_235U_in_air", - "radioactivity_concentration_of_236mNp_in_air", - "radioactivity_concentration_of_236Np_in_air", - "radioactivity_concentration_of_236Pu_in_air", - "radioactivity_concentration_of_236U_in_air", - "radioactivity_concentration_of_237Np_in_air", - "radioactivity_concentration_of_237Pu_in_air", - "radioactivity_concentration_of_237U_in_air", - "radioactivity_concentration_of_238Np_in_air", - "radioactivity_concentration_of_238Pu_in_air", - "radioactivity_concentration_of_238U_in_air", - "radioactivity_concentration_of_239Np_in_air", - "radioactivity_concentration_of_239Pu_in_air", - "radioactivity_concentration_of_239U_in_air", - "radioactivity_concentration_of_240Am_in_air", - "radioactivity_concentration_of_240mNp_in_air", - "radioactivity_concentration_of_240Np_in_air", - "radioactivity_concentration_of_240Pu_in_air", - "radioactivity_concentration_of_240U_in_air", - "radioactivity_concentration_of_241Am_in_air", - "radioactivity_concentration_of_241Cm_in_air", - "radioactivity_concentration_of_241Pu_in_air", - "radioactivity_concentration_of_242Am_in_air", - "radioactivity_concentration_of_242Cm_in_air", - "radioactivity_concentration_of_242m1Am_in_air", - "radioactivity_concentration_of_242m2Am_in_air", - "radioactivity_concentration_of_242Pu_in_air", - "radioactivity_concentration_of_243Am_in_air", - "radioactivity_concentration_of_243Cm_in_air", - "radioactivity_concentration_of_243Pu_in_air", - "radioactivity_concentration_of_244Am_in_air", - "radioactivity_concentration_of_244Cm_in_air", - "radioactivity_concentration_of_244mAm_in_air", - "radioactivity_concentration_of_244Pu_in_air", - "radioactivity_concentration_of_245Am_in_air", - "radioactivity_concentration_of_245Cm_in_air", - "radioactivity_concentration_of_245Pu_in_air", - "radioactivity_concentration_of_246Cm_in_air", - "radioactivity_concentration_of_247Cm_in_air", - "radioactivity_concentration_of_248Cm_in_air", - "radioactivity_concentration_of_249Bk_in_air", - "radioactivity_concentration_of_249Cf_in_air", - "radioactivity_concentration_of_249Cm_in_air", - "radioactivity_concentration_of_24Na_in_air", - "radioactivity_concentration_of_250Bk_in_air", - "radioactivity_concentration_of_250Cf_in_air", - "radioactivity_concentration_of_250Cm_in_air", - "radioactivity_concentration_of_251Cf_in_air", - "radioactivity_concentration_of_252Cf_in_air", - "radioactivity_concentration_of_253Cf_in_air", - "radioactivity_concentration_of_253Es_in_air", - "radioactivity_concentration_of_254Cf_in_air", - "radioactivity_concentration_of_254Es_in_air", - "radioactivity_concentration_of_254mEs_in_air", - "radioactivity_concentration_of_255Es_in_air", - "radioactivity_concentration_of_3H_in_air", - "radioactivity_concentration_of_41Ar_in_air", - "radioactivity_concentration_of_54Mn_in_air", - "radioactivity_concentration_of_58Co_in_air", - "radioactivity_concentration_of_60Co_in_air", - "radioactivity_concentration_of_72Ga_in_air", - "radioactivity_concentration_of_72Zn_in_air", - "radioactivity_concentration_of_73Ga_in_air", - "radioactivity_concentration_of_75Ge_in_air", - "radioactivity_concentration_of_77As_in_air", - "radioactivity_concentration_of_77Ge_in_air", - "radioactivity_concentration_of_77mGe_in_air", - "radioactivity_concentration_of_78As_in_air", - "radioactivity_concentration_of_78Ge_in_air", - "radioactivity_concentration_of_79Se_in_air", - "radioactivity_concentration_of_81mSe_in_air", - "radioactivity_concentration_of_81Se_in_air", - "radioactivity_concentration_of_82Br_in_air", - "radioactivity_concentration_of_82mBr_in_air", - "radioactivity_concentration_of_83Br_in_air", - "radioactivity_concentration_of_83mKr_in_air", - "radioactivity_concentration_of_83mSe_in_air", - "radioactivity_concentration_of_83Se_in_air", - "radioactivity_concentration_of_84Br_in_air", - "radioactivity_concentration_of_84mBr_in_air", - "radioactivity_concentration_of_85Kr_in_air", - "radioactivity_concentration_of_85mKr_in_air", - "radioactivity_concentration_of_86mRb_in_air", - "radioactivity_concentration_of_86Rb_in_air", - "radioactivity_concentration_of_87Kr_in_air", - "radioactivity_concentration_of_87Rb_in_air", - "radioactivity_concentration_of_88Kr_in_air", - "radioactivity_concentration_of_88Rb_in_air", - "radioactivity_concentration_of_89Kr_in_air", - "radioactivity_concentration_of_89Rb_in_air", - "radioactivity_concentration_of_89Sr_in_air", - "radioactivity_concentration_of_90mY_in_air", - "radioactivity_concentration_of_90Sr_in_air", - "radioactivity_concentration_of_90Y_in_air", - "radioactivity_concentration_of_91mY_in_air", - "radioactivity_concentration_of_91Sr_in_air", - "radioactivity_concentration_of_91Y_in_air", - "radioactivity_concentration_of_92Sr_in_air", - "radioactivity_concentration_of_92Y_in_air", - "radioactivity_concentration_of_93Y_in_air", - "radioactivity_concentration_of_93Zr_in_air", - "radioactivity_concentration_of_94mNb_in_air", - "radioactivity_concentration_of_94Nb_in_air", - "radioactivity_concentration_of_94Y_in_air", - "radioactivity_concentration_of_95mNb_in_air", - "radioactivity_concentration_of_95Nb_in_air", - "radioactivity_concentration_of_95Y_in_air", - "radioactivity_concentration_of_95Zr_in_air", - "radioactivity_concentration_of_96Nb_in_air", - "radioactivity_concentration_of_97mNb_in_air", - "radioactivity_concentration_of_97Nb_in_air", - "radioactivity_concentration_of_97Zr_in_air", - "radioactivity_concentration_of_98Nb_in_air", - "radioactivity_concentration_of_99Mo_in_air", - "radioactivity_concentration_of_99mTc_in_air", - "radioactivity_concentration_of_99Tc_in_air", - "radius_of_tropical_cyclone_central_dense_overcast_region", - "radius_of_tropical_cyclone_eye", - "radius_of_tropical_cyclone_maximum_sustained_wind_speed", - "rainfall_amount", - "rainfall_flux", + "ocean_s_coordinate", + "ocean_s_coordinate_g1", + "ocean_s_coordinate_g2", + "ocean_sigma_coordinate", + "ocean_sigma_z_coordinate", + "ocean_tracer_biharmonic_diffusivity_due_to_parameterized_mesoscale_eddy_advection", + "ocean_tracer_diffusivity_due_to_parameterized_mesoscale_eddy_advection", + "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", + "ocean_y_overturning_mass_streamfunction_due_to_parameterized_eddy_advection", + "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", + "ocean_y_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", + "omnidirectional_photosynthetic_spherical_irradiance_in_sea_water", + "omnidirectional_spherical_irradiance_per_unit_wavelength_in_sea_water", + "original_air_pressure_of_lifted_parcel", + "outgoing_water_volume_transport_along_river_channel", + "partial_pressure_of_carbon_dioxide_in_sea_water", + "partial_pressure_of_methane_in_sea_water", + "photolysis_rate_of_molecular_oxygen", + "photolysis_rate_of_nitrogen_dioxide", + "photolysis_rate_of_ozone", + "photolysis_rate_of_ozone_to_1D_oxygen_atom", + "platform_heave_rate", + "platform_heave_rate_down", + "platform_heave_rate_up", + "platform_pitch_rate", + "platform_pitch_rate_fore_down", + "platform_pitch_rate_fore_up", + "platform_roll_rate", + "platform_roll_rate_starboard_down", + "platform_roll_rate_starboard_up", + "platform_speed_wrt_sea_water", + "platform_surge_rate", + "platform_surge_rate_aft", + "platform_surge_rate_fore", + "platform_sway_rate", + "platform_sway_rate_port", + "platform_sway_rate_starboard", + "platform_yaw_rate", + "platform_yaw_rate_fore_port", + "platform_yaw_rate_fore_starboard", + "potential_energy_content_of_atmosphere_layer", + "potential_vorticity_of_atmosphere_layer", + "potential_vorticity_of_ocean_layer", + "product_of_air_temperature_and_specific_humidity", + "product_of_eastward_sea_water_velocity_and_salinity", + "product_of_eastward_sea_water_velocity_and_temperature", + "product_of_eastward_wind_and_air_temperature", + "product_of_eastward_wind_and_geopotential_height", + "product_of_eastward_wind_and_lagrangian_tendency_of_air_pressure", + "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", + "product_of_lagrangian_tendency_of_air_pressure_and_geopotential_height", + "product_of_lagrangian_tendency_of_air_pressure_and_specific_humidity", + "product_of_northward_sea_water_velocity_and_salinity", + "product_of_northward_sea_water_velocity_and_temperature", + "product_of_northward_wind_and_air_temperature", + "product_of_northward_wind_and_geopotential_height", + "product_of_northward_wind_and_lagrangian_tendency_of_air_pressure", + "product_of_upward_air_velocity_and_air_temperature", + "projection_x_angular_coordinate", + "projection_x_coordinate", + "projection_y_angular_coordinate", + "projection_y_coordinate", + "proportion_of_acceptable_signal_returns_from_acoustic_instrument_in_sea_water", + "radial_sea_water_velocity_away_from_instrument", + "radial_sea_water_velocity_toward_instrument", + "radial_velocity_of_scatterers_away_from_instrument", + "radial_velocity_of_scatterers_toward_instrument", + "radioactivity_concentration_of_125mTe_in_air", + "radioactivity_concentration_of_127mTe_in_air", + "radioactivity_concentration_of_127Te_in_air", + "radioactivity_concentration_of_129mTe_in_air", + "radioactivity_concentration_of_129Te_in_air", + "radioactivity_concentration_of_131mTe_in_air", + "radioactivity_concentration_of_131Te_in_air", + "radioactivity_concentration_of_132Te_in_air", + "radioactivity_concentration_of_133mTe_in_air", + "radioactivity_concentration_of_133Te_in_air", + "radioactivity_concentration_of_134Te_in_air", "rainfall_rate", "rate_of_change_test_quality_flag", "rate_of_hydroxyl_radical_destruction_due_to_reaction_with_nmvoc", - "ratio_of_ice_volume_in_frozen_ground_to_pore_volume_in_unfrozen_ground", "ratio_of_sea_water_potential_temperature_anomaly_to_relaxation_timescale", "ratio_of_sea_water_practical_salinity_anomaly_to_relaxation_timescale", - "ratio_of_x_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", - "ratio_of_y_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", - "realization", "reference_air_pressure_for_atmosphere_vertical_coordinate", - "reference_epoch", - "reference_pressure", "reference_sea_water_density_for_boussinesq_approximation", - "region", - "relative_humidity", - "relative_humidity_for_aerosol_particle_size_selection", - "relative_platform_azimuth_angle", - "relative_sensor_azimuth_angle", "richardson_number_in_sea_water", - "root_depth", "root_mass_content_of_carbon", "root_mass_content_of_nitrogen", - "runoff_amount", - "runoff_amount_excluding_baseflow", - "runoff_flux", "salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "salt_flux_into_sea_water_from_rivers", "scattering_angle", - "scene_type_of_dvorak_tropical_cyclone_cloud_region", - "scene_type_of_dvorak_tropical_cyclone_eye_region", - "sea_area", - "sea_area_fraction", - "sea_binary_mask", - "sea_floor_depth_below_geoid", "sea_floor_depth_below_geopotential_datum", - "sea_floor_depth_below_mean_sea_level", - "sea_floor_depth_below_reference_ellipsoid", - "sea_floor_depth_below_sea_surface", - "sea_floor_sediment_grain_size", - "sea_ice_albedo", - "sea_ice_amount", - "sea_ice_and_surface_snow_amount", - "sea_ice_area", - "sea_ice_area_fraction", - "sea_ice_area_transport_across_line", - "sea_ice_average_normal_horizontal_stress", "sea_ice_basal_drag_coefficient_for_momentum_in_sea_water", "sea_ice_basal_temperature", - "sea_ice_classification", - "sea_ice_draft", "sea_ice_extent", "sea_ice_floe_diameter", - "sea_ice_freeboard", - "sea_ice_mass", "sea_ice_mass_content_of_salt", - "sea_ice_melt_pond_thickness", - "sea_ice_salinity", - "sea_ice_speed", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", - "sea_ice_thickness", - "sea_ice_transport_across_line", - "sea_ice_volume", - "sea_ice_x_displacement", - "sea_ice_x_force_per_unit_area_due_to_coriolis_effect", - "sea_ice_x_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_x_internal_stress", - "sea_ice_x_transport", - "sea_ice_x_velocity", - "sea_ice_y_displacement", - "sea_ice_y_force_per_unit_area_due_to_coriolis_effect", - "sea_ice_y_force_per_unit_area_due_to_sea_surface_tilt", "sea_ice_y_internal_stress", - "sea_ice_y_transport", - "sea_ice_y_velocity", - "sea_surface_density", - "sea_surface_downward_eastward_stress_due_to_dissipation_of_sea_surface_waves", - "sea_surface_downward_northward_stress_due_to_dissipation_of_sea_surface_waves", "sea_surface_foundation_temperature", - "sea_surface_height_above_geoid", "sea_surface_height_above_geopotential_datum", - "sea_surface_height_above_mean_sea_level", - "sea_surface_height_above_reference_ellipsoid", - "sea_surface_height_amplitude_due_to_earth_tide", - "sea_surface_height_amplitude_due_to_equilibrium_ocean_tide", - "sea_surface_height_amplitude_due_to_geocentric_ocean_tide", - "sea_surface_height_amplitude_due_to_non_equilibrium_ocean_tide", - "sea_surface_height_amplitude_due_to_pole_tide", - "sea_surface_height_bias_due_to_sea_surface_roughness", - "sea_surface_height_correction_due_to_air_pressure_and_wind_at_high_frequency", - "sea_surface_height_correction_due_to_air_pressure_at_low_frequency", - "sea_surface_mean_square_crosswave_slope", - "sea_surface_mean_square_upwave_slope", - "sea_surface_mean_square_upwave_slope_direction", - "sea_surface_primary_swell_wave_directional_spread", - "sea_surface_primary_swell_wave_energy_at_variance_spectral_density_maximum", - "sea_surface_primary_swell_wave_from_direction", - "sea_surface_primary_swell_wave_from_direction_at_variance_spectral_density_maximum", - "sea_surface_primary_swell_wave_mean_period", - "sea_surface_primary_swell_wave_period_at_variance_spectral_density_maximum", - "sea_surface_primary_swell_wave_significant_height", - "sea_surface_salinity", - "sea_surface_secondary_swell_wave_directional_spread", - "sea_surface_secondary_swell_wave_energy_at_variance_spectral_density_maximum", - "sea_surface_secondary_swell_wave_from_direction", - "sea_surface_secondary_swell_wave_from_direction_at_variance_spectral_density_maximum", - "sea_surface_secondary_swell_wave_mean_period", - "sea_surface_secondary_swell_wave_period_at_variance_spectral_density_maximum", - "sea_surface_secondary_swell_wave_significant_height", "sea_surface_skin_temperature", "sea_surface_subskin_temperature", - "sea_surface_swell_wave_directional_spread", - "sea_surface_swell_wave_from_direction", - "sea_surface_swell_wave_from_direction_at_variance_spectral_density_maximum", - "sea_surface_swell_wave_mean_period", - "sea_surface_swell_wave_mean_period_from_variance_spectral_density_first_frequency_moment", - "sea_surface_swell_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", - "sea_surface_swell_wave_mean_period_from_variance_spectral_density_second_frequency_moment", - "sea_surface_swell_wave_period", - "sea_surface_swell_wave_period_at_variance_spectral_density_maximum", - "sea_surface_swell_wave_significant_height", - "sea_surface_swell_wave_to_direction", "sea_surface_temperature", "sea_surface_tertiary_swell_wave_directional_spread", "sea_surface_tertiary_swell_wave_energy_at_variance_spectral_density_maximum", @@ -17037,55 +15478,9 @@ "sea_surface_tertiary_swell_wave_mean_period", "sea_surface_tertiary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_tertiary_swell_wave_significant_height", - "sea_surface_wave_directional_spread", - "sea_surface_wave_directional_spread_at_variance_spectral_density_maximum", - "sea_surface_wave_directional_variance_spectral_density", - "sea_surface_wave_energy_at_variance_spectral_density_maximum", - "sea_surface_wave_from_direction", - "sea_surface_wave_from_direction_at_variance_spectral_density_maximum", - "sea_surface_wave_maximum_crest_height", - "sea_surface_wave_maximum_height", - "sea_surface_wave_maximum_period", "sea_surface_wave_maximum_steepness", - "sea_surface_wave_maximum_trough_depth", - "sea_surface_wave_mean_height", "sea_surface_wave_mean_height_of_highest_tenth", - "sea_surface_wave_mean_period", - "sea_surface_wave_mean_period_from_variance_spectral_density_first_frequency_moment", - "sea_surface_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", - "sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wave_mean_period_of_highest_tenth", - "sea_surface_wave_mean_square_slope", - "sea_surface_wave_mean_square_x_slope", - "sea_surface_wave_mean_square_y_slope", - "sea_surface_wave_mean_wavenumber_from_variance_spectral_density_first_wavenumber_moment", - "sea_surface_wave_period_at_variance_spectral_density_maximum", - "sea_surface_wave_period_of_highest_wave", - "sea_surface_wave_significant_height", - "sea_surface_wave_significant_period", - "sea_surface_wave_stokes_drift_eastward_velocity", - "sea_surface_wave_stokes_drift_northward_velocity", - "sea_surface_wave_stokes_drift_speed", - "sea_surface_wave_stokes_drift_to_direction", - "sea_surface_wave_stokes_drift_x_velocity", - "sea_surface_wave_stokes_drift_y_velocity", - "sea_surface_wave_to_direction", - "sea_surface_wave_variance_spectral_density", - "sea_surface_wave_xx_radiation_stress", - "sea_surface_wave_xy_radiation_stress", - "sea_surface_wave_yy_radiation_stress", - "sea_surface_wind_wave_directional_spread", - "sea_surface_wind_wave_energy_at_variance_spectral_density_maximum", - "sea_surface_wind_wave_from_direction", - "sea_surface_wind_wave_from_direction_at_variance_spectral_density_maximum", - "sea_surface_wind_wave_mean_period", - "sea_surface_wind_wave_mean_period_from_variance_spectral_density_first_frequency_moment", - "sea_surface_wind_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", - "sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment", - "sea_surface_wind_wave_period", - "sea_surface_wind_wave_period_at_variance_spectral_density_maximum", - "sea_surface_wind_wave_significant_height", - "sea_surface_wind_wave_to_direction", "sea_water_absolute_salinity", "sea_water_added_conservative_temperature", "sea_water_added_potential_temperature", @@ -17137,24 +15532,13 @@ "sea_water_velocity_from_direction", "sea_water_velocity_to_direction", "sea_water_velocity_to_direction_at_sea_floor", - "sea_water_velocity_to_direction_due_to_tides", - "sea_water_volume", - "sea_water_x_velocity", - "sea_water_x_velocity_due_to_parameterized_mesoscale_eddies", - "sea_water_y_velocity", - "sea_water_y_velocity_due_to_parameterized_mesoscale_eddies", - "secchi_depth_of_sea_water", - "sensor_azimuth_angle", - "sensor_band_central_radiation_frequency", - "sensor_band_central_radiation_wavelength", - "sensor_band_central_radiation_wavenumber", - "sensor_band_identifier", - "sensor_view_angle", - "sensor_zenith_angle", - "shallow_convection_time_fraction", - "shallow_convective_cloud_base_altitude", - "shallow_convective_cloud_top_altitude", - "shallow_convective_precipitation_flux", + "sea_water_velocity_to_direction_due_to_tides", + "sea_water_volume", + "sea_water_x_velocity", + "sea_water_x_velocity_due_to_parameterized_mesoscale_eddies", + "sea_water_y_velocity", + "sea_water_y_velocity_due_to_parameterized_mesoscale_eddies", + "secchi_depth_of_sea_water", "signal_intensity_from_multibeam_acoustic_doppler_velocity_sensor_in_sea_water", "single_scattering_albedo_in_air_due_to_ambient_aerosol_particles", "sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water", @@ -17165,14 +15549,7 @@ "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", "sinking_mole_flux_of_particulate_silicon_in_sea_water", "slow_soil_pool_mass_content_of_carbon", - "snow_area_fraction_viewable_from_above", - "snowfall_amount", - "snowfall_flux", - "snow_grain_size", - "snow_transport_across_line_due_to_sea_ice_dynamics", - "soil_albedo", "soil_frozen_water_content", - "soil_hydraulic_conductivity_at_saturation", "soil_mass_content_of_13C", "soil_mass_content_of_14C", "soil_mass_content_of_carbon", @@ -17181,176 +15558,68 @@ "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", "soil_mass_content_of_nitrogen", "soil_moisture_content_at_field_capacity", - "soil_pool", "soil_pool_carbon_decay_rate", - "soil_porosity", - "soil_suction_at_saturation", "soil_temperature", - "soil_thermal_capacity", - "soil_thermal_conductivity", - "soil_type", "soil_water_ph", - "solar_azimuth_angle", - "solar_elevation_angle", - "solar_irradiance", - "solar_irradiance_per_unit_wavelength", - "solar_zenith_angle", - "solid_precipitation_flux", - "solid_precipitation_flux_containing_17O", - "solid_precipitation_flux_containing_18O", - "solid_precipitation_flux_containing_single_2H", "soot_content_of_surface_snow", - "sound_frequency", "sound_intensity_in_air", "sound_intensity_in_water", "sound_intensity_level_in_air", "sound_intensity_level_in_water", - "sound_pressure_in_air", "sound_pressure_in_water", - "sound_pressure_level_in_air", "sound_pressure_level_in_water", - "source", - "specific_dry_energy_of_air", "specific_gravitational_potential_energy", - "specific_heat_capacity_of_frozen_ground", "specific_heat_capacity_of_sea_water", - "specific_humidity", - "specific_kinetic_energy_of_air", "specific_kinetic_energy_of_sea_water", "specific_turbulent_kinetic_energy_dissipation_in_sea_water", "specific_turbulent_kinetic_energy_of_sea_water", - "speed_of_sound_in_air", "speed_of_sound_in_sea_water", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", - "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_above_threshold", - "spell_length_of_days_with_lwe_thickness_of_precipitation_amount_below_threshold", "spike_test_quality_flag", "square_of_air_temperature", - "square_of_brunt_vaisala_frequency_in_air", "square_of_brunt_vaisala_frequency_in_sea_water", - "square_of_eastward_wind", "square_of_geopotential_height", "square_of_lagrangian_tendency_of_air_pressure", - "square_of_northward_wind", - "square_of_ocean_mixed_layer_thickness_defined_by_sigma_t", - "square_of_sea_surface_height_above_geoid", - "square_of_sea_surface_salinity", "square_of_sea_surface_temperature", - "square_of_upward_air_velocity", - "square_of_upward_ocean_mass_transport", - "status_flag", "stem_mass_content_of_carbon", "stem_mass_content_of_nitrogen", "steric_change_in_mean_sea_level", "steric_change_in_sea_surface_height", - "storm_motion_speed", - "stratiform_cloud_area_fraction", - "stratiform_cloud_area_fraction_in_atmosphere_layer", - "stratiform_cloud_longwave_emissivity", - "stratiform_graupel_fall_amount", - "stratiform_graupel_flux", - "stratiform_precipitation_amount", - "stratiform_precipitation_flux", - "stratiform_rainfall_amount", - "stratiform_rainfall_flux", "stratiform_rainfall_rate", - "stratiform_snowfall_amount", - "stratiform_snowfall_flux", "stratosphere_mole_content_of_nitrogen_dioxide", - "stratosphere_optical_thickness_due_to_ambient_aerosol_particles", "stratosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", - "stratosphere_optical_thickness_due_to_volcanic_ambient_aerosol_particles", "subsurface_litter_mass_content_of_carbon", "subsurface_litter_mass_content_of_nitrogen", - "subsurface_runoff_amount", - "subsurface_runoff_flux", - "sunglint_angle", - "sunlit_binary_mask", - "surface_air_pressure", - "surface_albedo", - "surface_albedo_assuming_deep_snow", - "surface_albedo_assuming_no_snow", - "surface_altitude", "surface_backwards_scattering_coefficient_of_radar_wave", - "surface_bidirectional_reflectance", "surface_brightness_temperature", "surface_carbon_dioxide_abiotic_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_natural_analogue_partial_pressure_difference_between_sea_water_and_air", "surface_carbon_dioxide_partial_pressure_difference_between_air_and_sea_water", "surface_carbon_dioxide_partial_pressure_difference_between_sea_water_and_air", - "surface_diffuse_downwelling_photosynthetic_radiative_flux_in_air", - "surface_diffuse_downwelling_shortwave_flux_in_air", - "surface_diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", - "surface_diffuse_shortwave_hemispherical_reflectance", - "surface_direct_along_beam_shortwave_flux_in_air", - "surface_direct_downwelling_shortwave_flux_in_air", - "surface_direct_shortwave_hemispherical_reflectance", - "surface_downward_eastward_stress", - "surface_downward_eastward_stress_due_to_boundary_layer_mixing", - "surface_downward_eastward_stress_due_to_ocean_viscous_dissipation", - "surface_downward_eastward_stress_due_to_sea_surface_waves", - "surface_downward_heat_flux_in_air", - "surface_downward_heat_flux_in_sea_ice", "surface_downward_heat_flux_in_sea_water", - "surface_downward_heat_flux_in_snow", "surface_downward_latent_heat_flux", - "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", - "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", - "surface_downward_mass_flux_of_ammonia", - "surface_downward_mass_flux_of_carbon_dioxide_abiotic_analogue_expressed_as_carbon", - "surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon", - "surface_downward_mass_flux_of_carbon_dioxide_natural_analogue_expressed_as_carbon", - "surface_downward_mass_flux_of_methane_due_to_wetland_biological_consumption", "surface_downward_mass_flux_of_water_due_to_irrigation", - "surface_downward_mole_flux_of_carbon_dioxide", - "surface_downward_mole_flux_of_cfc11", - "surface_downward_mole_flux_of_cfc12", - "surface_downward_mole_flux_of_molecular_oxygen", - "surface_downward_mole_flux_of_sulfur_hexafluoride", - "surface_downward_northward_stress", - "surface_downward_northward_stress_due_to_boundary_layer_mixing", - "surface_downward_northward_stress_due_to_ocean_viscous_dissipation", - "surface_downward_northward_stress_due_to_sea_surface_waves", - "surface_downward_sensible_heat_flux", "surface_downward_water_flux", - "surface_downward_x_stress", - "surface_downward_x_stress_correction", - "surface_downward_y_stress", - "surface_downward_y_stress_correction", - "surface_downwelling_longwave_flux_in_air", - "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", - "surface_downwelling_longwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_photon_flux_in_sea_water", "surface_downwelling_photon_flux_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_radiance_in_sea_water", "surface_downwelling_photon_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photon_spherical_irradiance_per_unit_wavelength_in_sea_water", - "surface_downwelling_photosynthetic_photon_flux_in_air", "surface_downwelling_photosynthetic_photon_flux_in_sea_water", "surface_downwelling_photosynthetic_photon_radiance_in_sea_water", "surface_downwelling_photosynthetic_photon_spherical_irradiance_in_sea_water", "surface_downwelling_photosynthetic_radiance_in_sea_water", - "surface_downwelling_photosynthetic_radiative_flux_in_air", "surface_downwelling_photosynthetic_radiative_flux_in_sea_water", "surface_downwelling_photosynthetic_spherical_irradiance_in_sea_water", "surface_downwelling_radiance_in_sea_water", "surface_downwelling_radiance_per_unit_wavelength_in_sea_water", "surface_downwelling_radiative_flux_in_sea_water", - "surface_downwelling_radiative_flux_per_unit_wavelength_in_air", "surface_downwelling_radiative_flux_per_unit_wavelength_in_sea_water", - "surface_downwelling_shortwave_flux_in_air", - "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", - "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", - "surface_downwelling_shortwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_spherical_irradiance_in_sea_water", "surface_downwelling_spherical_irradiance_per_unit_wavelength_in_sea_water", - "surface_drag_coefficient_for_heat_in_air", - "surface_drag_coefficient_for_momentum_in_air", - "surface_drag_coefficient_in_air", "surface_eastward_sea_water_velocity", - "surface_frozen_carbon_dioxide_amount", "surface_geopotential", "surface_geostrophic_eastward_sea_water_velocity", "surface_geostrophic_eastward_sea_water_velocity_assuming_mean_sea_level_for_geoid", @@ -17363,31 +15632,9 @@ "surface_height_above_geopotential_datum", "surface_litter_mass_content_of_carbon", "surface_litter_mass_content_of_nitrogen", - "surface_longwave_emissivity", - "surface_microwave_emissivity", "surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air", - "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect", - "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", - "surface_net_downward_longwave_flux", - "surface_net_downward_longwave_flux_assuming_clear_sky", - "surface_net_downward_mass_flux_of_ammonia_due_to_bidirectional_surface_exchange", - "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_all_land_processes", - "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_all_land_processes", - "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", - "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change", - "surface_net_downward_radiative_flux", - "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect", - "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", - "surface_net_downward_shortwave_flux", - "surface_net_downward_shortwave_flux_assuming_clear_sky", - "surface_net_upward_longwave_flux", - "surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change", - "surface_net_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_processes", - "surface_net_upward_radiative_flux", - "surface_net_upward_shortwave_flux", "surface_northward_sea_water_velocity", "surface_partial_pressure_of_carbon_dioxide_abiotic_analogue_in_sea_water", - "surface_partial_pressure_of_carbon_dioxide_in_air", "surface_partial_pressure_of_carbon_dioxide_in_sea_water", "surface_partial_pressure_of_carbon_dioxide_natural_analogue_in_sea_water", "surface_radioactivity_content", @@ -17754,89 +16001,31 @@ "surface_radioactivity_content_of_99mTc", "surface_radioactivity_content_of_99Tc", "surface_ratio_of_upwelling_radiance_emerging_from_sea_water_to_downwelling_radiative_flux_in_air", - "surface_roughness_length", - "surface_roughness_length_for_heat_in_air", - "surface_roughness_length_for_humidity_in_air", - "surface_roughness_length_for_momentum_in_air", - "surface_runoff_amount", - "surface_runoff_flux", - "surface_snow_amount", - "surface_snow_and_ice_melt_flux", - "surface_snow_and_ice_melt_heat_flux", - "surface_snow_and_ice_refreezing_flux", - "surface_snow_area_fraction", - "surface_snow_binary_mask", - "surface_snow_density", - "surface_snow_melt_amount", - "surface_snow_melt_and_sublimation_heat_flux", - "surface_snow_melt_flux", - "surface_snow_melt_heat_flux", - "surface_snow_sublimation_amount", - "surface_snow_sublimation_heat_flux", - "surface_snow_thickness", - "surface_specific_humidity", "surface_temperature", "surface_temperature_anomaly", - "surface_upward_eastward_stress_due_to_sea_surface_waves", - "surface_upward_heat_flux_due_to_anthropogenic_energy_consumption", - "surface_upward_heat_flux_in_air", "surface_upward_latent_heat_flux", "surface_upward_latent_heat_flux_due_to_sublimation", - "surface_upward_mass_flux_of_ammonia", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_plant_respiration", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change_excluding_forestry_and_agricultural_products", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_grazing", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_litter_in_fires", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_fires", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_vegetation_in_fires", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_growth", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_maintenance", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_leaves", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_miscellaneous_living_matter", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_roots", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", - "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_respiration_in_soil", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_litter", "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_soil", - "surface_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_production", - "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen", - "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_all_land_processes_excluding_fires", - "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_emission_from_fires", "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", - "surface_upward_mole_flux_of_carbon_dioxide", - "surface_upward_mole_flux_of_dimethyl_sulfide", - "surface_upward_northward_stress_due_to_sea_surface_waves", - "surface_upward_sensible_heat_flux", "surface_upward_water_flux", "surface_upward_water_vapor_flux_in_air", - "surface_upwelling_longwave_flux_in_air", - "surface_upwelling_longwave_flux_in_air_assuming_clear_sky", - "surface_upwelling_photosynthetic_photon_flux_in_air", - "surface_upwelling_radiance_in_air", "surface_upwelling_radiance_in_air_emerging_from_sea_water", "surface_upwelling_radiance_in_air_reflected_by_sea_water", "surface_upwelling_radiance_in_sea_water", - "surface_upwelling_radiance_per_unit_wavelength_in_air", "surface_upwelling_radiance_per_unit_wavelength_in_air_emerging_from_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_air_reflected_by_sea_water", "surface_upwelling_radiance_per_unit_wavelength_in_sea_water", - "surface_upwelling_radiative_flux_per_unit_wavelength_in_air", "surface_upwelling_radiative_flux_per_unit_wavelength_in_sea_water", - "surface_upwelling_shortwave_flux_in_air", - "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", - "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", "surface_water_amount", "surface_water_evaporation_flux", "syntax_test_quality_flag", @@ -18681,89 +16870,29 @@ "tendency_of_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", "tendency_of_wind_speed_due_to_convection", "tendency_of_wind_speed_due_to_gravity_wave_drag", - "thermal_conductivity_of_frozen_ground", "thermal_energy_content_of_surface_snow", "thermodynamic_phase_of_cloud_water_particles_at_cloud_top", "thermosteric_change_in_mean_sea_level", "thermosteric_change_in_sea_surface_height", - "thickness_of_convective_rainfall_amount", - "thickness_of_convective_snowfall_amount", - "thickness_of_ice_on_sea_ice_melt_pond", "thickness_of_liquid_water_cloud", - "thickness_of_rainfall_amount", - "thickness_of_snowfall_amount", - "thickness_of_stratiform_rainfall_amount", - "thickness_of_stratiform_snowfall_amount", - "thunderstorm_probability", - "tidal_sea_surface_height_above_lowest_astronomical_tide", "tidal_sea_surface_height_above_mean_higher_high_water", "tidal_sea_surface_height_above_mean_lower_low_water", "tidal_sea_surface_height_above_mean_low_water_springs", - "tidal_sea_surface_height_above_mean_sea_level", - "time", - "time_of_maximum_flood_depth", - "time_sample_difference_due_to_collocation", "time_when_flood_water_falls_below_threshold", - "time_when_flood_water_rises_above_threshold", - "toa_adjusted_longwave_forcing", - "toa_adjusted_radiative_forcing", - "toa_adjusted_shortwave_forcing", - "toa_bidirectional_reflectance", - "toa_brightness_temperature", - "toa_brightness_temperature_assuming_clear_sky", - "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", - "toa_brightness_temperature_of_standard_scene", - "toa_cloud_radiative_effect", - "toa_incoming_shortwave_flux", - "toa_instantaneous_longwave_forcing", - "toa_instantaneous_radiative_forcing", - "toa_instantaneous_shortwave_forcing", - "toa_longwave_cloud_radiative_effect", - "toa_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", - "toa_net_downward_longwave_flux", - "toa_net_downward_longwave_flux_assuming_clear_sky", - "toa_net_downward_radiative_flux", - "toa_net_downward_shortwave_flux", - "toa_net_downward_shortwave_flux_assuming_clear_sky", - "toa_net_upward_longwave_flux", - "toa_net_upward_longwave_flux_assuming_clear_sky", - "toa_net_upward_shortwave_flux", - "toa_outgoing_longwave_flux", - "toa_outgoing_longwave_flux_assuming_clear_sky", - "toa_outgoing_longwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", - "toa_outgoing_radiance_per_unit_wavelength", - "toa_outgoing_radiance_per_unit_wavelength_due_to_solar_induced_fluorescence", - "toa_outgoing_radiance_per_unit_wavenumber", - "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_scene", - "toa_outgoing_radiance_per_unit_wavenumber_mean_within_collocation_target", - "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_scene", - "toa_outgoing_radiance_per_unit_wavenumber_stdev_within_collocation_target", - "toa_outgoing_shortwave_flux", - "toa_outgoing_shortwave_flux_assuming_clear_sky", - "toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol", - "toa_outgoing_shortwave_flux_assuming_no_aerosol", - "toa_outgoing_shortwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", - "toa_shortwave_cloud_radiative_effect", + "time_when_flood_water_rises_above_threshold", + "toa_adjusted_longwave_forcing", + "toa_adjusted_radiative_forcing", + "toa_adjusted_shortwave_forcing", + "toa_brightness_temperature", + "toa_brightness_temperature_assuming_clear_sky", + "toa_brightness_temperature_bias_at_standard_scene_due_to_intercalibration", + "toa_brightness_temperature_of_standard_scene", "to_direction_of_air_velocity_relative_to_sea_water", - "to_direction_of_surface_downward_stress", - "tracer_lifetime", - "transpiration_amount", - "transpiration_flux", "tropical_cyclone_eye_brightness_temperature", - "tropical_cyclone_maximum_sustained_wind_speed", "tropopause_adjusted_longwave_forcing", "tropopause_adjusted_radiative_forcing", "tropopause_adjusted_shortwave_forcing", - "tropopause_air_pressure", "tropopause_air_temperature", - "tropopause_altitude", - "tropopause_downwelling_longwave_flux", - "tropopause_instantaneous_longwave_forcing", - "tropopause_instantaneous_radiative_forcing", - "tropopause_instantaneous_shortwave_forcing", - "tropopause_net_downward_longwave_flux", - "tropopause_net_downward_shortwave_flux", - "tropopause_upwelling_shortwave_flux", "troposphere_mole_content_of_bromine_monoxide", "troposphere_mole_content_of_formaldehyde", "troposphere_mole_content_of_glyoxal", @@ -18772,57 +16901,19 @@ "troposphere_mole_content_of_ozone", "troposphere_mole_content_of_sulfur_dioxide", "turbulent_mixing_length_of_sea_water", - "ultraviolet_index", - "ultraviolet_index_assuming_clear_sky", - "ultraviolet_index_assuming_overcast_sky", - "upward_air_velocity", - "upward_derivative_of_eastward_wind", - "upward_derivative_of_northward_wind", - "upward_derivative_of_wind_from_direction", - "upward_dry_static_energy_flux_due_to_diffusion", - "upward_eastward_momentum_flux_in_air_due_to_nonorographic_eastward_gravity_waves", - "upward_eastward_momentum_flux_in_air_due_to_nonorographic_westward_gravity_waves", - "upward_eastward_momentum_flux_in_air_due_to_orographic_gravity_waves", - "upward_eastward_stress_at_sea_ice_base", - "upward_eliassen_palm_flux_in_air", - "upward_geothermal_heat_flux_at_ground_level_in_land_ice", - "upward_geothermal_heat_flux_at_sea_floor", - "upward_heat_flux_at_ground_level_in_snow", - "upward_heat_flux_at_ground_level_in_soil", - "upward_heat_flux_in_air", "upward_heat_flux_in_sea_water_due_to_convection", "upward_latent_heat_flux_in_air", - "upward_mass_flux_of_air", - "upward_northward_stress_at_sea_ice_base", - "upward_ocean_mass_transport", - "upward_sea_ice_basal_heat_flux", "upward_sea_water_velocity", "upward_sea_water_velocity_due_to_parameterized_mesoscale_eddies", - "upward_sensible_heat_flux_in_air", - "upward_transformed_eulerian_mean_air_velocity", "upward_upward_derivative_of_geopotential", "upward_water_vapor_flux_in_air", "upward_water_vapor_flux_in_air_due_to_diffusion", - "upward_x_stress_at_sea_ice_base", - "upward_y_stress_at_sea_ice_base", - "upwelling_longwave_flux_in_air", - "upwelling_longwave_flux_in_air_assuming_clear_sky", - "upwelling_longwave_radiance_in_air", - "upwelling_radiance_per_unit_wavelength_in_air", - "upwelling_radiative_flux_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_sea_water", - "upwelling_shortwave_flux_in_air", - "upwelling_shortwave_flux_in_air_assuming_clear_sky", - "upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", - "upwelling_shortwave_radiance_in_air", - "vegetation_area_fraction", "vegetation_carbon_content", "vegetation_mass_content_of_13C", "vegetation_mass_content_of_14C", "vegetation_mass_content_of_nitrogen", - "vertical_component_of_ocean_xy_tracer_diffusivity", "vertical_navigation_clearance_above_waterway_surface", - "virtual_salt_flux_correction", "virtual_salt_flux_into_sea_water", "virtual_salt_flux_into_sea_water_due_to_evaporation", "virtual_salt_flux_into_sea_water_due_to_newtonian_relaxation", @@ -18830,8 +16921,6 @@ "virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "virtual_salt_flux_into_sea_water_from_rivers", "virtual_temperature", - "visibility_in_air", - "volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles", "volume_absorption_coefficient_of_radiative_flux_in_sea_water", "volume_absorption_coefficient_of_radiative_flux_in_sea_water_due_to_dissolved_organic_matter", "volume_attenuated_backwards_scattering_function_in_air", @@ -18841,9 +16930,6 @@ "volume_backwards_scattering_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water", "volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water_corrected_for_pure_water_attenuance", - "volume_extinction_coefficient_in_air_due_to_ambient_aerosol_particles", - "volume_extinction_coefficient_in_air_due_to_cloud_particles", - "volume_fraction_of_clay_in_soil", "volume_fraction_of_condensed_water_in_soil", "volume_fraction_of_condensed_water_in_soil_at_critical_point", "volume_fraction_of_condensed_water_in_soil_at_field_capacity", @@ -18851,8 +16937,6 @@ "volume_fraction_of_condensed_water_in_soil_pores", "volume_fraction_of_frozen_water_in_soil", "volume_fraction_of_oxygen_in_sea_water", - "volume_fraction_of_sand_in_soil", - "volume_fraction_of_silt_in_soil", "volume_mixing_ratio_of_oxygen_at_stp_in_sea_water", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", "volume_scattering_coefficient_of_radiative_flux_in_air_due_to_dried_aerosol_particles", @@ -18887,60 +16971,56 @@ "water_vapor_saturation_deficit_in_air", "water_volume_transport_in_river_channel", "water_volume_transport_into_sea_water_from_rivers", - "wave_frequency", "westward_upward_derivative_of_geopotential", "westward_westward_derivative_of_geopotential", "wet_bulb_potential_temperature", "wet_bulb_temperature", "wind_chill_of_air_temperature", - "wind_from_direction", - "wind_gust_from_direction", "wind_mixing_energy_flux_into_sea_water", - "wind_speed", - "wind_speed_of_gust", - "wind_speed_shear", - "wind_to_direction", "wood_debris_mass_content_of_carbon", "wood_debris_mass_content_of_nitrogen", - "x_derivative_of_ocean_rigid_lid_pressure", "x_heat_flux_in_sea_water_due_to_advection", - "x_wind", - "x_wind_gust", - "y_derivative_of_ocean_rigid_lid_pressure", - "y_heat_flux_in_sea_water_due_to_advection", - "y_wind", - "y_wind_gust", - "zenith_angle" + "y_heat_flux_in_sea_water_due_to_advection" ], "description": "Options", "index": [ 0 ], - "layout": "IPY_MODEL_483124f7f42d4384ae301928ed3e952e", + "layout": "IPY_MODEL_49ee20188ebd491d9aa0fcacab393317", "rows": 10, - "style": "IPY_MODEL_1ec15ed8df21422ba379413c551ad2cb" + "style": "IPY_MODEL_0cfffda958cd4fc2836f5f8c760ea631" } }, - "d5efc2e4c35449d1933afd7e0218d542": { + "d487cde5a3ee4bca96148467136b9f8a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "TextModel", + "model_name": "ButtonStyleModel", "state": { - "description": "nickname", - "layout": "IPY_MODEL_ddf85189776948bc8fe04f5ff46c2352", - "style": "IPY_MODEL_0c00d271116f4e54820186c795a3a339", - "value": "temp" + "font_family": null, + "font_size": null, + "font_style": null, + "font_variant": null, + "font_weight": null, + "text_color": null, + "text_decoration": null } }, - "d7f7ef41a41440b986c0c98c8741cebb": { - "model_module": "@jupyter-widgets/controls", - "model_module_version": "2.0.0", - "model_name": "DescriptionStyleModel", + "d760e21fad834e33a2092010d5534d5b": { + "model_module": "@jupyter-widgets/output", + "model_module_version": "1.0.0", + "model_name": "OutputModel", "state": { - "description_width": "" + "layout": "IPY_MODEL_939b182a9bf84d3c87819e34ad964512", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": "Vocabulary: {'temp': {'standard_name': 'sea_surface_temperature$|sea_water_potential_temperature$|sea_water_temperature$'}}\n" + } + ] } }, - "da1f0dc7fd9f4e1585c0766043e0317b": { + "ddac04334db34bd8a4526e1a1f5d7698": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "SelectMultipleModel", @@ -18949,12 +17029,16 @@ "acoustic_signal_roundtrip_travel_time_in_sea_water", "aerodynamic_particle_diameter", "aerodynamic_resistance", + "age_of_sea_ice", "age_of_stratospheric_air", + "age_of_surface_snow", "aggregate_quality_flag", "air_density", "air_equivalent_potential_temperature", "air_equivalent_temperature", "air_potential_temperature", + "air_pressure", + "air_pressure_anomaly", "air_pressure_at_cloud_base", "air_pressure_at_cloud_top", "air_pressure_at_convective_cloud_base", @@ -18978,6 +17062,8 @@ "altitude_at_top_of_atmosphere_model", "altitude_at_top_of_dry_convection", "amplitude_of_global_average_sea_level_change", + "angle_of_emergence", + "angle_of_incidence", "angle_of_rotation_from_east_to_x", "angle_of_rotation_from_east_to_y", "angle_of_rotation_from_solar_azimuth_to_platform_azimuth", @@ -19299,11 +17385,14 @@ "biological_taxon_lsid", "biological_taxon_name", "bioluminescent_photon_rate_in_sea_water", + "biomass_burning_carbon_flux", "brightness_temperature", "brightness_temperature_anomaly", "brightness_temperature_at_cloud_top", "brunt_vaisala_frequency_in_air", + "burned_area", "burned_area_fraction", + "canopy_albedo", "canopy_and_surface_water_amount", "canopy_height", "canopy_resistance_to_ozone_dry_deposition", @@ -19316,10 +17405,12 @@ "carbon_mass_flux_into_litter_and_soil_due_to_anthropogenic_land_use_or_land_cover_change", "carbon_mass_flux_into_soil_from_litter", "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", + "cell_area", "cell_thickness", "change_in_atmosphere_energy_content_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_energy_content_of_atmosphere_layer_due_to_change_in_sigma_coordinate_wrt_surface_pressure", "change_in_land_ice_amount", + "change_in_land_ice_mass", "change_over_time_in_amount_of_ice_and_snow_on_land", "change_over_time_in_atmosphere_mass_content_of_water_due_to_advection", "change_over_time_in_canopy_water_amount", @@ -19345,9 +17436,11 @@ "charnock_coefficient_for_surface_roughness_length_for_momentum_in_air", "clear_sky_area_fraction", "climatology_test_quality_flag", + "cloud_albedo", "cloud_area_fraction", "cloud_area_fraction_in_atmosphere_layer", "cloud_base_altitude", + "cloud_binary_mask", "cloud_ice_mixing_ratio", "cloud_liquid_water_mixing_ratio", "cloud_top_altitude", @@ -19385,6 +17478,7 @@ "dew_point_temperature", "diameter_of_ambient_aerosol_particles", "difference_between_sea_surface_temperature_and_air_temperature", + "difference_of_air_pressure_from_model_reference", "diffuse_downwelling_shortwave_flux_in_air", "diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", "dimensionless_exner_function", @@ -19397,6 +17491,7 @@ "distance_from_sun", "distance_from_tropical_cyclone_center_to_leading_edge_of_displaced_convection", "divergence_of_sea_ice_velocity", + "divergence_of_wind", "downward_air_velocity", "downward_dry_static_energy_flux_due_to_diffusion", "downward_eastward_momentum_flux_in_air", @@ -19420,6 +17515,9 @@ "downward_y_stress_at_sea_ice_base", "downward_y_stress_at_sea_water_surface", "downward_y_stress_correction_at_sea_water_surface", + "downwelling_longwave_flux_in_air", + "downwelling_longwave_flux_in_air_assuming_clear_sky", + "downwelling_longwave_radiance_in_air", "downwelling_photon_flux_in_sea_water", "downwelling_photon_flux_per_unit_wavelength_in_sea_water", "downwelling_photon_radiance_in_sea_water", @@ -19503,6 +17601,7 @@ "ertel_potential_vorticity", "fast_soil_pool_mass_content_of_carbon", "final_air_pressure_of_lifted_parcel", + "fire_area", "fire_radiative_power", "fire_temperature", "flat_line_test_quality_flag", @@ -19534,10 +17633,13 @@ "geostrophic_eastward_wind", "geostrophic_northward_sea_water_velocity", "geostrophic_northward_wind", + "global_average_sea_level_change", "global_average_steric_sea_level_change", "global_average_thermosteric_sea_level_change", "graupel_and_hail_fall_amount", + "graupel_and_hail_fall_flux", "graupel_fall_amount", + "graupel_fall_flux", "grid_latitude", "grid_longitude", "gross_primary_productivity_of_biomass_expressed_as_13C", @@ -19555,8 +17657,10 @@ "growth_limitation_of_miscellaneous_phytoplankton_due_to_solar_irradiance", "growth_limitation_of_picophytoplankton_due_to_solar_irradiance", "hail_fall_amount", + "hail_fall_flux", "halosteric_change_in_mean_sea_level", "halosteric_change_in_sea_surface_height", + "harmonic_period", "heat_flux_correction", "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", @@ -19985,8 +18089,12 @@ "lagrangian_tendency_of_air_pressure", "lagrangian_tendency_of_atmosphere_sigma_coordinate", "land_area_fraction", + "land_binary_mask", + "land_cover_lccs", "land_ice_area_fraction", + "land_ice_basal_drag", "land_ice_basal_melt_rate", + "land_ice_basal_specific_mass_balance_flux", "land_ice_basal_temperature", "land_ice_basal_upward_velocity", "land_ice_basal_x_velocity", @@ -19995,11 +18103,14 @@ "land_ice_lwe_basal_melt_rate", "land_ice_lwe_calving_rate", "land_ice_lwe_surface_specific_mass_balance_rate", + "land_ice_mass", "land_ice_mass_not_displacing_sea_water", + "land_ice_runoff_flux", "land_ice_sigma_coordinate", "land_ice_specific_mass_flux_due_to_calving", "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", "land_ice_surface_melt_flux", + "land_ice_surface_specific_mass_balance_flux", "land_ice_surface_specific_mass_balance_rate", "land_ice_surface_upward_velocity", "land_ice_surface_x_velocity", @@ -20013,6 +18124,7 @@ "land_surface_liquid_water_amount", "land_water_amount", "latitude", + "leaf_area_index", "leaf_mass_content_of_carbon", "leaf_mass_content_of_nitrogen", "lightning_potential_index", @@ -20459,6 +18571,7 @@ "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", "miscellaneous_living_matter_mass_content_of_carbon", "miscellaneous_living_matter_mass_content_of_nitrogen", + "model_level_number", "model_level_number_at_base_of_ocean_mixed_layer_defined_by_sigma_theta", "model_level_number_at_convective_cloud_base", "model_level_number_at_convective_cloud_top", @@ -20916,6 +19029,7 @@ "ocean_momentum_xy_laplacian_diffusivity", "ocean_montgomery_potential", "ocean_relative_vorticity", + "ocean_rigid_lid_pressure", "ocean_rigid_lid_pressure_expressed_as_sea_surface_height_above_geoid", "ocean_salt_x_transport", "ocean_salt_y_transport", @@ -20944,6 +19058,7 @@ "ocean_vertical_tracer_diffusivity_due_to_convection", "ocean_vertical_tracer_diffusivity_due_to_tides", "ocean_vertical_tracer_diffusivity_due_to_wind_mixing", + "ocean_volume", "ocean_volume_fraction", "ocean_volume_transport_across_line", "ocean_volume_x_transport", @@ -20962,6 +19077,7 @@ "permafrost_active_layer_thickness", "permafrost_area_fraction", "permafrost_layer_thickness", + "phase_of_global_average_sea_level_change", "photolysis_rate_of_molecular_oxygen", "photolysis_rate_of_nitrogen_dioxide", "photolysis_rate_of_ozone", @@ -21425,6 +19541,7 @@ "radius_of_tropical_cyclone_eye", "radius_of_tropical_cyclone_maximum_sustained_wind_speed", "rainfall_amount", + "rainfall_flux", "rainfall_rate", "rate_of_change_test_quality_flag", "rate_of_hydroxyl_radical_destruction_due_to_reaction_with_nmvoc", @@ -21435,7 +19552,10 @@ "ratio_of_y_derivative_of_ocean_rigid_lid_pressure_to_sea_surface_density", "realization", "reference_air_pressure_for_atmosphere_vertical_coordinate", + "reference_epoch", + "reference_pressure", "reference_sea_water_density_for_boussinesq_approximation", + "region", "relative_humidity", "relative_humidity_for_aerosol_particle_size_selection", "relative_platform_azimuth_angle", @@ -21446,20 +19566,25 @@ "root_mass_content_of_nitrogen", "runoff_amount", "runoff_amount_excluding_baseflow", + "runoff_flux", "salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", "salt_flux_into_sea_water_from_rivers", "scattering_angle", "scene_type_of_dvorak_tropical_cyclone_cloud_region", "scene_type_of_dvorak_tropical_cyclone_eye_region", + "sea_area", "sea_area_fraction", + "sea_binary_mask", "sea_floor_depth_below_geoid", "sea_floor_depth_below_geopotential_datum", "sea_floor_depth_below_mean_sea_level", "sea_floor_depth_below_reference_ellipsoid", "sea_floor_depth_below_sea_surface", "sea_floor_sediment_grain_size", + "sea_ice_albedo", "sea_ice_amount", "sea_ice_and_surface_snow_amount", + "sea_ice_area", "sea_ice_area_fraction", "sea_ice_area_transport_across_line", "sea_ice_average_normal_horizontal_stress", @@ -21469,14 +19594,18 @@ "sea_ice_draft", "sea_ice_extent", "sea_ice_floe_diameter", + "sea_ice_freeboard", + "sea_ice_mass", "sea_ice_mass_content_of_salt", "sea_ice_melt_pond_thickness", "sea_ice_salinity", + "sea_ice_speed", "sea_ice_surface_temperature", "sea_ice_temperature", "sea_ice_temperature_expressed_as_heat_content", "sea_ice_thickness", "sea_ice_transport_across_line", + "sea_ice_volume", "sea_ice_x_displacement", "sea_ice_x_force_per_unit_area_due_to_coriolis_effect", "sea_ice_x_force_per_unit_area_due_to_sea_surface_tilt", @@ -21505,11 +19634,14 @@ "sea_surface_height_bias_due_to_sea_surface_roughness", "sea_surface_height_correction_due_to_air_pressure_and_wind_at_high_frequency", "sea_surface_height_correction_due_to_air_pressure_at_low_frequency", + "sea_surface_mean_square_crosswave_slope", + "sea_surface_mean_square_upwave_slope", "sea_surface_mean_square_upwave_slope_direction", "sea_surface_primary_swell_wave_directional_spread", "sea_surface_primary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_from_direction", "sea_surface_primary_swell_wave_from_direction_at_variance_spectral_density_maximum", + "sea_surface_primary_swell_wave_mean_period", "sea_surface_primary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_primary_swell_wave_significant_height", "sea_surface_salinity", @@ -21517,6 +19649,7 @@ "sea_surface_secondary_swell_wave_energy_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_from_direction", "sea_surface_secondary_swell_wave_from_direction_at_variance_spectral_density_maximum", + "sea_surface_secondary_swell_wave_mean_period", "sea_surface_secondary_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_secondary_swell_wave_significant_height", "sea_surface_skin_temperature", @@ -21524,9 +19657,11 @@ "sea_surface_swell_wave_directional_spread", "sea_surface_swell_wave_from_direction", "sea_surface_swell_wave_from_direction_at_variance_spectral_density_maximum", + "sea_surface_swell_wave_mean_period", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_swell_wave_mean_period_from_variance_spectral_density_second_frequency_moment", + "sea_surface_swell_wave_period", "sea_surface_swell_wave_period_at_variance_spectral_density_maximum", "sea_surface_swell_wave_significant_height", "sea_surface_swell_wave_to_direction", @@ -21546,14 +19681,19 @@ "sea_surface_wave_from_direction_at_variance_spectral_density_maximum", "sea_surface_wave_maximum_crest_height", "sea_surface_wave_maximum_height", + "sea_surface_wave_maximum_period", "sea_surface_wave_maximum_steepness", "sea_surface_wave_maximum_trough_depth", "sea_surface_wave_mean_height", "sea_surface_wave_mean_height_of_highest_tenth", + "sea_surface_wave_mean_period", "sea_surface_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment", "sea_surface_wave_mean_period_of_highest_tenth", + "sea_surface_wave_mean_square_slope", + "sea_surface_wave_mean_square_x_slope", + "sea_surface_wave_mean_square_y_slope", "sea_surface_wave_mean_wavenumber_from_variance_spectral_density_first_wavenumber_moment", "sea_surface_wave_period_at_variance_spectral_density_maximum", "sea_surface_wave_period_of_highest_wave", @@ -21574,9 +19714,11 @@ "sea_surface_wind_wave_energy_at_variance_spectral_density_maximum", "sea_surface_wind_wave_from_direction", "sea_surface_wind_wave_from_direction_at_variance_spectral_density_maximum", + "sea_surface_wind_wave_mean_period", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_first_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment", "sea_surface_wind_wave_mean_period_from_variance_spectral_density_second_frequency_moment", + "sea_surface_wind_wave_period", "sea_surface_wind_wave_period_at_variance_spectral_density_maximum", "sea_surface_wind_wave_significant_height", "sea_surface_wind_wave_to_direction", @@ -21643,6 +19785,7 @@ "sensor_band_central_radiation_wavelength", "sensor_band_central_radiation_wavenumber", "sensor_band_identifier", + "sensor_view_angle", "sensor_zenith_angle", "shallow_convection_time_fraction", "shallow_convective_cloud_base_altitude", @@ -21660,7 +19803,10 @@ "slow_soil_pool_mass_content_of_carbon", "snow_area_fraction_viewable_from_above", "snowfall_amount", + "snowfall_flux", + "snow_grain_size", "snow_transport_across_line_due_to_sea_ice_dynamics", + "soil_albedo", "soil_frozen_water_content", "soil_hydraulic_conductivity_at_saturation", "soil_mass_content_of_13C", @@ -21671,6 +19817,7 @@ "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", "soil_mass_content_of_nitrogen", "soil_moisture_content_at_field_capacity", + "soil_pool", "soil_pool_carbon_decay_rate", "soil_porosity", "soil_suction_at_saturation", @@ -21681,6 +19828,7 @@ "soil_water_ph", "solar_azimuth_angle", "solar_elevation_angle", + "solar_irradiance", "solar_irradiance_per_unit_wavelength", "solar_zenith_angle", "solid_precipitation_flux", @@ -21688,12 +19836,17 @@ "solid_precipitation_flux_containing_18O", "solid_precipitation_flux_containing_single_2H", "soot_content_of_surface_snow", + "sound_frequency", "sound_intensity_in_air", "sound_intensity_in_water", "sound_intensity_level_in_air", "sound_intensity_level_in_water", + "sound_pressure_in_air", "sound_pressure_in_water", + "sound_pressure_level_in_air", "sound_pressure_level_in_water", + "source", + "specific_dry_energy_of_air", "specific_gravitational_potential_energy", "specific_heat_capacity_of_frozen_ground", "specific_heat_capacity_of_sea_water", @@ -21702,6 +19855,7 @@ "specific_kinetic_energy_of_sea_water", "specific_turbulent_kinetic_energy_dissipation_in_sea_water", "specific_turbulent_kinetic_energy_of_sea_water", + "speed_of_sound_in_air", "speed_of_sound_in_sea_water", "spell_length_of_days_with_air_temperature_above_threshold", "spell_length_of_days_with_air_temperature_below_threshold", @@ -21746,8 +19900,13 @@ "subsurface_litter_mass_content_of_carbon", "subsurface_litter_mass_content_of_nitrogen", "subsurface_runoff_amount", + "subsurface_runoff_flux", "sunglint_angle", "sunlit_binary_mask", + "surface_air_pressure", + "surface_albedo", + "surface_albedo_assuming_deep_snow", + "surface_albedo_assuming_no_snow", "surface_altitude", "surface_backwards_scattering_coefficient_of_radar_wave", "surface_bidirectional_reflectance", @@ -21774,10 +19933,17 @@ "surface_downward_latent_heat_flux", "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", + "surface_downward_mass_flux_of_ammonia", "surface_downward_mass_flux_of_carbon_dioxide_abiotic_analogue_expressed_as_carbon", + "surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon", "surface_downward_mass_flux_of_carbon_dioxide_natural_analogue_expressed_as_carbon", "surface_downward_mass_flux_of_methane_due_to_wetland_biological_consumption", "surface_downward_mass_flux_of_water_due_to_irrigation", + "surface_downward_mole_flux_of_carbon_dioxide", + "surface_downward_mole_flux_of_cfc11", + "surface_downward_mole_flux_of_cfc12", + "surface_downward_mole_flux_of_molecular_oxygen", + "surface_downward_mole_flux_of_sulfur_hexafluoride", "surface_downward_northward_stress", "surface_downward_northward_stress_due_to_boundary_layer_mixing", "surface_downward_northward_stress_due_to_ocean_viscous_dissipation", @@ -21788,6 +19954,8 @@ "surface_downward_x_stress_correction", "surface_downward_y_stress", "surface_downward_y_stress_correction", + "surface_downwelling_longwave_flux_in_air", + "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", "surface_downwelling_longwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", "surface_downwelling_photon_flux_in_sea_water", "surface_downwelling_photon_flux_per_unit_wavelength_in_sea_water", @@ -22227,10 +20395,13 @@ "surface_roughness_length_for_humidity_in_air", "surface_roughness_length_for_momentum_in_air", "surface_runoff_amount", + "surface_runoff_flux", "surface_snow_amount", "surface_snow_and_ice_melt_flux", "surface_snow_and_ice_melt_heat_flux", + "surface_snow_and_ice_refreezing_flux", "surface_snow_area_fraction", + "surface_snow_binary_mask", "surface_snow_density", "surface_snow_melt_amount", "surface_snow_melt_and_sublimation_heat_flux", @@ -22247,6 +20418,7 @@ "surface_upward_heat_flux_in_air", "surface_upward_latent_heat_flux", "surface_upward_latent_heat_flux_due_to_sublimation", + "surface_upward_mass_flux_of_ammonia", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_plant_respiration", "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", @@ -22279,12 +20451,16 @@ "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", + "surface_upward_mole_flux_of_carbon_dioxide", "surface_upward_mole_flux_of_dimethyl_sulfide", "surface_upward_northward_stress_due_to_sea_surface_waves", "surface_upward_sensible_heat_flux", "surface_upward_water_flux", "surface_upward_water_vapor_flux_in_air", + "surface_upwelling_longwave_flux_in_air", + "surface_upwelling_longwave_flux_in_air_assuming_clear_sky", "surface_upwelling_photosynthetic_photon_flux_in_air", + "surface_upwelling_radiance_in_air", "surface_upwelling_radiance_in_air_emerging_from_sea_water", "surface_upwelling_radiance_in_air_reflected_by_sea_water", "surface_upwelling_radiance_in_sea_water", @@ -23244,6 +21420,7 @@ "upward_eastward_momentum_flux_in_air_due_to_nonorographic_westward_gravity_waves", "upward_eastward_momentum_flux_in_air_due_to_orographic_gravity_waves", "upward_eastward_stress_at_sea_ice_base", + "upward_eliassen_palm_flux_in_air", "upward_geothermal_heat_flux_at_ground_level_in_land_ice", "upward_geothermal_heat_flux_at_sea_floor", "upward_heat_flux_at_ground_level_in_snow", @@ -23251,6 +21428,7 @@ "upward_heat_flux_in_air", "upward_heat_flux_in_sea_water_due_to_convection", "upward_latent_heat_flux_in_air", + "upward_mass_flux_of_air", "upward_northward_stress_at_sea_ice_base", "upward_ocean_mass_transport", "upward_sea_ice_basal_heat_flux", @@ -23263,6 +21441,9 @@ "upward_water_vapor_flux_in_air_due_to_diffusion", "upward_x_stress_at_sea_ice_base", "upward_y_stress_at_sea_ice_base", + "upwelling_longwave_flux_in_air", + "upwelling_longwave_flux_in_air_assuming_clear_sky", + "upwelling_longwave_radiance_in_air", "upwelling_radiance_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_air", "upwelling_radiative_flux_per_unit_wavelength_in_sea_water", @@ -23342,6 +21523,7 @@ "water_vapor_saturation_deficit_in_air", "water_volume_transport_in_river_channel", "water_volume_transport_into_sea_water_from_rivers", + "wave_frequency", "westward_upward_derivative_of_geopotential", "westward_westward_derivative_of_geopotential", "wet_bulb_potential_temperature", @@ -23350,15 +21532,19 @@ "wind_from_direction", "wind_gust_from_direction", "wind_mixing_energy_flux_into_sea_water", + "wind_speed", "wind_speed_of_gust", + "wind_speed_shear", "wind_to_direction", "wood_debris_mass_content_of_carbon", "wood_debris_mass_content_of_nitrogen", "x_derivative_of_ocean_rigid_lid_pressure", "x_heat_flux_in_sea_water_due_to_advection", + "x_wind", "x_wind_gust", "y_derivative_of_ocean_rigid_lid_pressure", "y_heat_flux_in_sea_water_due_to_advection", + "y_wind", "y_wind_gust", "zenith_angle" ], @@ -23366,34 +21552,60 @@ "index": [ 0 ], - "layout": "IPY_MODEL_56c7c6122d3e4c31b48815f285b4c413", + "layout": "IPY_MODEL_9b0b5a9476ac433bae0fa98096df4a7e", "rows": 10, - "style": "IPY_MODEL_d7f7ef41a41440b986c0c98c8741cebb" + "style": "IPY_MODEL_f06143b062d24a17bddab41ffee58db3" } }, - "dc1c6f0321f847e1bddcec5e01d820c0": { - "model_module": "@jupyter-widgets/base", - "model_module_version": "2.0.0", - "model_name": "LayoutModel", + "e350ad25445947b0b9db8ecd5723b4f7": { + "model_module": "@jupyter-widgets/output", + "model_module_version": "1.0.0", + "model_name": "OutputModel", "state": { - "width": "50%" + "layout": "IPY_MODEL_a5704994a16b40e3b56c18fabd50f188", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": "Regular expression: (?i)^(?!.*(air|brightness|change|depth|land|ice|conservative|flux|tendency))(?=.*tem)\n" + }, + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "1682834b86a2410988482b141ddab5c4", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": "SelectMultiple(description='Options', index=(0,), layout=Layout(width='50%'), options=('automated_tropical_cyc…" + }, + "metadata": {}, + "output_type": "display_data" + } + ] } }, - "ddf85189776948bc8fe04f5ff46c2352": { - "model_module": "@jupyter-widgets/base", + "f06143b062d24a17bddab41ffee58db3": { + "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "LayoutModel", - "state": {} + "model_name": "DescriptionStyleModel", + "state": { + "description_width": "" + } }, - "fac52004c9054347ad76d5c54c9220be": { + "f6b614501bed4d0eb51d21cf7eae9c74": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", - "model_name": "TextStyleModel", + "model_name": "TextModel", "state": { - "description_width": "", - "font_size": null, - "text_color": null + "layout": "IPY_MODEL_409bd05eda7940f593cf2a31cde2a1d2", + "style": "IPY_MODEL_1a4dfa5aa221435da06af0931936420a" } + }, + "f9f6d6900ec6433babd736d76b19ca90": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": {} } }, "version_major": 2, diff --git a/ocean_model_skill_assessor/CLI.py b/ocean_model_skill_assessor/CLI.py index 119a5fe..1460140 100644 --- a/ocean_model_skill_assessor/CLI.py +++ b/ocean_model_skill_assessor/CLI.py @@ -4,6 +4,8 @@ import argparse +import cf_pandas as cfp + import ocean_model_skill_assessor as omsa @@ -96,6 +98,15 @@ def main(): help="Name of vocabulary file, must be in the vocab user directory.", ) + parser.add_argument( + "--verbose", + help="Options are --verbose or --no-verbose. Print useful runtime commands to stdout if True as well as save in log, otherwise silently save in log.", + action=argparse.BooleanOptionalAction, + default=True, + ) + + parser.add_argument("--mode", help="File mode for log file.", default="w") + # run options parser.add_argument( "--catalog_names", @@ -151,6 +162,8 @@ def main(): kwargs_open=args.kwargs_open, vocab=args.vocab_name, save_cat=True, + verbose=args.verbose, + mode=args.mode, ) # Print path for project name. @@ -161,6 +174,13 @@ def main(): elif args.action == "vocabs": print([path.stem for path in omsa.VOCAB_DIR.glob("*")]) + # Print variable keys in a vocab. + elif args.action == "vocab_info": + vpath = omsa.VOCAB_PATH(args.vocab_name) + vocab = cfp.Vocab(vpath) + print(f"Vocab path: {vpath}.") + print(f"Variable nicknames in vocab: {list(vocab.vocab.keys())}.") + # Run model-data comparison. elif args.action == "run": omsa.main.run( @@ -171,4 +191,6 @@ def main(): model_name=args.model_name, ndatasets=args.ndatasets, kwargs_map=args.kwargs_map, + verbose=args.verbose, + mode=args.mode, ) diff --git a/ocean_model_skill_assessor/__init__.py b/ocean_model_skill_assessor/__init__.py index 20af843..640e7ed 100644 --- a/ocean_model_skill_assessor/__init__.py +++ b/ocean_model_skill_assessor/__init__.py @@ -2,62 +2,17 @@ A package to fully run the comparison between data and model to assess model skill. """ -import shutil +from importlib.metadata import PackageNotFoundError, version -from pathlib import Path - -from appdirs import AppDirs -from pkg_resources import DistributionNotFound, get_distribution - -import ocean_model_skill_assessor.accessor # noqa: F401 +from ocean_model_skill_assessor.accessor import SkillAssessorAccessor from .main import make_catalog, run -from .plot import map, time_series -from .stats import ( # noqa: F401 - compute_bias, - compute_correlation_coefficient, - compute_descriptive_statistics, - compute_index_of_agreement, - compute_mean_square_error, - compute_murphy_skill_score, - compute_root_mean_square_error, - compute_stats, -) +from .paths import CAT_PATH, LOG_PATH, PROJ_DIR, VOCAB_DIR, VOCAB_PATH +from .utils import shift_longitudes try: - __version__ = get_distribution("ocean-model-skill-assessor").version -except DistributionNotFound: + __version__ = version("ocean-model-skill-assessor") +except PackageNotFoundError: # package is not installed __version__ = "unknown" - - -# set up cache directories for package to use -# user application cache directory, appropriate to each OS -dirs = AppDirs("ocean-model-skill-assessor", "axiom-data-science") -cache_dir = Path(dirs.user_cache_dir) -VOCAB_DIR = cache_dir / "vocab" -VOCAB_DIR.mkdir(parents=True, exist_ok=True) -VOCAB_DIR_INIT = Path(__path__[0]) / "vocab" # NEED THIS TO BE THE BASE PATH - -# copy vocab files to vocab cache location -[shutil.copy(vocab_path, VOCAB_DIR) for vocab_path in VOCAB_DIR_INIT.glob("*.json")] - - -def PROJ_DIR(project_name): - """Return path to project directory.""" - path = cache_dir / f"{project_name}" - path.mkdir(parents=True, exist_ok=True) - return path - - -def CAT_PATH(cat_name, project_name): - """Return path to catalog.""" - path = (cache_dir / project_name / cat_name).with_suffix(".yaml") - return path - - -def VOCAB_PATH(vocab_name): - """Return path to vocab.""" - path = (VOCAB_DIR / vocab_name).with_suffix(".json") - return path diff --git a/ocean_model_skill_assessor/accessor.py b/ocean_model_skill_assessor/accessor.py index 6476f2b..1647f1a 100644 --- a/ocean_model_skill_assessor/accessor.py +++ b/ocean_model_skill_assessor/accessor.py @@ -2,14 +2,15 @@ Class to facilitate some functions directly on DataFrames. """ -import re +from pandas import DatetimeIndex +from pandas.api.extensions import register_dataframe_accessor -import pandas as pd +from ocean_model_skill_assessor.plot import time_series -import ocean_model_skill_assessor +from .stats import compute_stats -@pd.api.extensions.register_dataframe_accessor("omsa") +@register_dataframe_accessor("omsa") class SkillAssessorAccessor: """Class to facilitate some functions directly on DataFrames.""" @@ -26,21 +27,17 @@ def __init__(self, df): @staticmethod def _validate(df): """DataFrame must have datetimes as index.""" - if not isinstance(df.index, pd.DatetimeIndex): + if not isinstance(df.index, DatetimeIndex): raise TypeError("DataFrame index must be datetimes") @property def compute_stats(self): """Run `compute_stats` on DataFrame.""" if not hasattr(self, "_compute_stats"): - stats = ocean_model_skill_assessor.compute_stats( - self.df["obs"], self.df["model"] - ) + stats = compute_stats(self.df["obs"], self.df["model"]) self._compute_stats = stats return self._compute_stats def plot(self, **kwargs): """Plot.""" - ocean_model_skill_assessor.plot.time_series.plot( - self.df["obs"], self.df["model"], **kwargs - ) + time_series.plot(self.df["obs"], self.df["model"], **kwargs) diff --git a/ocean_model_skill_assessor/main.py b/ocean_model_skill_assessor/main.py index d1fda31..b84988b 100644 --- a/ocean_model_skill_assessor/main.py +++ b/ocean_model_skill_assessor/main.py @@ -2,39 +2,48 @@ Main run functions. """ +import logging import mimetypes import warnings from collections.abc import Sequence from pathlib import PurePath -from typing import Any, DefaultDict, Dict, List, Optional, Union +from typing import Any, Dict, List, Optional, Union -import cf_pandas as cfp -import cf_xarray as cfx -import extract_model as em +import extract_model.accessor import intake -import numpy as np -import pandas as pd -import xarray as xr +import requests -from cf_pandas import Vocab +from cf_pandas import Vocab, astype +from cf_pandas import set_options as cfp_set_options +from cf_xarray import set_options as cfx_set_options +from extract_model import preprocess +from extract_model.utils import guess_model_type from intake.catalog import Catalog from intake.catalog.local import LocalCatalogEntry +from numpy import asarray, sum +from pandas import DataFrame, to_datetime +from shapely.geometry import Point from tqdm import tqdm -import ocean_model_skill_assessor as omsa +from ocean_model_skill_assessor.plot import map -from ocean_model_skill_assessor.plot import map, time_series +from .paths import CAT_PATH, PROJ_DIR, VOCAB_PATH +from .stats import _align, save_stats +from .utils import ( + coords1Dto2D, + find_bbox, + get_mask, + kwargs_search_from_model, + open_catalogs, + open_vocabs, + set_up_logging, + shift_longitudes, +) -from .utils import kwargs_search_from_model - -try: - import cartopy - - CARTOPY_AVAILABLE = True -except ImportError: # pragma: no cover - CARTOPY_AVAILABLE = False # pragma: no cover +# turn off annoying warning in cf-xarray +cfx_set_options(warn_on_missing_variables=False) def make_local_catalog( @@ -103,7 +112,7 @@ def make_local_catalog( or "text" in filename ): source = getattr(intake, "open_csv")(filename, csv_kwargs=kwargs_open) - elif "thredds" in filename and "dodsC" in filename: + elif ("thredds" in filename and "dodsC" in filename) or "dods" in filename: # use netcdf4 engine if not input in kwargs_xarray kwargs_open.setdefault("engine", "netcdf4") source = getattr(intake, "open_opendap")(filename, **kwargs_open) @@ -170,12 +179,13 @@ def make_local_catalog( } # set up some basic metadata for each source - dd.cf["T"] = pd.to_datetime(dd.cf["T"]) + dd.cf["T"] = to_datetime(dd.cf["T"]) dd.set_index(dd.cf["T"], inplace=True) if dd.index.tz is not None: - warnings.warn( - f"Dataset {source} had a timezone {dd.index.tz} which is being removed. Make sure the timezone matches the model output.", - RuntimeWarning, + logging.warning( + "Dataset %s had a timezone %s which is being removed. Make sure the timezone matches the model output.", + source, + str(dd.index.tz), ) dd.index = dd.index.tz_convert(None) dd.cf["T"] = dd.index @@ -223,9 +233,12 @@ def make_catalog( kwargs: Optional[Dict[str, Any]] = None, kwargs_search: Optional[Dict[str, Union[str, int, float]]] = None, kwargs_open: Optional[Dict] = None, - vocab: Optional[Union[cfp.Vocab, str, PurePath]] = None, + vocab: Optional[Union[Vocab, str, PurePath]] = None, return_cat: bool = True, save_cat: bool = False, + verbose: bool = True, + mode: str = "w", + testing: bool = False, ): """Make a catalog given input selections. @@ -254,14 +267,22 @@ def make_catalog( kwargs_open : dict, optional Keyword arguments to save into local catalog for model to pass on to ``xr.open_mfdataset`` call or ``pandas`` ``open_csv``. Only for use with ``catalog_type=local``. - vocab : dict, optional - Criteria to use to map from variable to attributes describing the variable. This is to be used with a key representing what variable to search for. + vocab : str, Vocab, Path, optional + Way to find the criteria to use to map from variable to attributes describing the variable. This is to be used with a key representing what variable to search for. return_cat : bool, optional Return catalog. For when using as a Python package instead of with command line. save_cat: bool, optional Save catalog to disk into project directory under `catalog_name`. + verbose : bool, optional + Print useful runtime commands to stdout if True as well as save in log, otherwise silently save in log. + mode : str, optional + mode for logging file. Default is to overwrite an existing logfile, but can be changed to other modes, e.g. "a" to instead append to an existing log file. + testing : boolean, optional + Set to True if testing so warnings come through instead of being logged. """ + set_up_logging(project_name, verbose, mode=mode, testing=testing) + if kwargs_search is not None and catalog_type == "local": warnings.warn( "`kwargs_search` were input but will not be used since `catalog_type=='local'`.", @@ -282,18 +303,15 @@ def make_catalog( if catalog_type != "local": kwargs_search = kwargs_search_from_model(kwargs_search) - # Should I require vocab if nickname is not None? - # if vocab is None: - # # READ IN DEFAULT AND SET VOCAB - # vocab = cfp.Vocab("vocabs/general") - - # elif isinstance(vocab, str): - # vocab = cfp.Vocab(omsa.VOCAB_PATH(vocab)) - - if isinstance(vocab, str): - vocab = cfp.Vocab(omsa.VOCAB_PATH(vocab)) - elif isinstance(vocab, PurePath): - vocab = cfp.Vocab(vocab) + if vocab is not None: + if isinstance(vocab, str): + vocab = Vocab(VOCAB_PATH(vocab)) + elif isinstance(vocab, PurePath): + vocab = Vocab(vocab) + elif isinstance(vocab, Vocab): + pass + else: + raise ValueError("Vocab should be input as string, Path, or Vocab object.") if description is None: description = f"Catalog of type {catalog_type}." @@ -305,7 +323,7 @@ def make_catalog( filenames = kwargs["filenames"] kwargs.pop("filenames") cat = make_local_catalog( - cfp.astype(filenames, list), + astype(filenames, list), name=catalog_name, description=description, metadata=metadata, @@ -318,7 +336,7 @@ def make_catalog( if "server" not in kwargs: raise ValueError("For `catalog_type=='erddap'`, must input `server`.") if vocab is not None: - with cfp.set_options(custom_criteria=vocab.vocab): + with cfp_set_options(custom_criteria=vocab.vocab): cat = intake.open_erddap_cat( kwargs_search=kwargs_search, name=catalog_name, @@ -327,7 +345,6 @@ def make_catalog( **kwargs, ) else: - # import pdb; pdb.set_trace() cat = intake.open_erddap_cat( kwargs_search=kwargs_search, name=catalog_name, @@ -339,7 +356,7 @@ def make_catalog( elif catalog_type == "axds": catalog_name = "axds_cat" if catalog_name is None else catalog_name if vocab is not None: - with cfp.set_options(custom_criteria=vocab.vocab): + with cfp_set_options(custom_criteria=vocab.vocab): cat = intake.open_axds_cat( kwargs_search=kwargs_search, name=catalog_name, @@ -358,11 +375,13 @@ def make_catalog( if save_cat: # save cat to file - cat.save(omsa.CAT_PATH(catalog_name, project_name)) - print( - f"Catalog saved to {omsa.CAT_PATH(catalog_name, project_name)} with {len(list(cat))} entries." + cat.save(CAT_PATH(catalog_name, project_name)) + logging.info( + f"Catalog saved to {CAT_PATH(catalog_name, project_name)} with {len(list(cat))} entries." ) + logging.shutdown() + if return_cat: return cat @@ -372,9 +391,14 @@ def run( project_name: str, key_variable: str, model_name: Union[str, Catalog], - vocabs: Union[str, Vocab, Sequence], + vocabs: Union[str, Vocab, Sequence, PurePath], ndatasets: Optional[int] = None, kwargs_map: Optional[Dict] = None, + verbose: bool = True, + mode: str = "w", + testing: bool = False, + alpha: int = 5, + dd: int = 2, ): """Run the model-data comparison. @@ -390,91 +414,105 @@ def run( Key in vocab(s) representing variable to compare between model and datasets. model_name : str, Catalog Name of catalog for model output, created with ``make_catalog`` call, or Catalog instance. - vocabs : str, list, Vocab, optional + vocabs : str, list, Vocab, PurePath, optional Criteria to use to map from variable to attributes describing the variable. This is to be used with a key representing what variable to search for. This input is for the name of one or more existing vocabularies which are stored in a user application cache. ndatasets : int, optional Max number of datasets from each input catalog to use. kwargs_map : dict, optional Keyword arguments to pass on to ``omsa.plot.map.plot_map`` call. + verbose : bool, optional + Print useful runtime commands to stdout if True as well as save in log, otherwise silently save in log. + mode : str, optional + mode for logging file. Default is to overwrite an existing logfile, but can be changed to other modes, e.g. "a" to instead append to an existing log file. + testing : boolean, optional + Set to True if testing so warnings come through instead of being logged. + alpha : int + parameter for alphashape. 0 returns qhull, and higher values make a tighter polygon around the points. + dd : int + number to decimate model points by when calculating model boundary with alphashape. input 1 to not decimate. """ + set_up_logging(project_name, verbose, mode=mode, testing=testing) + kwargs_map = kwargs_map or {} # After this, we have a single Vocab object with vocab stored in vocab.vocab - vocabs = cfp.always_iterable(vocabs) - if isinstance(vocabs[0], str): - vocab = cfp.merge([Vocab(omsa.VOCAB_PATH(v)) for v in vocabs]) - elif isinstance(vocabs[0], Vocab): - vocab = cfp.merge(vocabs) - else: - raise ValueError( - "Vocab(s) should be input as string paths or Vocab objects or Sequence thereof." - ) + vocab = open_vocabs(vocabs) # Open catalogs. - catalogs = cfp.always_iterable(catalogs) - if isinstance(catalogs[0], str): - cats = [ - intake.open_catalog(omsa.CAT_PATH(catalog_name, project_name)) - for catalog_name in cfp.astype(catalogs, list) - ] - elif isinstance(catalogs[0], Catalog): - cats = catalogs - else: - raise ValueError( - "Catalog(s) should be input as string paths or Catalog objects or Sequence thereof." - ) + cats = open_catalogs(catalogs, project_name) # Warning about number of datasets - ndata = np.sum([len(list(cat)) for cat in cats]) + ndata = sum([len(list(cat)) for cat in cats]) if ndatasets is not None: - print( + logging.info( f"Note that we are using {ndatasets} datasets of {ndata} datasets. This might take awhile." ) else: - print(f"Note that there are {ndata} datasets to use. This might take awhile.") + logging.info( + f"Note that there are {ndata} datasets to use. This might take awhile." + ) # read in model output - if isinstance(model_name, str): - model_cat = intake.open_catalog(omsa.CAT_PATH(model_name, project_name)) - elif isinstance(model_name, Catalog): - model_cat = model_name - else: - raise ValueError("model_name should be input as string path or Catalog object.") + model_cat = open_catalogs(model_name, project_name)[0] dsm = model_cat[list(model_cat)[0]].to_dask() - # use only one variable from model - with cfx.set_options(custom_criteria=vocab.vocab): + # process model output without using open_mfdataset + # vertical coords have been an issue for ROMS and POM, related to dask and OFS models + if guess_model_type(dsm) in ["ROMS", "POM"]: + kwargs_pp = {"interp_vertical": False} + else: + kwargs_pp = {} + dsm = preprocess(dsm, kwargs=kwargs_pp) + + with cfx_set_options(custom_criteria=vocab.vocab): dam = dsm.cf[key_variable] + # take out relevant variable and identify mask if available (otherwise None) + mask = get_mask(dsm, dam.name) + # shift if 0 to 360 - if dam.cf["longitude"].max() > 180: - lkey = dam.cf["longitude"].name - dam = dam.assign_coords(lon=(((dam[lkey] + 180) % 360) - 180)) - # rotate arrays so that the locations and values are -180 to 180 - # instead of 0 to 180 to -180 to 0 - dam = dam.roll(lon=int((dam[lkey] < 0).sum()), roll_coords=True) - print( - "Longitudes are being shifted because they look like they are not -180 to 180." - ) + dam = shift_longitudes(dam) + + # expand 1D coordinates to 2D, so all models dealt with in OMSA are treated with 2D coords. + # if your model is too large to be treated with this way, subset the model first. + dam = coords1Dto2D(dam) + + # Calculate boundary of model domain to compare with data locations and for map + _, _, _, p1 = find_bbox(dam, mask, alpha=alpha, dd=dd) # loop over catalogs and sources to pull out lon/lat locations for plot maps = [] count = 0 # track datasets since count is used to match on map for cat in tqdm(cats): - print(f"Catalog {cat}.") + logging.info(f"Catalog {cat}.") # for source_name in tqdm(list(cat)[-ndatasets:]): - for source_name in tqdm(list(cat)[:ndatasets]): + for i, source_name in tqdm(enumerate(list(cat)[:ndatasets])): + + if ndatasets is None: + msg = ( + f"\nsource name: {source_name} ({i+1} of {ndata} for catalog {cat}." + ) + else: + msg = f"\nsource name: {source_name} ({i+1} of {ndatasets} for catalog {cat}." + logging.info(msg) min_lon = cat[source_name].metadata["minLongitude"] max_lon = cat[source_name].metadata["maxLongitude"] min_lat = cat[source_name].metadata["minLatitude"] max_lat = cat[source_name].metadata["maxLatitude"] + # see if data location is inside alphashape-calculated polygon of model domain + # This currently assumes that the dataset is fixed in space. + point = Point(min_lon, min_lat) + if not p1.contains(point): + msg = f"Dataset {source_name} at lon {min_lon}, lat {min_lat} not located within model domain. Skipping dataset.\n" + logging.warning(msg) + continue + maps.append([min_lon, max_lon, min_lat, max_lat, source_name]) # if min_lon != max_lon or min_lat != max_lat: - # # import pdb; pdb.set_trace() # warnings.warn( # f"Source {source_name} in catalog {cat.name} is not stationary so not plotting." # ) @@ -496,27 +534,52 @@ def run( max_time = cat[source_name].metadata["maxTime"] # Combine and align the two time series of variable - with cfp.set_options(custom_criteria=vocab.vocab): - print("source name: ", source_name) - dfd = cat[source_name].read() + with cfp_set_options(custom_criteria=vocab.vocab): + try: + dfd = cat[source_name].read() + except requests.exceptions.HTTPError as e: + logging.warning(str(e)) + msg = f"Data cannot be loaded for dataset {source_name}. Skipping dataset.\n" + logging.warning(msg) + maps.pop(-1) + continue + if key_variable not in dfd.cf: - warnings.warn( - f"Key variable {key_variable} cannot be identified in dataset {source_name}. Skipping dataset.", - RuntimeWarning, - ) + msg = f"Key variable {key_variable} cannot be identified in dataset {source_name}. Skipping dataset.\n" + logging.warning(msg) maps.pop(-1) continue - dfd.cf["T"] = pd.to_datetime(dfd.cf["T"]) + # see if more than one column of data is being identified as key_variable + # if more than one, log warning and then choose first + if isinstance(dfd.cf[key_variable], DataFrame): + msg = f"More than one variable ({dfd.cf[key_variable].columns}) have been matched to input variable {key_variable}. The first {dfd.cf[key_variable].columns[0]} is being selected. To change this, modify the vocabulary so that the two variables are not both matched, or change the input data catalog." + logging.warning(msg) + # remove other data columns + for col in dfd.cf[key_variable].columns[1:]: + dfd.drop(col, axis=1, inplace=True) + + dfd.cf["T"] = to_datetime(dfd.cf["T"]) dfd.set_index(dfd.cf["T"], inplace=True) if dfd.index.tz is not None: - warnings.warn( - f"Dataset {source_name} had a timezone {dfd.index.tz} which is being removed. Make sure the timezone matches the model output.", - RuntimeWarning, + logging.warning( + "Dataset %s had a timezone %s which is being removed. Make sure the timezone matches the model output.", + source_name, + str(dfd.index.tz), ) dfd.index = dfd.index.tz_convert(None) dfd.cf["T"] = dfd.index + # make sure index is sorted ascending so time goes forward + dfd = dfd.sort_index() + + # check if all of variable is nan + if dfd.cf[key_variable].isnull().all(): + msg = f"All values of key variable {key_variable} are nan in dataset {source_name}. Skipping dataset.\n" + logging.warning(msg) + maps.pop(-1) + continue + # Pull out nearest model output to data kwargs = dict( longitude=min_lon, @@ -528,62 +591,113 @@ def run( # xoak doesn't work for 1D lon/lat coords if dam.cf["longitude"].ndim == dam.cf["latitude"].ndim == 1: - # time slices can't be used with `method="nearest"`, so separate out - if isinstance(kwargs["T"], slice): - Targ = kwargs.pop("T") - model_var = dam.cf.sel(**kwargs) # .to_dataset() - model_var = model_var.cf.sel(T=Targ) - else: - model_var = dam.cf.sel(**kwargs) # .to_dataset() - + # This shouldn't happen anymore, so make note if it does + msg = "1D coordinates were found for this model but that should not be possible anymore." + raise ValueError(msg) + # if isinstance(kwargs["T"], slice): + # Targ = kwargs.pop("T") + # model_var = dam.cf.sel(T=Targ) + # else: + # model_var = dam + + # # find indices representing mask + # import numpy as np + # import xarray as xr + # eta, xi = np.where(mask.values) + # # make advanced indexer to flatten arrays + # model_var = model_var.cf.isel( + # X=xr.DataArray(xi, dims="loc"), Y=xr.DataArray(eta, dims="loc") + # ) + + # model_var = model_var.cf.sel(**kwargs) + # # calculate distance + # # calculate distance for the 1 point: model location vs. requested location + # # https://stackoverflow.com/questions/56862277/interpreting-sklearn-haversine-outputs-to-kilometers + # earth_radius = 6371 # km + # pts = deg2rad([[kwargs["latitude"], kwargs["longitude"]], [model_var.cf["latitude"], model_var.cf["longitude"]]]) + # tree = BallTree(pts, metric = 'haversine') + # ind, results = tree.query_radius(pts, r=earth_radius, return_distance=True) + # distance = results[0][1]*earth_radius # distance between points in km elif dam.cf["longitude"].ndim == dam.cf["latitude"].ndim == 2: # time slices can't be used with `method="nearest"`, so separate out + # add "distances_name" to send to `sel2dcf` + # also send mask in so it can be accounted for in finding nearest model point if isinstance(kwargs["T"], slice): Targ = kwargs.pop("T") - model_var = dam.em.sel2dcf(**kwargs) # .to_dataset() - model_var = model_var.cf.sel(T=Targ) + model_var = dam.cf.sel(T=Targ) else: - model_var = dam.em.sel2dcf(**kwargs) # .to_dataset() + model_var = dam + + model_var = model_var.em.sel2dcf( + mask=mask, distances_name="distance", **kwargs + ) # .to_dataset() + + # downsize to DataArray + distance = model_var["distance"] + model_var = model_var[dam.name] + + # Use distances from xoak to give context to how far the returned model points might be from + # the data locations + if distance > 5: + logging.warning( + "Distance between nearest model location and data location for source %s is over 5 km with a distance of %s", + source_name, + str(distance.values), + ) + elif distance > 100: + msg = f"Distance between nearest model location and data location for source {source_name} is over 100 km with a distance of {distance.values}. Skipping dataset.\n" + logging.warning(msg) + maps.pop(-1) + continue - if model_var.size == 0: + if len(model_var.cf["T"]) == 0: # model output isn't available to match data # data must not be in the space/time range of model maps.pop(-1) - warnings.warn( - f"Model output is not present to match dataset {source_name}.", - RuntimeWarning, + logging.warning( + "Model output is not present to match dataset %s.", + source_name, ) continue # Combine and align the two time series of variable - with cfp.set_options(custom_criteria=vocab.vocab): - df = omsa.stats._align(dfd.cf[key_variable], model_var) + with cfp_set_options(custom_criteria=vocab.vocab): + df = _align(dfd.cf[key_variable], model_var) + y_name = model_var.name # pull out depth at surface? # Where to save stats to? stats = df.omsa.compute_stats - omsa.stats.save_stats(source_name, stats, project_name, key_variable) + + # add distance in + stats["dist"] = float(distance) + save_stats(source_name, stats, project_name, key_variable) # Write stats on plot - figname = omsa.PROJ_DIR(project_name) / f"{source_name}_{key_variable}.png" + figname = PROJ_DIR(project_name) / f"{source_name}_{key_variable}.png" df.omsa.plot( title=f"{count}: {source_name}", - ylabel=dam.name, + ylabel=y_name, figname=figname, stats=stats, ) + msg = f"Plotted time series for {source_name}\n." + logging.info(msg) count += 1 # map of model domain with data locations - if CARTOPY_AVAILABLE and len(maps) > 0: - figname = omsa.PROJ_DIR(project_name) / "map.png" - omsa.plot.map.plot_map(np.asarray(maps), figname, dsm, **kwargs_map) + if len(maps) > 0: + try: + figname = PROJ_DIR(project_name) / "map.png" + map.plot_map(asarray(maps), figname, p=p1, **kwargs_map) + except ModuleNotFoundError: + pass else: - print( - "Not plotting map since cartopy is not installed or no datasets to work with." - ) - print( - f"Finished analysis. Find plots and stats summaries in {omsa.PROJ_DIR(project_name)}." + logging.warning("Not plotting map since no datasets to plot.") + logging.info( + "Finished analysis. Find plots, stats summaries, and log in %s.", + str(PROJ_DIR(project_name)), ) + logging.shutdown() diff --git a/ocean_model_skill_assessor/paths.py b/ocean_model_skill_assessor/paths.py new file mode 100644 index 0000000..9b838f2 --- /dev/null +++ b/ocean_model_skill_assessor/paths.py @@ -0,0 +1,53 @@ +""" +Create paths, and handle file locations and vocabulary files. +""" + + +import shutil + +from pathlib import Path + +# from appdirs import AppDirs +import appdirs + + +# set up cache directories for package to use +# user application cache directory, appropriate to each OS +# dirs = AppDirs("ocean-model-skill-assessor", "axiom-data-science") +# cache_dir = Path(dirs.user_cache_dir) +cache_dir = Path( + appdirs.user_cache_dir( + appname="ocean-model-skill-assessor", appauthor="axiom-data-science" + ) +) +VOCAB_DIR = cache_dir / "vocab" +VOCAB_DIR.mkdir(parents=True, exist_ok=True) +VOCAB_DIR_INIT = Path(__file__).parent / "vocab" # NEED THIS TO BE THE BASE PATH +# import pdb; pdb.set_trace() +# copy vocab files to vocab cache location +[shutil.copy(vocab_path, VOCAB_DIR) for vocab_path in VOCAB_DIR_INIT.glob("*.json")] + + +def PROJ_DIR(project_name): + """Return path to project directory.""" + path = cache_dir / f"{project_name}" + path.mkdir(parents=True, exist_ok=True) + return path + + +def CAT_PATH(cat_name, project_name): + """Return path to catalog.""" + path = (cache_dir / project_name / cat_name).with_suffix(".yaml") + return path + + +def VOCAB_PATH(vocab_name): + """Return path to vocab.""" + path = (VOCAB_DIR / vocab_name).with_suffix(".json") + return path + + +def LOG_PATH(project_name): + """Return path to vocab.""" + path = (PROJ_DIR(project_name) / "omsa").with_suffix(".log") + return path diff --git a/ocean_model_skill_assessor/plot/map.py b/ocean_model_skill_assessor/plot/map.py index c79fad6..699e0a2 100644 --- a/ocean_model_skill_assessor/plot/map.py +++ b/ocean_model_skill_assessor/plot/map.py @@ -2,26 +2,31 @@ Plot map. """ -import pathlib - from pathlib import PurePath -from typing import Union - -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt -import numpy as np +from typing import Dict, Optional, Sequence, Union +from intake.catalog import Catalog +from matplotlib.pyplot import figure +from numpy import allclose, array, asarray +from shapely.geometry import Polygon from xarray import DataArray, Dataset -from ..utils import find_bbox +from ..utils import find_bbox, open_catalogs, shift_longitudes + + +try: + import cartopy.crs + + CARTOPY_AVAILABLE = True +except ImportError: # pragma: no cover + CARTOPY_AVAILABLE = False # pragma: no cover def plot_map( - maps: np.array, + maps: array, figname: Union[str, PurePath], - ds: Union[DataArray, Dataset], - alpha: int = 5, - dd: int = 2, + extent: Optional[Sequence] = None, + p: Optional[Polygon] = None, ): """Plot and save to file map of model domain and data locations. @@ -31,10 +36,17 @@ def plot_map( Info about datasets. [min_lon, max_lon, min_lat, max_lat, source_name] figname : Union[str, PurePath] Map will be saved here. - ds : Union[DataArray, Dataset] - Model output. + extent: optional + [min longitude, max longitude, min latitude, max latitude] + p : Shapely polygon + Polygon representing outer boundary of numerical model. """ + if not CARTOPY_AVAILABLE: + raise ModuleNotFoundError( # pragma: no cover + "Cartopy is not available so map will not be plotted." + ) + import cartopy pc = cartopy.crs.PlateCarree() @@ -49,7 +61,7 @@ def plot_map( central_longitude = min_lons.mean() proj = cartopy.crs.Mercator(central_longitude=float(central_longitude)) - fig = plt.figure(figsize=(8, 7), dpi=100) + fig = figure(figsize=(8, 7), dpi=100) ax = fig.add_axes([0.06, 0.01, 0.93, 0.95], projection=proj) # ax.set_frame_on(False) # kind of like it without the box # ax.set_extent([-98, -87.5, 22.8, 30.5], cartopy.crs.PlateCarree()) @@ -62,8 +74,12 @@ def plot_map( ax.add_feature(land_10m, facecolor="0.8") # alphashape - _, _, bbox, p = find_bbox(ds, dd=dd, alpha=alpha) - ax.add_geometries([p], crs=pc, facecolor="none", edgecolor="r", linestyle="-") + if p is not None: + # this needs to be checked for resulting type and order + bbox = p.bounds + ax.add_geometries([p], crs=pc, facecolor="none", edgecolor="r", linestyle="-") + else: + bbox = [min(min_lons), min(min_lats), max(max_lons), max(max_lats)] # plot stations # if min_lons == max_lons: # check these are stations @@ -83,7 +99,78 @@ def plot_map( ax.annotate(i, xy=xyproj, xytext=xyproj, color=col_label) # [min lon, max lon, min lat, max lat] - extent = [bbox[0] - 0.1, bbox[2] + 0.1, bbox[1] - 0.1, bbox[3] + 0.1] - ax.set_extent(extent, pc) + if extent is None: + extent_use = [bbox[0] - 0.1, bbox[2] + 0.1, bbox[1] - 0.1, bbox[3] + 0.1] + + # if model is global - based on extent - write that it is global and use smaller extent + if ( + allclose(bbox[0], -180, atol=2) + and allclose(bbox[2], 180, atol=2) + and allclose(bbox[1], -90, atol=2) + and allclose(bbox[3], 90, atol=2) + ): + # explain global model + ax.set_title("Only showing part of global model") + + # change delta deg for extent to max(10% of total diff lons/lats, 1 deg) + if extent is None: + dlon, dlat = 0.1 * (min(min_lons) - max(max_lons)), 0.1 * ( + min(min_lats) - max(max_lats) + ) + ddlon, ddlat = max(dlon, 5), max(dlat, 2) + extent_use = [ + min(min_lons) - ddlon, + max(max_lons) + ddlon, + min(min_lats) - ddlat, + max(max_lats) + ddlat, + ] + + ax.set_extent(extent_use, pc) fig.savefig(figname, dpi=100, bbox_inches="tight") + + +def plot_cat_on_map( + catalog: Union[Catalog, str], + project_name: str, + figname: Optional[str] = None, + **kwargs, +): + """Plot catalog on map with optional model domain polygon. + + Parameters + ---------- + catalog : Union[Catalog,str] + Which catalog of datasets to plot on map. + project_name : str + name of project in case we need to find the project files. + + Examples + -------- + + After creating catalog with `intake-erddap`, look at data locations: + + >>> omsa.plot.map.plot_cat_on_map(catalog=catalog_name, project_name=project_name) + """ + + cat = open_catalogs(catalog, project_name)[0] + + figname = figname or f"map_of_{cat.name}" + + kwargs_map: Dict = {} + + maps = [] + maps.extend( + [ + [ + cat[s].metadata["minLongitude"], + cat[s].metadata["maxLongitude"], + cat[s].metadata["minLatitude"], + cat[s].metadata["maxLatitude"], + s, + ] + for s in list(cat) + ] + ) + + plot_map(asarray(maps), figname, **kwargs_map) diff --git a/ocean_model_skill_assessor/plot/time_series.py b/ocean_model_skill_assessor/plot/time_series.py index 67265c6..9217235 100644 --- a/ocean_model_skill_assessor/plot/time_series.py +++ b/ocean_model_skill_assessor/plot/time_series.py @@ -2,9 +2,7 @@ Time series plots. """ - -import matplotlib.pyplot as plt - +from matplotlib.pyplot import legend, subplots from pandas import DataFrame @@ -45,13 +43,13 @@ def plot( stats : dict, optional Statistics describing comparison, output from `df.omsa.compute_stats`. """ - fig, ax = plt.subplots(1, 1, figsize=(15, 5)) + fig, ax = subplots(1, 1, figsize=(15, 5)) reference.plot(ax=ax, label="observation", fontsize=fs, lw=lw, color=col_obs) sample.plot(ax=ax, label="model", fontsize=fs, lw=lw, color=col_model) if stats is not None: stat_sum = "" - types = ["bias", "corr", "ioa", "mse", "mss", "rmse"] + types = ["bias", "corr", "ioa", "mse", "mss", "rmse", "dist"] for type in types: stat_sum += f"{type}: {stats[type]['value']:.1f} " title = f"{title}: {stat_sum}" @@ -60,6 +58,6 @@ def plot( ax.set_xlabel("", fontsize=fs) # don't need time label if ylabel: ax.set_ylabel(ylabel, fontsize=fs) - plt.legend(loc="best") + legend(loc="best") fig.savefig(figname, dpi=dpi, bbox_inches="tight") diff --git a/ocean_model_skill_assessor/stats.py b/ocean_model_skill_assessor/stats.py index 0d9efa9..76404e9 100644 --- a/ocean_model_skill_assessor/stats.py +++ b/ocean_model_skill_assessor/stats.py @@ -2,16 +2,15 @@ Statistics functions. """ -from typing import Tuple, Union +from typing import Union -import numpy as np -import pandas as pd import yaml -from pandas import DataFrame -from xarray import DataArray +from numpy import corrcoef, sqrt +from pandas import DataFrame, Series, concat +from xarray import DataArray, Dataset -import ocean_model_skill_assessor as omsa +from .paths import PROJ_DIR def _align( @@ -31,10 +30,15 @@ def _align( # if obs or model is a dask DataArray, output will be loaded in at this point if isinstance(obs, DataArray): obs = DataFrame(obs.to_pandas()) - elif isinstance(obs, pd.Series): + elif isinstance(obs, Series): obs = DataFrame(obs) + if isinstance(model, DataArray): model = DataFrame(model.to_pandas()) + elif isinstance(model, Dataset): + raise TypeError( + "Model output should be a DataArray, not Dataset, at this point." + ) obs.rename(columns={obs.columns[0]: "obs"}, inplace=True) model.rename(columns={model.columns[0]: "model"}, inplace=True) @@ -50,8 +54,8 @@ def _align( # get combined index of model and obs to first interpolate then reindex obs to model # otherwise only nan's come through ind = model.index.union(obs.index) - obs = obs.reindex(ind).interpolate(method="time", limit=1).reindex(model.index) - aligned = pd.concat([obs, model], axis=1) + obs = obs.reindex(ind).interpolate(method="time", limit=3).reindex(model.index) + aligned = concat([obs, model], axis=1) # Couldn't get this to work for me: # TODO: try flipping order of obs and model @@ -80,7 +84,7 @@ def compute_correlation_coefficient(obs: DataFrame, model: DataFrame) -> DataFra model = aligned_signals["model"] # can't send nan's in inds = obs.notnull() * model.notnull() - return float(np.corrcoef(obs[inds], model[inds])[0, 1]) + return float(corrcoef(obs[inds], model[inds])[0, 1]) def compute_index_of_agreement(obs: DataFrame, model: DataFrame) -> DataFrame: @@ -133,7 +137,6 @@ def compute_murphy_skill_score( # if a obs forecast is not available, use mean of the *original* observations if not obs_model: - # import pdb; pdb.set_trace() obs_model = obs.copy() obs_model[:] = obs.mean() # obs_model[:] = obs.mean().values[0] @@ -158,7 +161,7 @@ def compute_root_mean_square_error( model = aligned_signals["model"] mse = compute_mean_square_error(obs, model, centered=centered) - return float(np.sqrt(mse)) + return float(sqrt(mse)) def compute_descriptive_statistics(model: DataFrame, ddof=0) -> list: @@ -231,8 +234,13 @@ def save_stats(source_name: str, stats: dict, project_name: str, key_variable: s "name": "Descriptive Statistics", "long_name": "Max, Min, Mean, Standard Deviation", } + stats["dist"] = { + "value": stats["dist"], + "name": "Distance", + "long_name": "Distance in km from data location to selected model location", + } with open( - omsa.PROJ_DIR(project_name) / f"stats_{source_name}_{key_variable}.yaml", "w" + PROJ_DIR(project_name) / f"stats_{source_name}_{key_variable}.yaml", "w" ) as outfile: yaml.dump(stats, outfile, default_flow_style=False) diff --git a/ocean_model_skill_assessor/utils.py b/ocean_model_skill_assessor/utils.py index f56e6a3..3ee0dc4 100644 --- a/ocean_model_skill_assessor/utils.py +++ b/ocean_model_skill_assessor/utils.py @@ -2,28 +2,257 @@ Utility functions. """ -from typing import Dict, Optional, Union +import logging +import sys + +from pathlib import PurePath +from typing import Dict, List, Optional, Sequence, Union import cf_pandas as cfp -import cf_xarray import extract_model as em import intake import numpy as np -import shapely.geometry import xarray as xr +from cf_pandas import Vocab, always_iterable, astype, merge from intake.catalog import Catalog +from shapely.geometry import Polygon +from xarray import DataArray, Dataset + +from .paths import CAT_PATH, LOG_PATH, VOCAB_PATH + + +def open_catalogs( + catalogs: Union[str, Catalog, Sequence], project_name: str +) -> List[Catalog]: + """Initialize catalog objects from inputs. + + Parameters + ---------- + catalogs : Union[str, Catalog, Sequence] + Catalog name(s) or list of names, or catalog object or list of catalog objects. + project_name : str + Subdirectory in cache dir to store files associated together. + + Returns + ------- + list[Catalog] + Catalogs, ready to use. + """ + + catalogs = always_iterable(catalogs) + if isinstance(catalogs[0], str): + cats = [ + intake.open_catalog(CAT_PATH(catalog_name, project_name)) + for catalog_name in astype(catalogs, list) + ] + elif isinstance(catalogs[0], Catalog): + cats = catalogs + else: + raise ValueError( + "Catalog(s) should be input as string paths or Catalog objects or Sequence thereof." + ) + + return cats + + +def open_vocabs(vocabs: Union[str, Vocab, Sequence, PurePath]) -> Vocab: + """_summary_ + + Parameters + ---------- + vocabs : Union[str, Vocab, Sequence, PurePath] + Criteria to use to map from variable to attributes describing the variable. This is to be used with a key representing what variable to search for. This input is for the name of one or more existing vocabularies which are stored in a user application cache. + + Returns + ------- + Vocab + Single Vocab object with vocab stored in vocab.vocab + """ + + vocabs = always_iterable(vocabs) + if isinstance(vocabs[0], str): + vocab = merge([Vocab(VOCAB_PATH(v)) for v in vocabs]) + elif isinstance(vocabs[0], PurePath): + vocab = merge([Vocab(v) for v in vocabs]) + elif isinstance(vocabs[0], Vocab): + vocab = merge(vocabs) + else: + raise ValueError( + "Vocab(s) should be input as string paths or Vocab objects or Sequence thereof." + ) + + return vocab + + +def coords1Dto2D(dam: DataArray) -> DataArray: + """expand 1D coordinates to 2D + + Parameters + ---------- + dam : DataArray + Model output variable to work on. -import ocean_model_skill_assessor as omsa + Returns + ------- + DataArray + Model output but with 2D coordinates in place of 1D coordinates, if applicable. Otherwise same as input. + """ + if dam.cf["longitude"].ndim == 1: + # need to meshgrid lon/lat + lon2, lat2 = np.meshgrid(dam.cf["longitude"], dam.cf["latitude"]) + lonkey, latkey = dam.cf["longitude"].name, dam.cf["latitude"].name + # 2D coord names + lonkey2, latkey2 = f"{lonkey}2", f"{latkey}2" + # dam = dam.assign_coords({lonkey2: ((dam.cf["Y"].name, dam.cf["X"].name), lon2, dam.cf["Longitude"].attrs), + # latkey2: ((dam.cf["Y"].name, dam.cf["X"].name), lat2, dam.cf["Latitude"].attrs)}) + dam[lonkey2] = ( + (dam.cf["Y"].name, dam.cf["X"].name), + lon2, + dam.cf["Longitude"].attrs, + ) + dam[latkey2] = ( + (dam.cf["Y"].name, dam.cf["X"].name), + lat2, + dam.cf["Latitude"].attrs, + ) -def find_bbox(ds: xr.DataArray, dd: int = 1, alpha: int = 5) -> tuple: + # remove attributes from 1D lon/lats that are interpreted for coordinates (but not for axes) + if "standard_name" in dam[lonkey].attrs: + del dam[lonkey].attrs["standard_name"] + if "units" in dam[lonkey].attrs: + del dam[lonkey].attrs["units"] + if "standard_name" in dam[latkey].attrs: + del dam[latkey].attrs["standard_name"] + if "units" in dam[latkey].attrs: + del dam[latkey].attrs["units"] + + # modify coordinates + if "_CoordinateAxes" in dam.attrs: + dam.attrs["_CoordinateAxes"] = dam.attrs["_CoordinateAxes"].replace( + lonkey, lonkey2 + ) + dam.attrs["_CoordinateAxes"] = dam.attrs["_CoordinateAxes"].replace( + latkey, latkey2 + ) + elif "coordinates" in dam.encoding: + dam.encoding["coordinates"] = dam.encoding["coordinates"].replace( + lonkey, lonkey2 + ) + dam.encoding["coordinates"] = dam.encoding["coordinates"].replace( + latkey, latkey2 + ) + + return dam + + +def set_up_logging(project_name, verbose, mode: str = "w", testing: bool = False): + """set up logging""" + + if not testing: + logging.captureWarnings(True) + + file_handler = logging.FileHandler(filename=LOG_PATH(project_name), mode=mode) + handlers: List[Union[logging.StreamHandler, logging.FileHandler]] = [file_handler] + if verbose: + stdout_handler = logging.StreamHandler(stream=sys.stdout) + handlers.append(stdout_handler) + + logging.basicConfig( + level=logging.INFO, + format="[%(asctime)s] {%(pathname)s:%(lineno)d} %(levelname)s - %(message)s", + handlers=handlers, + ) + + # logger = logging.getLogger('OMSA log') + + +def get_mask(dsm: Dataset, varname: str) -> Union[DataArray, None]: + """Return mask that matches x/y coords of var. + + If no mask can be identified with `.filter_by_attrs(flag_meanings="land water")`, instead will make one of non-nans for 1 horizontal grid cross-section of varname. + + Parameters + ---------- + dsm : Dataset + Model output + varname : str + Name of variable in dsm. + + Returns + ------- + DataArray + mask associated with varname in dsm + """ + + if not varname in dsm.data_vars: + raise KeyError( + f"varname {varname} needs to be a data variable in dsm but is not found." + ) + + # include matching static mask if present + masks = dsm.filter_by_attrs(flag_meanings="land water") + if len(masks.data_vars) > 0: + mask_name = [ + mask + for mask in masks.data_vars + if dsm[mask].encoding["coordinates"] in dsm[varname].encoding["coordinates"] + ][0] + mask = dsm[mask_name] + else: + # want just X and Y to make mask. Just use first time and surface depth value, as needed. + dam = dsm[varname] + if "T" in dam.cf.axes: + dam = dam.cf.isel(T=0) + if "Z" in dam.cf.axes: + dam = dam.cf.sel(Z=0, method="nearest") + + mask = dam.notnull().load().astype(int) + msg = "Generated mask for model using 1 horizontal cross section of model output and searching for nans." + logging.info(msg) + + return mask + + +def shift_longitudes(dam: Union[DataArray, Dataset]) -> Union[DataArray, Dataset]: + """Shift longitudes from 0 to 360 to -180 to 180 if necessary. + + Parameters + ---------- + dam : Union[DataArray,Dataset] + Object with model output to check + + Returns + ------- + Union[DataArray,Dataset] + Return model output with shifted longitudes, if it was necessary. + """ + + if dam.cf["longitude"].max() > 180: + lkey = dam.cf["longitude"].name + nlon = int((dam[lkey] >= 180).sum()) # number of longitudes to roll by + dam = dam.assign_coords(lon=(((dam[lkey] + 180) % 360) - 180)) + # rotate arrays so that the locations and values are -180 to 180 + # instead of 0 to 180 to -180 to 0 + dam = dam.roll(lon=nlon, roll_coords=True) + logging.warning( + "Longitudes are being shifted because they look like they are not -180 to 180." + ) + return dam + + +def find_bbox( + ds: xr.DataArray, mask: Optional[DataArray] = None, dd: int = 1, alpha: int = 5 +) -> tuple: """Determine bounds and boundary of model. Parameters ---------- ds: DataArray xarray Dataset containing model output. + mask : DataArray, optional + Mask with 1's for active locations and 0's for masked. dd: int, optional Number to decimate model output lon/lat, as a stride. alpha: float, optional @@ -36,10 +265,13 @@ def find_bbox(ds: xr.DataArray, dd: int = 1, alpha: int = 5) -> tuple: Notes ----- - This is from the package ``model_catalogs``. + This was originally from the package ``model_catalogs``. """ - hasmask = False + if mask is not None: + hasmask = True + else: + hasmask = False try: lon = ds.cf["longitude"].values @@ -52,7 +284,7 @@ def find_bbox(ds: xr.DataArray, dd: int = 1, alpha: int = 5) -> tuple: lonkey = "lon_rho" latkey = "lat_rho" else: - lonkey = list(ds.cf[["longitude"]].coords.keys())[0] + lonkey = ds.cf.coordinates["longitude"][0] # need to make sure latkey matches lonkey grid latkey = f"lat{lonkey[3:]}" # In case there are multiple grids, just take first one; @@ -60,31 +292,28 @@ def find_bbox(ds: xr.DataArray, dd: int = 1, alpha: int = 5) -> tuple: lon = ds[lonkey].values lat = ds[latkey].values - # this function is being used on DataArrays instead of Datasets, and the model I'm using as - # an example doesn't have a mask, so bring this back when I have a relevant example. - # check for corresponding mask (rectilinear and curvilinear grids) - if any([var for var in ds.data_vars if "mask" in var]): - if ("mask_rho" in ds) and (lonkey == "lon_rho"): - maskkey = lonkey.replace("lon", "mask") - elif "mask" in ds: - maskkey = "mask" - else: - maskkey = None - if maskkey in ds: - lon = ds[lonkey].where(ds[maskkey] == 1).values - lon = lon[~np.isnan(lon)].flatten() - lat = ds[latkey].where(ds[maskkey] == 1).values - lat = lat[~np.isnan(lat)].flatten() - hasmask = True - # import pdb; pdb.set_trace() + if hasmask: + + if mask.ndim == 2 and lon.ndim == 1: + # # need to meshgrid lon/lat + # lon, lat = np.meshgrid(lon, lat) + # This shouldn't happen anymore, so make note if it does + msg = "1D coordinates were found for this model but that should not be possible anymore." + raise ValueError(msg) + + lon = lon[np.where(mask == 1)] + lon = lon[~np.isnan(lon)].flatten() + lat = lat[np.where(mask == 1)] + lat = lat[~np.isnan(lat)].flatten() + # This is structured, rectilinear # GFS, RTOFS, HYCOM if (lon.ndim == 1) and ("nele" not in ds.dims) and not hasmask: - nlon, nlat = ds["lon"].size, ds["lat"].size + nlon, nlat = ds[lonkey].size, ds[latkey].size lonb = np.concatenate(([lon[0]] * nlat, lon[:], [lon[-1]] * nlat, lon[::-1])) latb = np.concatenate((lat[:], [lat[-1]] * nlon, lat[::-1], [lat[0]] * nlon)) # boundary = np.vstack((lonb, latb)).T - p = shapely.geometry.Polygon(zip(lonb, latb)) + p = Polygon(zip(lonb, latb)) p0 = p.simplify(1) # Now using the more simplified version because all of these models are boxes p1 = p0 @@ -110,20 +339,6 @@ def find_bbox(ds: xr.DataArray, dd: int = 1, alpha: int = 5) -> tuple: # pts = shapely.geometry.MultiPoint(list(zip(lon, lat))) p1 = alphashape.alphashape(pts, alpha) - # else: # 2D coordinates - - # # this leads to a circular import error if read in at top level bc of other packages brought in. - # import alphashape - - # lon, lat = lon.flatten()[::dd], lat.flatten()[::dd] - - # # need to calculate concave hull or alphashape of grid - # # low res, same as convex hull - # p0 = alphashape.alphashape(list(zip(lon, lat)), 0.0) - # # downsample a bit to save time, still should clearly see shape of domain - # pts = shapely.geometry.MultiPoint(list(zip(lon, lat))) - # p1 = alphashape.alphashape(pts, alpha) - # useful things to look at: p.wkt #shapely.geometry.mapping(p) return lonkey, latkey, list(p0.bounds), p1 @@ -166,9 +381,7 @@ def kwargs_search_from_model(kwargs_search: Dict[str, Union[str, float]]) -> dic # read in model output if isinstance(kwargs_search["model_name"], str): model_cat = intake.open_catalog( - omsa.CAT_PATH( - kwargs_search["model_name"], kwargs_search["project_name"] - ) + CAT_PATH(kwargs_search["model_name"], kwargs_search["project_name"]) ) elif isinstance(kwargs_search["model_name"], Catalog): model_cat = kwargs_search["model_name"] diff --git a/ocean_model_skill_assessor/vocab/general.json b/ocean_model_skill_assessor/vocab/general.json index 7cb16ef..66ef7c4 100644 --- a/ocean_model_skill_assessor/vocab/general.json +++ b/ocean_model_skill_assessor/vocab/general.json @@ -1 +1 @@ -{"temp": {"name": "(?i)^(?!.*(air|qc|status|atmospheric|bottom))(?=.*temp)"}, "salt": {"name": "(?i)^(?!.*(soil|qc|status|bottom))(?=.*sal)"}, "ssh": {"name": "(?i)^(?!.*(qc|status))(?=.*sea_surface_height)(?=.*surface_elevation)"}, "u": {"name": "u$|(?i)(?=.*east)(?=.*vel)"}, "v": {"name": "v$|(?i)(?=.*north)(?=.*vel)"}, "w": {"name": "w$|(?i)(?=.*up)(?=.*vel)"}, "water_dir": {"name": "(?i)^(?!.*(qc|status|air|wind))(?=.*dir)(?=.*water)"}, "water_speed": {"name": "(?i)^(?!.*(qc|status|air|wind))(?=.*speed)(?=.*water)"}, "wind_dir": {"name": "(?i)^(?!.*(qc|status|water))(?=.*dir)(?=.*wind)"}, "wind_speed": {"name": "(?i)^(?!.*(qc|status|water))(?=.*speed)(?=.*wind)"}, "sea_ice_u": {"name": "(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*u)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*x)(?=.*vel)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*east)(?=.*vel)"}, "sea_ice_v": {"name": "(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*v)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*y)(?=.*vel)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*north)(?=.*vel)"}, "sea_ice_area_fraction": {"name": "(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*area)(?=.*fraction)"}} +{"temp": {"name": "(?i)^(?!.*(air|qc|status|atmospheric|bottom|dew)).*(temp|sst).*"}, "salt": {"name": "(?i)^(?!.*(soil|qc|status|bottom)).*(sal|sss).*"}, "ssh": {"name": "(?i)^(?!.*(qc|status)).*(sea_surface_height|surface_elevation).*"}, "u": {"name": "u$|(?i)(?=.*east)(?=.*vel)"}, "v": {"name": "v$|(?i)(?=.*north)(?=.*vel)"}, "w": {"name": "w$|(?i)(?=.*up)(?=.*vel)"}, "water_dir": {"name": "(?i)^(?!.*(qc|status|air|wind))(?=.*dir)(?=.*water)"}, "water_speed": {"name": "(?i)^(?!.*(qc|status|air|wind))(?=.*speed)(?=.*water)"}, "wind_dir": {"name": "(?i)^(?!.*(qc|status|water))(?=.*dir)(?=.*wind)"}, "wind_speed": {"name": "(?i)^(?!.*(qc|status|water))(?=.*speed)(?=.*wind)"}, "sea_ice_u": {"name": "(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*u)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*x)(?=.*vel)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*east)(?=.*vel)"}, "sea_ice_v": {"name": "(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*v)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*y)(?=.*vel)|(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*north)(?=.*vel)"}, "sea_ice_area_fraction": {"name": "(?i)^(?!.*(qc|status))(?=.*sea)(?=.*ice)(?=.*area)(?=.*fraction)"}} diff --git a/setup.cfg b/setup.cfg index 07d15e6..1f41484 100644 --- a/setup.cfg +++ b/setup.cfg @@ -31,7 +31,7 @@ url = https://github.com/axiom-data-science/ocean-model-skill-assessor long_description = file: README.md long_description_content_type = text/markdown license = MIT -license_file = LICENSE.txt +license_files = LICENSE.txt ## These need to be filled in by the author! # For details see: https://pypi.org/classifiers/ diff --git a/tests/test_main.py b/tests/test_main.py index 35f7a69..c8a9f78 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -13,94 +13,102 @@ import ocean_model_skill_assessor as omsa -@mock.patch("intake.source.csv.CSVSource.read") -@mock.patch("intake_xarray.base.DataSourceMixin.to_dask") -@mock.patch("intake.open_catalog") -@mock.patch("intake.open_catalog") -def test_run_variable(mock_open_cat, mock_open_cat_model, mock_to_dask, mock_read): - """Test running with variable that is not present in catalog dataset.""" - - # make model catalog - entries = { - "name": LocalCatalogEntry( - name="name", - description="description", - driver=intake_xarray.opendap.OpenDapSource, - args={"urlpath": "path", "engine": "netcdf4"}, - metadata={}, - direct_access="allow", - ), - } - catm = Catalog.from_dict( - entries, - name="model_cat", - description="description", - metadata={}, - ) - - # make Data catalog - entries = { - "test_source": LocalCatalogEntry( - "test_source", - description="", - driver="csv", - args={"urlpath": "fake.csv"}, - metadata={ - "minLongitude": 0, - "maxLongitude": 9, - "minLatitude": 0, - "maxLatitude": 9, - "minTime": "0", - "maxTime": "9", - }, - ) - } - # create catalog - cat = Catalog.from_dict( - entries, - name="test_cat", - description="", - metadata={}, - ) - - vocab = cfp.Vocab() - vocab.make_entry("temp", "temp", attr="name") - - ds = xr.Dataset() - ds["lon"] = ( - "lon", - np.arange(9), - {"units": "degrees_east", "standard_name": "longitude"}, - ) - ds["temp"] = ( - "lon", - np.arange(9), - {"standard_name": "sea_water_temperature", "coordinates": "lon"}, - ) - mock_to_dask.return_value = ds - - mock_open_cat.return_value = cat - mock_open_cat_model.return_value = catm - - df = pd.DataFrame( - columns=[ - "salt", - "longitude", - "latitude", - "time", - ] - ) - mock_read.return_value = df - - with pytest.warns(RuntimeWarning): - omsa.run( - catalogs=cat, - project_name="projectB", - key_variable="temp", - model_name="model_cat", - vocabs=vocab, - ndatasets=None, - ) +# warning is now logged so this test doesn't work +# @mock.patch("intake.source.csv.CSVSource.read") +# @mock.patch("intake_xarray.base.DataSourceMixin.to_dask") +# @mock.patch("intake.open_catalog") +# @mock.patch("intake.open_catalog") +# def test_run_variable(mock_open_cat, mock_open_cat_model, mock_to_dask, mock_read): +# """Test running with variable that is not present in catalog dataset.""" + +# # make model catalog +# entries = { +# "name": LocalCatalogEntry( +# name="name", +# description="description", +# driver=intake_xarray.opendap.OpenDapSource, +# args={"urlpath": "path", "engine": "netcdf4"}, +# metadata={}, +# direct_access="allow", +# ), +# } +# catm = Catalog.from_dict( +# entries, +# name="model_cat", +# description="description", +# metadata={}, +# ) + +# # make Data catalog +# entries = { +# "test_source": LocalCatalogEntry( +# "test_source", +# description="", +# driver="csv", +# args={"urlpath": "fake.csv"}, +# metadata={ +# "minLongitude": 0, +# "maxLongitude": 9, +# "minLatitude": 0, +# "maxLatitude": 9, +# "minTime": "0", +# "maxTime": "9", +# }, +# ) +# } +# # create catalog +# cat = Catalog.from_dict( +# entries, +# name="test_cat", +# description="", +# metadata={}, +# ) + +# vocab = cfp.Vocab() +# vocab.make_entry("temp", "temp", attr="name") + +# ds = xr.Dataset() +# ds["lon"] = ( +# "lon", +# np.arange(9), +# {"units": "degrees_east", "standard_name": "longitude"}, +# ) +# ds["lat"] = ( +# "lat", +# np.arange(9), +# {"units": "degrees_north", "standard_name": "latitude"}, +# ) +# ds["temp"] = ( +# "lon", +# np.arange(9), +# {"standard_name": "sea_water_temperature", "coordinates": "lon"}, +# ) +# mock_to_dask.return_value = ds + +# mock_open_cat.return_value = cat +# mock_open_cat_model.return_value = catm + +# df = pd.DataFrame( +# columns=[ +# "salt", +# "longitude", +# "latitude", +# "time", +# ] +# ) +# mock_read.return_value = df + +# with pytest.warns(RuntimeWarning): +# omsa.run( +# catalogs=cat, +# project_name="projectB", +# key_variable="temp", +# model_name="model_cat", +# vocabs=vocab, +# ndatasets=None, +# verbose=True, +# testing=True, +# ) def test_run_errors(): diff --git a/tests/test_main_axds.py b/tests/test_main_axds.py index 528b06e..29e82bd 100644 --- a/tests/test_main_axds.py +++ b/tests/test_main_axds.py @@ -60,13 +60,11 @@ def json(self): return res -@mock.patch("ocean_model_skill_assessor.CAT_PATH") @mock.patch("requests.get") -def test_make_catalog_axds_platform2(mock_requests, mock_cat_path, tmpdir): +def test_make_catalog_axds_platform2(mock_requests): mock_requests.side_effect = [FakeResponse()] - catloc2 = tmpdir / "projectA" / "catalog.yaml" - mock_cat_path.return_value = catloc2 + catloc2 = omsa.CAT_PATH("catA", "projectA") cat1 = omsa.make_catalog( catalog_type="axds", diff --git a/tests/test_main_local.py b/tests/test_main_local.py index 2066359..de482ff 100644 --- a/tests/test_main_local.py +++ b/tests/test_main_local.py @@ -10,11 +10,9 @@ import ocean_model_skill_assessor as omsa -@mock.patch("ocean_model_skill_assessor.CAT_PATH") -def test_make_catalog_local(mock_cat_path, tmpdir): +def test_make_catalog_local(): - catloc2 = tmpdir / "projectA" / "catAlocal.yaml" - mock_cat_path.return_value = catloc2 + catloc2 = omsa.paths.CAT_PATH("catAlocal", "projectA") kwargs = {"filenames": "filename.csv", "skip_entry_metadata": True} cat1 = omsa.make_catalog( diff --git a/tests/test_plot.py b/tests/test_plot.py index 2f41f46..31c5fd8 100644 --- a/tests/test_plot.py +++ b/tests/test_plot.py @@ -1,5 +1,9 @@ import numpy as np import pandas as pd +import pytest +import xarray as xr + +import ocean_model_skill_assessor as omsa from ocean_model_skill_assessor.plot import time_series @@ -17,3 +21,18 @@ def test_time_series(): ) time_series.plot(reference, sample, "test") + + +def test_map_no_cartopy(): + + CARTOPY_AVAILABLE = omsa.plot.map.CARTOPY_AVAILABLE + omsa.plot.map.CARTOPY_AVAILABLE = False + + maps = np.array(np.ones((2, 4))) + figname = "test" + dsm = xr.Dataset() + + with pytest.raises(ModuleNotFoundError): + omsa.plot.map.plot_map(maps, figname, dsm) + + omsa.plot.map.CARTOPY_AVAILABLE = CARTOPY_AVAILABLE diff --git a/tests/test_utils.py b/tests/test_utils.py index 9935c7b..8de806f 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -125,3 +125,22 @@ def test_find_bbox(): assert latkey == "lat" assert bbox == [0.0, 0.0, 9.0, 9.0] assert isinstance(p1, shapely.geometry.polygon.Polygon) + + +def test_shift_longitudes(): + + ds = xr.Dataset() + ds["lon"] = ( + "lon", + np.linspace(0, 360, 5)[:-1], + {"units": "degrees_east", "standard_name": "longitude"}, + ) + assert all(omsa.shift_longitudes(ds).cf["longitude"] == [-180.0, -90.0, 0.0, 90.0]) + + ds = xr.Dataset() + ds["lon"] = ( + "lon", + np.linspace(-180, 180, 5)[:-1], + {"units": "degrees_east", "standard_name": "longitude"}, + ) + assert all(omsa.shift_longitudes(ds).cf["longitude"] == ds.cf["longitude"])